@charset "UTF-8";
@charset 'iso-8859-15';

/*

@Author: Themezinho
@URL: http://www.themezinho.net

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.


// Table of contents //

	01.	GOOGLE FONTS
	02.	BODY
	03.	CUSTOM CLASSES
	04. FORM ELEMENTS
	05.	SECTIONS
	06.	HTML TAGS
	07.	LINKS
	08.	MODAL
	09.	PAGINATION
	10. PRELOADER
	11.	TRANSITION OVERLAY
	12.	SANDWICH BUTTON
	13.	SCROLL DOWN
	14.	NAVIGATION MENU
	15.	HEADER
	16.	SOCIAL MEDIA
	17.	NAVBAR
	18.	SLIDER
	19.	PAGE HEADER
	20.	VIDEO BG
	21.	WORKS
	22.	FEATURES CONTENT
	23.	LISTING CONTENT
	24.	FULL MEDIA CONTENT
	25.	INTRODUCTION
	26. OUR TEAM
	27.	NEWS
	28.	SAY HELLO
	29.	LOGOS
	30.	FOOTER
	31.	RESPONSIVE TABLET FIXES
	32. REPSONSIVE MOBILE FIXES



*/

@font-face {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: normal;
}


/* BODY */

* {
    outline: none !important;
}

html {
    overflow: auto;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    color: #0e0e0e;
}


/* CUSTOM HTML ELEMENTS */

img {
    max-width: 100%;
}


/* CUSTOM ELEMENTS */

.overflow {
    overflow: hidden !important;
}


/* LINKS */

a {
    color: #0e0e0e;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

a:hover {
    color: #0e0e0e;
}

a:active {
    color: #0e0e0e;
}


/* SECTIONS */


/*
section {
  overflow: hidden;
}*/

.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 15rem;
    height: auto;
}

.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #82c341;
    border-radius: 1.625rem;
}

.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}
  
button:hover .button-text {
    color: #fff;
}


/* CUSTOM CONTAINER */

@media (min-width: 1280px) {
    .container {
        max-width: 1260px;
    }
}

@media (min-width: 1170px) {
    .container {
        max-width: 1100px;
    }
}


/* ODOMETER */

.odometer {
    line-height: 1;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
    padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
    left: 0;
}


/* PAGINATION */

.pagination {
    display: block;
    text-align: center;
    margin-top: 50px;
}

.pagination a {
    display: inline-block;
    font-weight: 600;
    color: #0e0e0e;
    margin: 0 10px;
    font-size: 14px;
    border-bottom: 2px solid #0e0e0e;
    padding-bottom: 2px;
}

.pagination a:hover {
    text-decoration: none;
    border-bottom: 2px solid #82c341;
}


/* PAGE LOADED */

.page-loaded {
    overflow: inherit;
}

.page-loaded .preloader {
    bottom: -100%;
    transition-delay: 0.35s;
}

.page-loaded .preloader .layer {
    bottom: -100%;
}

.page-loaded .preloader .inner {
    transform: translateY(30px);
    opacity: 0;
}

.page-loaded header {
    transform: scale(1);
    transition-delay: 0.6s;
}

.page-loaded .navbar {
    transform: translateY(0);
    transition-delay: 0.75s;
}


/* PRELOADER */

.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 11;
    overflow: hidden;
    background: #82c341;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader .layer {
    width: 25%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: #000;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader .layer:nth-child(1) {
    left: 0;
    transition-delay: 0.15s;
}

.preloader .layer:nth-child(2) {
    left: 25%;
    transition-delay: 0.2s;
}

.preloader .layer:nth-child(3) {
    left: 50%;
    transition-delay: 0.25s;
}

.preloader .layer:nth-child(4) {
    left: 75%;
    transition-delay: 0.3s;
}

.preloader .inner {
    margin: 0;
    position: relative;
    z-index: 3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader figure {
    display: block;
    margin: 0;
}

.preloader figure img {
    height: 80px;
}

.preloader .typewriter {
    height: 26px;
    line-height: 26px;
    display: inline-block;
    transform: translateY(10px);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

.preloader .typewriter #typewriter-text {
    float: left;
    margin-left: 5px;
    margin-top: -2px;
    margin-right: 3px;
}

.preloader .typewriter #typewriter-suffix {
    width: 2px;
    height: 22px;
    display: inline-block;
    background: #82c341;
    text-indent: -1000px;
    overflow: hidden;
}


/* TRANSITION OVERLAY */

.transition-overlay {
    width: 100%;
    height: 0;
    position: fixed;
    background: #82c341;
    left: 0;
    bottom: 0;
    z-index: 15;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.transition-overlay .layer {
    width: 25%;
    height: 0;
    position: absolute;
    bottom: 0;
    background: #000;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.transition-overlay .layer:nth-child(1) {
    left: 0;
    transition-delay: 0.25s;
}

.transition-overlay .layer:nth-child(2) {
    left: 25%;
    transition-delay: 0.3s;
}

.transition-overlay .layer:nth-child(3) {
    left: 50%;
    transition-delay: 0.35s;
}

.transition-overlay .layer:nth-child(4) {
    left: 75%;
    transition-delay: 0.4s;
}

.transition-overlay.active {
    height: 100%;
}

.transition-overlay.active .layer {
    height: 100%;
}


/* EQUALIZER */

.equalizer {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
}

.equalizer span {
    background: #82c341;
    width: 1px;
    height: 1px;
    top: 50%;
    bottom: 0;
    left: 0%;
    transform: translateY(-50%);
    position: absolute;
    transition: height 0.2s linear;
}

.equalizer span:nth-child(1) {
    margin-left: 4px;
}

.equalizer span:nth-child(2) {
    margin-left: 8px;
}

.equalizer span:nth-child(4) {
    margin-left: 12px;
}

.equalizer span:nth-child(5) {
    margin-left: 16px;
}

.equalizer span:nth-child(6) {
    margin-left: 20px;
}

.equalizer.paused span {
    height: 1px !important;
}


/* NAVIGATION MENU */

.navigation-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    visibility: hidden;
}

.navigation-menu .bg-layers {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    top: 0;
}

.navigation-menu .bg-layers * {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.navigation-menu .bg-layers span {
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    transform: skewX(0);
    background: #4c9e45;
}

.navigation-menu .bg-layers span:nth-child(1) {
    left: 0;
}

.navigation-menu .bg-layers span:nth-child(1):before {
    content: "";
    width: 150%;
    height: 100%;
    background: #4c9e45;
    position: absolute;
    left: -149%;
    top: 0;
}

.navigation-menu .bg-layers span:nth-child(2) {
    left: 25%;
}

.navigation-menu .bg-layers span:nth-child(3) {
    left: 50%;
}

.navigation-menu .bg-layers span:nth-child(4) {
    left: 75%;
}

.navigation-menu .bg-layers span:nth-child(4):before {
    content: "";
    width: 150%;
    height: 100%;
    background: #4c9e45;
    position: absolute;
    right: -149%;
    top: 0;
}

.navigation-menu .inner {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding-top: 96px;
}

.navigation-menu .inner * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.navigation-menu .inner .menu {
    display: block;
    min-height: 130px;
    opacity: 0;
    transform: translateY(-30px);
}

.navigation-menu .inner .menu ul {
    display: block;
    margin-bottom: 50px;
    padding: 0;
    position: relative;
}

.navigation-menu .inner .menu ul li {
    display: inline-block;
    margin: 0 20px;
    padding: 0;
    list-style: none;
}

.navigation-menu .inner .menu ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

.navigation-menu .inner .menu ul li:hover ul li ul {
    opacity: 0;
    visibility: hidden;
}

.navigation-menu .inner .menu ul li a {
    display: inline-block;
    line-height: 1;
    font-size: 3vw;
    font-weight: 800;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 5px solid transparent;
}

.navigation-menu .inner .menu ul li a:hover {
    padding-bottom: 3px;
    border-bottom: 5px solid #82c341;
    text-decoration: none;
}

.navigation-menu .inner .menu ul li ul {
    width: 100%;
    min-height: inherit;
    position: absolute;
    left: 0;
    top: 70px;
    opacity: 0;
    visibility: hidden;
}

.navigation-menu .inner .menu ul li ul li {
    margin: 10px 15px;
}

.navigation-menu .inner .menu ul li ul li a {
    font-size: 2vw;
    padding: 0;
    border-bottom: none;
}

.navigation-menu .inner .menu ul li ul li a:hover {
    padding: 0;
    border-bottom: none;
    color: #82c341;
}

.navigation-menu .inner .menu ul li ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

.navigation-menu .inner .menu ul li ul li ul {
    top: 55px;
    opacity: 0;
    visibility: hidden;
}

.navigation-menu .inner .menu ul li ul li ul li {
    margin: 0 20px;
}

.navigation-menu .inner .menu ul li ul li ul li a {
    font-size: 20px;
    font-weight: 600;
}

.navigation-menu .inner blockquote {
    display: block;
    font-size: 19px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition-delay: 0.5s;
    transform: translateY(30px);
}

.navigation-menu.active .bg-layers {
    visibility: visible;
}

.navigation-menu.active .bg-layers span {
    width: calc(25% + 1px);
    transform: skewX(45deg);
}

.navigation-menu.active .bg-layers span:nth-child(1) {
    width: calc(25% + 1px);
}

.navigation-menu.active .bg-layers span:nth-child(4) {
    width: calc(25% + 1px);
}

.navigation-menu.active .inner .menu {
    opacity: 1;
    transform: translateY(0);
}

.navigation-menu.active .inner blockquote {
    opacity: 1;
    transform: translateY(0);
}

.navigation-menu.active {
    visibility: visible;
}

/* HAMBURGER */

.hamburger {
    float: left;
    width: 26px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.hamburger * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #82c341;
    z-index: 0;
}

.hamburger span:nth-child(1) {
    top: 0px;
    width: 50%;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    width: 50%;
    top: 16px;
    right: 0;
    left: auto;
}

.hamburger span:before,
.hamburger span:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    height: 100%;
    width: 0;
    right: 0;
    left: auto;
}

.hamburger span:before {
    z-index: 1;
    background: #fff;
    transition: all 0.15s linear 0s;
}

.hamburger span:after {
    z-index: 2;
    background: #82c341;
    transition: all 0.15s linear 0.3s;
}

.hamburger span:nth-child(2):before {
    transition-delay: 0.05s;
}

.hamburger span:nth-child(3):before {
    transition-delay: 0.1s;
}

.hamburger span:nth-child(2):after {
    transition-delay: 0.15s;
}

.hamburger span:nth-child(3):after {
    transition-delay: 0.2s;
}

.hamburger:hover span {
    width: 100% !important;
}

.hamburger:hover span:after,
.hamburger:hover span:before {
    width: 100%;
    left: 0;
    right: auto;
}

.hamburger:hover span:after {
    z-index: 1;
    transition: all 0.15s linear 0s;
}

.hamburger:hover span:before {
    z-index: 2;
    transition: all 0.15s linear 0.3s;
}

.hamburger:hover span:nth-child(2):after {
    transition-delay: 0.05s;
}

.hamburger:hover span:nth-child(3):after {
    transition-delay: 0.1s;
}

.hamburger:hover span:nth-child(2):before {
    transition-delay: 0.15s;
}

.hamburger:hover span:nth-child(3):before {
    transition-delay: 0.2s;
}

.hamburger.open span:nth-child(1) {
    top: 9px;
    width: 100%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -15px;
}

.hamburger.open span:nth-child(3) {
    top: 9px;
    width: 100%;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


/* CUSTOM LINK */

.custom-link {
    display: block;
    transition: all 0.5s;
}

.custom-link * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.custom-link a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #0e0e0e;
}

.custom-link a:hover {
    text-decoration: none;
}

.custom-link b {
    font-weight: 600;
    display: inline-block;
    margin-left: 20px;
}

.custom-link .lines {
    width: 42px;
    height: 1px;
    float: left;
    overflow: hidden;
}

.custom-link .lines span:nth-child(1) {
    width: 100%;
    height: 1px;
    float: right;
    background: #0e0e0e;
}

.custom-link .lines span:nth-child(2) {
    width: 0;
    height: 1px;
    float: left;
    background: #0e0e0e;
}

.custom-link:hover .lines {
    width: 62px;
    margin-left: 20px;
}

.custom-link:hover .lines span:nth-child(1) {
    width: 0;
}

.custom-link:hover .lines span:nth-child(2) {
    width: 100%;
    transition-delay: 0.2s;
}


/* HEADER */

.header {
    width: 100%;
    height: 100vh;
    min-height: 660px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background: #82c341;
}

.header .container {
    position: relative;
    z-index: 2;
}

.header .container .tagline {
    display: block;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.header .container .tagline span {
    color: #e8293b;
    float: left;
    font-weight: 600;
    color: #fff;
}

.header .container .tagline span:after {
    content: "";
    width: 22px;
    height: 1px;
    float: right;
    margin: 10px;
    background: #e8293b;
}

.header .container .tagline h6 {
    float: left;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    margin-top: 2px;
    margin-bottom: 0;
}

.header .container h1 {
    width: 100%;
    float: left;
    font-weight: 800;
    color: #e8293b;
    font-size: 10vw;
    line-height: 1;
}

.header .container h1 span {
    -webkit-text-stroke-width: 1px;
    transform: translateY(-35%);
    margin-left: 4%;
    display: flex;
    -webkit-text-stroke-color: #fff;
    color: transparent;
}

.header .container .slide-btn {
    float: left;
}

.header .perspective {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
}

.header .perspective canvas {
    min-height: 100%;
    width: auto !important;
    position: absolute;
    left: 0;
    top: 0;
}

.header .particles-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
}

.header .particles-wrap .particles {
    width: 100%;
    height: calc(100% - 50px);
    position: absolute;
    left: 0;
    bottom: 0;
}

.header .video-bg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
}

.header .video-bg:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/bg-lines.png) center;
    z-index: 2;
}

.header .video-bg video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    opacity: 0.8;
}

.page-header {
    width: 100%;
    height: 100vh;
    min-height: 660px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #0e0e0e;
}

.page-header .video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.page-header .video-bg:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/bg-lines.png) center;
    z-index: 2;
}

.page-header .video-bg video {
    min-width: 100%;
    min-height: 100%;
    float: left;
    opacity: 0.2;
}

.page-header .container {
    position: relative;
    z-index: 3;
    padding: 0 10%;
}

.page-header .container h1 {
    font-weight: 800;
    font-size: 10vw;
    color: #fff;
    line-height: 1;
    text-indent: -5px;
}

.page-header .container p {
    margin-bottom: 0;
    font-family: 'Barlow', sans-serif;
    color: #82c341;
}

header {
    transform: scale(1.5);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

header .left-side {
    width: 50%;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    margin-left: 30px;
    z-index: 3;
}

header .left-side ul {
    margin: 0 auto;
    padding: 0;
}

header .left-side ul li {
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    list-style: none;
}

header .left-side ul li a {
    font-size: 14px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

header .left-side ul li a:hover {
    padding-bottom: 1px;
    border-bottom: 2px solid #fff;
    text-decoration: none;
}

header .scroll-down {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}

header .scroll-down small {
    width: 98px;
    display: inline-block;
    transform: rotate(-90deg);
    margin-bottom: 50px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
}

header .scroll-down span {
    display: block;
    height: 50px;
    position: relative;
    transform: translateX(-1px);
}

header .scroll-down span::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}

header .scroll-down span::before {
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -0.5px;
    width: 1px;
    height: 70px;
    background: #fff;
    content: "";
}

header .sound {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 3;
}

header .sound span {
    float: left;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    font-family: 'Barlow', sans-serif;
}

header .sound .equalizer {
    float: left;
}

header .sound .equalizer .holder {
    width: 23px;
    height: 20px;
    position: relative;
}


/* NAVBAR */

.navbar {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px 40px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    z-index: 10;
    transform: translateY(-130%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.navbar a {
    color: #fff;
}

.navbar .left {
    width: 30%;
    margin-left: 0;
}

.navbar .left a {
    position: relative;
    padding-bottom: 6px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    border-bottom: 2px solid transparent;
}

.navbar .left a:hover {
    padding-bottom: 1px;
    border-bottom: 2px solid #fff;
    text-decoration: none;
}

.navbar .logo {
    margin: 0 auto;
}

.navbar .logo a {
    float: left;
}

.navbar .logo a img {
    height: 56px;
}

.navbar .right {
    width: 30%;
    margin-right: 0;
    display: flex;
}

.navbar .right ul {
    margin-left: auto;
    margin-bottom: 0;
    padding: 0;
}

.navbar .right ul li {
    display: inline-block;
    margin-left: 15px;
    padding: 0;
}

.navbar .right ul li a {
    position: relative;
    padding-bottom: 6px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    border-bottom: 2px solid transparent;
}

.navbar .right ul li a:hover {
    padding-bottom: 1px;
    border-bottom: 2px solid #fff;
    text-decoration: none;
}

.navbar .right .hamburger-menu {
    margin-right: 0;
    margin-left: 60px;
}

.navbar .right .hamburger-menu .hamburger {
    float: right;
    margin-top: 1px;
}

.navbar .right .hamburger-menu b {
    display: inline-block;
    font-weight: 400;
    margin-right: 15px;
}


/* SLIDE BTN */

.slide-btn {
    display: block;
    transition: all 0.5s;
    padding-left: 30px;
}

.slide-btn a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.slide-btn a:hover {
    text-decoration: none;
}

.slide-btn b {
    font-weight: 600;
}

.slide-btn .lines {
    width: 42px;
    height: 1px;
    float: left;
    overflow: hidden;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.slide-btn .lines span:nth-child(1) {
    width: 100%;
    height: 1px;
    float: right;
    background: #fff;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.slide-btn .lines span:nth-child(2) {
    width: 0;
    height: 1px;
    float: left;
    background: #fff;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.slide-btn:hover .lines {
    width: 62px;
    margin-left: 20px;
}

.slide-btn:hover .lines span:nth-child(1) {
    width: 0;
}

.slide-btn:hover .lines span:nth-child(2) {
    width: 100%;
    transition-delay: 0.2s;
}

.slide-btn .video-play-circle {
    stroke-dasharray: 315;
    stroke-dashoffset: 315;
    transition: stroke-dashoffset 0.5s;
}

.slide-btn svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
    margin-left: -25px;
    margin-right: 15px;
}

.slide-btn:hover .video-play-circle {
    stroke-dashoffset: 0;
}


/* SWIPER SLIDER */

.swiper-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    overflow: hidden;
}

.swiper-slider .swiper-slide {
    display: block;
    overflow: hidden;
}

.swiper-slider .swiper-slide.swiper-slide-active .slide-inner {
    transform: scale(1);
}

.swiper-slider .swiper-slide.swiper-slide-active .slide-inner .container {
    transform: translateY(0);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    opacity: 1;
}

.swiper-slider .swiper-slide .slide-inner {
    width: 100%;
    height: 100%;
    transform: scale(0.8);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slider .swiper-slide .slide-inner:after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.04;
    position: absolute;
    left: 0;
    top: 0;
}

.swiper-slider .swiper-slide .slide-inner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.swiper-slider .swiper-slide .slide-inner .container {
    transform: translateY(50px);
    opacity: 0;
    transition-delay: 0.15s !important;
    position: relative;
    z-index: 2;
}

.swiper-slider .swiper-slide .slide-inner .container .tagline {
    display: block;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.swiper-slider .swiper-slide .slide-inner .container .tagline span {
    color: #e8293b;
    float: left;
    font-weight: 600;
    color: #fff;
}

.swiper-slider .swiper-slide .slide-inner .container .tagline span:after {
    content: "";
    width: 22px;
    height: 1px;
    float: right;
    margin: 10px;
    background: #e8293b;
}

.swiper-slider .swiper-slide .slide-inner .container .tagline h6 {
    float: left;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    margin-top: 2px;
    margin-bottom: 0;
}

.swiper-slider .swiper-slide .slide-inner .container h1 {
    width: 100%;
    float: left;
    font-weight: 800;
    color: #fff;
    font-size: 65px;
    line-height: 1;
}

.swiper-slider .swiper-slide .slide-inner .container h1 span {
    -webkit-text-stroke-width: 1px;
    transform: translateY(-35%);
    margin-left: 4%;
    display: flex;
    -webkit-text-stroke-color: #fff;
    color: transparent;
}

.swiper-slider .swiper-slide .slide-inner .container .slide-btn {
    float: left;
}

.swiper-slider .swiper-pagination-bullets {
    width: 50px;
    left: auto;
    right: 40px;
    bottom: 50%;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    z-index: 2 !important;
}

.swiper-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 100%;
    height: auto;
    float: left;
    margin: 5px 0;
    background: none;
    position: relative;
    text-indent: 9999px;
    padding-right: 36px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.swiper-slider .swiper-pagination-bullets .swiper-pagination-bullet:hover {
    opacity: 1;
}

.swiper-slider .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    text-indent: 0;
}

.swiper-slider .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    width: 67px;
    right: -45px;
}

.swiper-slider .swiper-pagination-bullets .swiper-pagination-bullet:after {
    content: "";
    width: 22px;
    height: 1px;
    background: #82c341;
    position: absolute;
    top: 10px;
    right: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}


/* INTRO */

.intro {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.intro h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.intro h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.2;
    padding-right: 35%;
}

.intro h2:before {
    content: attr(data-text);
    font-size: 18vw;
    opacity: 0.05;
    z-index: -1;
    position: absolute;
    left: 0;
    top: -20%;
}

.intro h4 {
    margin-top: 5px;
    font-family: 'Barlow', sans-serif;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    color: #82c341;
    padding-right: 20%;
}

.intro p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 37px;
}

.intro u {
    text-decoration: none;
    border-bottom: 3px dotted #e8293b;
    font-weight: 600;
}

.intro strong {
    font-weight: 600;
}

.intro .custom-link {
    transform: translateY(30px);
}


/* PROCESS */

.process {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.process h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
    position: relative;
}

.process h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.2;
}

.process h2:before {
    content: attr(data-text);
    font-size: 20vw;
    opacity: 0.05;
    z-index: -1;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -50%;
}

.process span {
    width: 80px;
    height: 80px;
    line-height: 62px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 50%;
    background: #82c341;
    position: relative;
    border: 10px solid #e2fdf1;
    margin-top: 50px;
}

s .process span:before {
    content: "";
    width: 30vw;
    height: 2px;
    background: #e2fdf1;
    position: absolute;
    left: -30px;
    top: 30px;
    z-index: -1;
}

.process .col-md-3:last-child span:before {
    display: none;
}

.process figure {
    width: 100%;
    display: block;
    margin: 20px 0;
    background: #fff;
}

.process figure img {
    height: 90px;
}

.process h5 {
    font-weight: 600;
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 0;
}


/* SERVICES CONTENT BLOCK */

.services-content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #0e0e0ee8;
    color: #fff;
    position: relative;
}

.services-content-block .video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0.2;
}

.services-content-block .video-bg video {
    min-width: 100%;
    min-height: 100%;
    float: left;
}

.services-content-block h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
}

.services-content-block h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.2;
    padding-right: 35%;
}

.services-content-block .left {
    width: 100px;
    float: left;
    margin-top: -2px;
}

.services-content-block .right {
    width: calc(100% - 100px);
    float: left;
}

.services-content-block small {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    color: #82c341;
}

.services-content-block span {
    width: 50px;
    height: 1px;
    background: #82c341;
    display: inline-block;
    margin: 5px 15px;
}

.services-content-block h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    margin-bottom: 30px;
}

.services-content-block ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.services-content-block ul li {
    line-height: 1.8;
}


/* WORKS */

.works {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    transition-delay: 0s !important;
    transition: background 0.4s;
}

.works h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.works h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.2;
    padding-right: 35%;
}

.works h2:before {
    content: attr(data-text);
    font-size: 20vw;
    opacity: 0.05;
    z-index: -1;
    position: absolute;
    left: 0;
    top: -20%;
}

.works .project-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 75px 0;
}

.works .project-box * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.works .project-box:hover figure {
    transform: scale(0.95);
}

.works .project-box:hover figure img {
    transform: scale(1.15);
}

.works .project-box:last-child {
    padding-bottom: 0;
}

.works .project-box:nth-child(2n+2) .custom-link a {
    float: right;
}

.works .project-box:nth-child(2n+2) .content-box {
    order: 1;
    text-align: right;
    padding-left: 0;
    padding-right: 5%;
}

.works .project-box:nth-child(2n+2) .content-box h3 span {
    margin-left: 0;
    margin-right: -7vw;
}

.works .project-box:nth-child(2n+2) figure {
    order: 2;
}

.works .project-box figure {
    width: 55%;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.works .project-box figure img {
    width: 100%;
}

.works .project-box .content-box {
    width: 45%;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.works .project-box .content-box .inner {
    margin: 0;
}

.works .project-box .content-box .inner small {
    display: block;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.works .project-box .content-box .inner h3 {
    font-size: 5vw;
    font-weight: 800;
    margin-bottom: 10vh;
    line-height: 1;
}

.works .project-box .content-box .inner h3 span {
    display: block;
    font-size: 8vw;
    color: #82c341;
    margin-left: -7vw;
}


/* WORKS SINGLE */

.works-single {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}

.works-single h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.works-single h2 {
    margin-bottom: 50px;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.2;
    padding-right: 35%;
}

.works-single h4 {
    margin-top: 5px;
    font-family: 'Barlow', sans-serif;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    padding-right: 20%;
}

.works-single .text-desc {
    margin-bottom: 50px;
}

.works-single h5 {
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
}

.works-single h3 {
    font-size: 60px;
    font-weight: 800;
    margin-top: 80px;
    color: #82c341;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
}

.works-single p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 37px;
}

.works-single iframe {
    float: left;
    margin-bottom: 30px;
    background: #0e0e0e;
}

.works-single figure {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.works-single figure img {
    width: 100%;
}


/* TEAM */

.team {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #82c341;
    position: relative;
}

.team h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.team h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 60px;
    line-height: 1.2;
}

.team h2:before {
    content: attr(data-text);
    font-size: 20vw;
    opacity: 0.05;
    position: absolute;
    left: 0;
    top: -20%;
}

.team figure {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.team figure img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.team figure figcaption {
    width: 100%;
    display: block;
}

.team figure figcaption small {
    opacity: 0.6;
    font-size: 11px;
    display: block;
    margin-bottom: 5px;
}

.team figure figcaption h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
}


/* WORK WITH US */

.work-with-us {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #82c341;
    position: relative;
}

.work-with-us:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/bg-noise.gif);
    opacity: 0.04;
    position: absolute;
    left: 0;
    top: 0;
}

.work-with-us:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/bg-lines.png) center;
    z-index: 1;
}

.work-with-us .container {
    position: relative;
    z-index: 2;
}

.work-with-us h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
}

.work-with-us h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 60px;
    line-height: 1.2;
    padding-right: 35%;
}

.work-with-us h2:before {
    content: attr(data-text);
    font-size: 20vw;
    opacity: 0.05;
    z-index: -1;
    position: absolute;
    left: 0;
    top: -20%;
}

.work-with-us h4 {
    margin-top: 5px;
    font-family: 'Barlow', sans-serif;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    padding-right: 20%;
    margin-bottom: 40px;
}


/* AWARDS  */

.awards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.awards figure {
    display: block;
    margin: 0;
}

.awards figure img {
    height: 60px;
}

.awards h5 {
    font-weight: 600;
    font-size: 15px;
}

.awards .odometer {
    font-family: 'Barlow', sans-serif;
    font-size: 40px;
}

.clients {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

.clients * {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.clients.animated li {
    opacity: 1;
}

.clients.animated li figcaption .word .char {
    transform: translateY(10px);
    opacity: 0;
    transition-delay: calc(10ms * var(--char-index));
}

.clients:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.clients:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

.clients li {
    width: 25%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
    text-align: center;
    opacity: 0;
    transition: all 2s ease-in-out;
}

.clients li figure {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
}

.clients li figure:hover figcaption {
    opacity: 1;
    top: 0;
}

.clients li figure:hover figcaption .char {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.clients li figure:hover img {
    opacity: 0.5;
}

.clients li figure img {
    width: 100%;
    display: inline-block;
    padding: 20px 64px;
}

.clients li figure figcaption {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
}

.clients li figure figcaption .char {
    transform: translateY(10px);
    opacity: 0;
    transition-delay: calc(10ms * var(--char-index));
    animation: none;
}

.clients li:nth-child(1n) {
    transition-delay: 0.1s;
}

.clients li:nth-child(2n) {
    transition-delay: 0.2s;
}

.clients li:nth-child(3n) {
    transition-delay: 0.3s;
}

.clients li:nth-child(4n) {
    transition-delay: 0.4s;
}

.clients li:nth-child(5n) {
    transition-delay: 0.5s;
}

.clients li:nth-child(6n) {
    transition-delay: 0.6s;
}

.clients li:nth-child(7n) {
    transition-delay: 0.7s;
}

.clients li:nth-child(8n) {
    transition-delay: 0.8s;
}

.clients li:nth-child(9n) {
    transition-delay: 0.9s;
}

.clients li:nth-child(10n) {
    transition-delay: 1s;
}

.clients li:nth-child(11n) {
    transition-delay: 1.1s;
}

.clients li:nth-child(12n) {
    transition-delay: 1.2s;
}

.clients li:nth-child(13n) {
    transition-delay: 1.3s;
}

.clients li:nth-child(14n) {
    transition-delay: 1.4s;
}

.clients li:nth-child(15n) {
    transition-delay: 1.5s;
}

.clients li:nth-child(16n) {
    transition-delay: 1.6s;
}

.clients li:nth-child(17n) {
    transition-delay: 1.7s;
}

.clients li:nth-child(18n) {
    transition-delay: 1.8s;
}

.clients li:nth-child(19n) {
    transition-delay: 1.9s;
}

.clients li:nth-child(20n) {
    transition-delay: 2s;
}


/* NEWS */

.news {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.news .post {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 25px;
    /* padding: 50px 0; */
}

.news .post.single-post {
    padding-left: 10%;
    padding-right: 10%;
    flex-direction: column;
}

.news .post.single-post .post-content .inner .post-title {
    font-size: 66px;
}

.news .post.single-post .post-image {
    margin-bottom: 30px;
    display: block;
}

.news .post:nth-child(2n+2) .post-image {
    order: 2;
}

.news .post:nth-child(2n+2) .post-content {
    padding-left: 0;
}

.news .post .post-image {
    flex: 1;
    margin: 0;
}

.news .post .post-image img {
    width: 100%;
}

.news .post .post-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
}

.news .post .post-content .inner {
    width: 100%;
}

.news .post .post-content .inner .social-share {
    width: 100%;
    float: left;
    padding: 0 !important;
    margin-bottom: 40px;
}

.news .post .post-content .inner .social-share li {
    float: left;
    margin-right: 5px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.news .post .post-content .inner .social-share li.facebook a {
    background: #475993;
}

.news .post .post-content .inner .social-share li.twitter a {
    background: #76a9ea;
}

.news .post .post-content .inner .social-share li.google-plus a {
    background: #f34a38;
}

.news .post .post-content .inner .social-share li.linkedin a {
    background: #0077b7;
}

.news .post .post-content .inner .social-share li.youtube a {
    background: #f61c0d;
}

.news .post .post-content .inner .social-share li a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    float: left;
    background: #e8293b;
    color: #fff;
    border: none;
    border-radius: 0;
}

.news .post .post-content .inner .post-date {
    display: block;
    font-size: 14px;
    opacity: 0.5;
    font-family: 'Barlow', sans-serif;
}

.news .post .post-content .inner .post-title {
    display: block;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
}

.news .post .post-content .inner .post-title a {
    display: block;
    color: #0e0e0e;
}

.news .post .post-content .inner .post-title a:hover {
    color: #82c341;
    text-decoration: none;
}

.news .post .post-content .inner .post-author {
    display: block;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.news .post .post-content .inner .post-author img {
    width: 50px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.news .post .post-content .inner .post-text {
    display: block;
    line-height: 30px;
    margin-bottom: 0;
}

.news .post .post-content .inner h6 {
    font-size: 23px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.news .post .post-content .inner blockquote {
    display: block;
    padding: 40px;
    margin-bottom: 40px;
    background: #82c341;
    font-family: 'Barlow', sans-serif;
    position: relative;
}

.news .post .post-content .inner blockquote:before {
    content: "";
    font-family: fontawesome;
    font-size: 90px;
    position: absolute;
    left: 40px;
    top: 0;
    opacity: 0.1;
}

.news .post .post-content .inner blockquote h5 {
    font-weight: 800;
    font-family: Poppins;
    margin: 0;
}

.news .post .post-content .inner ul {
    padding-left: 20px;
}

.news .post .post-content .inner ul li {
    line-height: 1.9;
}

.news .post .post-content .inner p {
    display: block;
    line-height: 30px;
}

.news .post .post-content .inner p:last-child {
    margin-bottom: 0;
}


/* HELLO */

.hello {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 150px;
}

.hello h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.hello h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 60px;
    line-height: 1.2;
    max-width: 400px;
}

.hello h2:before {
    content: attr(data-text);
    font-size: 20vw;
    opacity: 0.05;
    z-index: -1;
    position: absolute;
    left: 0;
    top: -20%;
}

.hello address {
    display: block;
    margin-bottom: 100px;
}

.hello address b {
    display: block;
    margin-bottom: 10px;
}

.hello #success,
.hello #error {
    display: none;
    float: left;
}

.hello #contact {
    width: 100%;
    display: flex;
    margin-left: -100px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.hello #contact .form-group:last-child {
    margin-bottom: 0;
}

.hello #contact label {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.hello #contact label.error {
    color: #e8293b;
    margin-top: 7px;
    margin-bottom: 0;
}

.hello #contact div.error {
    background: #e8293b;
    color: #fff;
    border-radius: 0;
    border: none;
}

.hello #contact input[type=text] {
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    padding: 0 20px;
}

.hello #contact textarea {
    width: 100%;
    height: 150px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
}

.hello #contact button[type=submit] {
    height: 50px;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: #FFF;
    background: #82c341;
    border: none;
}


/* DIRECTION */

.direction {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
}

.direction h6 {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    opacity: 0.5;
    font-size: 14px;
}

.direction h2 {
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 60px;
    line-height: 1.2;
    padding-right: 35%;
}

.direction h2:before {
    content: attr(data-text);
    font-size: 20vw;
    opacity: 0.05;
    z-index: -1;
    position: absolute;
    left: 0;
    top: -20%;
}

.direction figure {
    width: 100%;
    display: block;
    margin: 0;
    position: relative;
}

.direction figure img {
    width: 100%;
}

.direction figure figcaption {
    width: 40%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
}

.direction figure figcaption .inner {
    width: 100%;
    padding: 40px;
    color: #fff;
}

.direction figure figcaption .inner .custom-link {
    margin-top: 40px;
}

.direction figure figcaption .inner .custom-link a {
    color: #fff;
}

.direction figure figcaption .inner .custom-link .lines span {
    background: #fff;
}

.direction figure figcaption .inner h5 {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
}

.direction figure figcaption .inner b {
    font-weight: 600;
}

.direction figure figcaption .inner p {
    font-size: 14px;
}

.direction figure figcaption .inner ul {
    display: block;
    margin: 0;
    padding: 0;
}

.direction figure figcaption .inner ul li {
    display: block;
    margin: 15px 0;
    padding: 0;
    list-style: none;
}


/* FOOTER */

.footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 100px 0;
    /*background: #000;*/
    color: #fff;
    background: url(../images/padrao.webp) center;
}

.footer .footer-quote {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.footer .footer-quote img {
    height: 60px;
    display: block;
    margin-bottom: 20px;
}

.footer .footer-quote h2 {
    font-size: 2vw;
    font-weight: 800;
    margin-bottom: 0;
    color: #82c341;
}

.footer .footer-contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.footer .footer-contact address {
    margin-bottom: 0;
}

.footer .footer-contact address a {
    color: #fff;
    text-decoration: underline;
}

.footer .footer-bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    margin-top: 5px;
}

.footer .footer-bottom h5 {
    margin-bottom: 10px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    color: #82c341;
}

.footer .footer-bottom ul {
    display: block;
    margin: 0;
    padding: 0;
}

.footer .footer-bottom ul li {
    display: inline-block;
    margin: 0;
    margin-right: 20px;
    padding: 0;
    list-style: none;
}

.footer .footer-bottom ul li:last-child {
    margin-right: 0;
}

.footer .footer-bottom ul li a {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 6px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    border-bottom: 2px solid transparent;
}

.footer .footer-bottom ul li a:hover {
    padding-bottom: 1px;
    border-bottom: 2px solid #fff;
    text-decoration: none;
}

.error_form h1 {
    font-size: 200px;
    font-weight: 900;
    color: #fdee17;
    letter-spacing: 10px;
    line-height: 1.1;
    margin: 0 0 15px;
}

.error_form {
    text-align: center;
}

.error_form h2 {
    color: #666666;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 25px;
}

.error_form p {
    font-size: 22px;
    color: #8c8c8c;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px;
}

.error_form form {
    width: 450px;
    margin: 0 auto;
    position: relative;
}

.error_section input {
    padding: 0 93px 0 30px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}

.error_form button {
    position: absolute;
    right: 0;
    height: 100%;
    border: none;
    background: no-repeat;
    font-size: 18px;
    color: #4f4f4f;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    top: 0;
    text-transform: uppercase;
    padding: 0 15px;
    font-weight: 600;
}

.error_form button:hover {
    color: #fdee17;
}

.error_form a:hover {
    background: #242424;
}

.error_form a {
    color: #fff;
    display: inline-block;
    background: #fdee17;
    font-size: 12px;
    font-weight: bold;
    height: 40px;
    line-height: 42px;
    padding: 0 30px;
    text-transform: uppercase;
    margin-top: 40px;
}

.error_section {
    padding-bottom: 140px;
    padding-top: 74px;
}


/* MEDIUM FIXES */

@media only screen and (max-width: 1441px),
only screen and (max-device-width: 1441px) {
    .swiper-slider .swiper-slide .slide-inner .container h1 {
        font-size: 80px;
    }
}

@media only screen and (max-width: 1199px),
only screen and (max-device-width: 1199px) {
    .swiper-slider .swiper-slide .slide-inner {
        padding: 0 10%;
    }
    .intro h4 {
        padding-right: 0;
    }
    .work-with-us h2 {
        padding-right: 0;
    }
    .work-with-us h4 {
        padding-right: 0;
    }
    .works-single h2 {
        padding-right: 0;
    }
    .direction h2 {
        padding-right: 0;
    }
    .clients h4 {
        padding-right: 0;
    }
    .news .post {
        flex-direction: column;
    }
    .news .post .post-image {
        margin-bottom: 30px;
    }
    .direction figure figcaption {
        width: 50%;
    }
    .hello h2 {
        padding-right: 0;
    }
}


/* RESPONSIVE TABLET FIXES */

@media only screen and (max-width: 991px),
only screen and (max-device-width: 991px) {
    header {
        min-height: inherit;
    }
    .swiper-slider .swiper-slide .slide-inner .container h1 {
        font-size: 12vw;
    }
    .intro {
        padding: 80px 0;
    }
    .intro h2 {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .intro .custom-link {
        transform: translateY(0);
    }
    .process {
        padding: 80px 0;
    }
    .process h2 {
        margin-bottom: 0;
    }
    .services-content-block {
        padding: 80px 0;
    }
    .services-content-block h2 {
        padding-right: 0;
    }
    .services-content-block .left {
        width: 100%;
        margin-bottom: 20px;
    }
    .services-content-block .right {
        width: 100%;
    }
    .team {
        padding: 80px 0;
    }
    .team figure {
        margin: 15px 0;
    }
    .direction {
        padding: 80px 0;
    }
    .direction figure figcaption {
        width: 100%;
    }
    .works {
        padding: 80px 0;
    }
    .works h2 {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .works .project-box {
        padding: 35px 0;
    }
    .work-with-us {
        padding: 80px 0;
    }
    .works-single {
        padding: 80px 0;
    }
    .news {
        padding: 30px 0;
        padding-bottom: 80px;
    }
    .news .post.single-post {
        padding-left: 0;
        padding-right: 0;
    }
    .news .post.single-post .post-content .inner .post-title {
        font-size: 44px;
    }
    .news .post:nth-child(2n+2) .post-image {
        order: 0;
    }
    .news .post:nth-child(2n+2) .post-content {
        padding: 0 50px;
    }
    .awards {
        padding: 80px 0;
    }
    .clients {
        padding: 80px 0;
    }
    .hello {
        padding: 80px 0;
    }
    .hello #contact {
        margin-left: 0;
        box-shadow: none;
    }
    .footer .footer-quote h2 {
        font-size: 6vw;
    }
}


/* RESPONSIVE MOBILE FIXES */

@media only screen and (max-width: 767px),
only screen and (max-device-width: 767px) {
    .container {
        padding: 0 10px;
        /* padding: 0 30px; */
    }
    .page-header .video-bg:before {
        display: none;
    }
    header .scroll-down {
        left: -10px;
    }
    header .sound {
        right: 30px;
        bottom: 30px;
    }
    .header {
        min-height: inherit;
    }
    .page-header {
        min-height: inherit;
    }
    .page-header .container h1 {
        font-size: 15vw;
    }
    .navigation-menu.active .bg-layers span {
        width: 50%;
    }
    .navigation-menu.active .bg-layers span:nth-child(1) {
        left: -50%;
        width: 50%;
    }
    .navigation-menu.active .bg-layers span:nth-child(2) {
        left: 0;
        width: 50%;
    }
    .navigation-menu.active .bg-layers span:nth-child(3) {
        left: 50%;
        width: 50%;
    }
    .navigation-menu.active .bg-layers span:nth-child(4) {
        left: 100%;
        width: 50%;
    }
    .navigation-menu .inner .menu ul li {
        display: block;
        margin-bottom: 20px;
    }
    .navigation-menu .inner .menu ul li a {
        font-size: 9vw;
        padding-bottom: 5px;
    }
    .navigation-menu .inner .menu ul li a:hover {
        padding-bottom: 2px;
    }
    .navigation-menu .inner .menu ul li ul {
        position: static;
        display: none;
        visibility: visible;
        opacity: 1;
        margin-top: 10px;
        margin-bottom: 0;
    }
    .navigation-menu .inner .menu ul li ul li {
        padding: 10px 10px;
    }
    .navigation-menu .inner .menu ul li ul li a {
        font-size: 18px;
    }
    .navigation-menu .inner .menu ul li:hover ul {
        display: block;
    }
    .navigation-menu .inner blockquote {
        display: none;
    }
    .navbar {
        padding: 20px;
    }
    .navbar .left,
    .navbar .right {
        width: 40%;
    }
    .navbar .right .hamburger-menu {
        margin-left: auto;
    }
    header .left-side {
        display: none;
    }
    .header .container h1 {
        font-size: 20vw;
    }
    .header .container h1 span {
        margin-left: 0;
        transform: translateY(0);
    }
    .header .container .slide-btn {
        padding-left: 0;
    }
    .swiper-slider .swiper-slide .slide-inner {
        padding: 0;
    }
    .swiper-slider .swiper-pagination-bullets {
        display: none;
    }
    .swiper-slider .swiper-slide .slide-inner:before {
        display: none;
    }
    .swiper-slider .swiper-slide .slide-inner .container h1 {
        font-size: 8vw;
    }
    .swiper-slider .swiper-slide .slide-inner .container h1 span {
        margin-left: 0;
        transform: translateY(0);
    }
    .swiper-slider .swiper-slide .slide-inner .container .slide-btn {
        padding-left: 0;
    }
    .awards {
        padding: 40px 0;
        padding-bottom: 0;
    }
    .awards .odometer {
        margin-bottom: 40px;
    }
    .works-single h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .works-single h4 {
        margin-bottom: 20px;
    }
    .works-single p {
        font-size: 18px;
        line-height: 30px;
    }
    .hello h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .hello address {
        margin-bottom: 20px;
    }
    .hello iframe {
        height: 400px !important;
    }
    .hello #contact {
        width: auto;
        margin-top: 40px;
        padding: 0;
        margin-left: -15px;
    }
    .team h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .intro h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .intro h4 {
        margin-bottom: 20px;
    }
    .intro p {
        font-size: 18px;
        line-height: 30px;
    }
    .services-content-block h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }
    .direction h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .direction figure figcaption {
        width: 100%;
        position: static;
        display: block;
    }
    .works h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .works .project-box {
        flex-direction: column;
    }
    .works .project-box figure {
        width: 100%;
        margin-bottom: 20px;
    }
    .works .project-box:nth-child(2n+2) figure {
        order: 0;
    }
    .works .project-box:nth-child(2n+2) .content-box {
        text-align: left;
    }
    .works .project-box:nth-child(2n+2) .custom-link a {
        float: left;
    }
    .works .project-box .content-box {
        width: 100%;
        padding-left: 0;
    }
    .works .project-box .content-box .inner small {
        margin-bottom: 5px;
    }
    .works .project-box .content-box .inner h3 {
        margin-bottom: 30px;
    }
    .works .project-box .content-box .inner h3 span {
        margin-left: 0;
        font-size: 12vw;
    }
    .services-content-block .col-md-4:nth-child(3) {
        margin: 40px 0;
    }
    .work-with-us h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .clients h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .clients ul {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 40px;
        width: auto;
    }
    .clients ul li {
        width: 50%;
    }
    .news .pagination {
        margin-top: 0;
        text-align: left;
    }
    .news .pagination a {
        margin-left: 0;
        margin-right: 20px;
    }
    .news .post .post-content {
        padding: 0;
    }
    .news .post:nth-child(2n+2) .post-content {
        padding: 0;
    }
    .footer {
        padding: 40px 0;
        /* padding: 80px 0; */
    }
    .footer .footer-quote img {
        margin-bottom: 40px;
    }
    .footer .footer-quote {
        margin-bottom: 40px;
    }
    .footer .footer-quote h2 {
        font-size: 8vw;
    }
    .footer .footer-contact {
        margin-bottom: 40px;
    }
    .footer .footer-contact address {
        margin-bottom: 30px;
    }
    .footer .footer-bottom ul li {
        margin-right: 15px;
    }
    .error_form h1 {
        font-size: 100px;
    }
    .error_form h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .error_form p {
        font-size: 16px;
        line-height: 25px;
    }
    .error_form form {
        width: 274px;
    }
    .error_section {
        padding-bottom: 100px;
        padding-top: 61px;
    }
}


/* WORKS */

.works {
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    margin: 0 60px;
    padding: 0;
}

.works * {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.works li {
    width: 33.33%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.works li figure {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0;
}

.works li figure.animated figcaption {
    opacity: 1;
}

.works li figure img {
    width: 100%;
}

.works li figure figcaption {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    padding: 30px;
    color: #fff;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #131314 100%);
    background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #131314 100%);
    background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #131314 100%);
    background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #131314 100%);
    background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #131314 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition-delay: 0.5s;
}

.works li figure figcaption h5 {
    font-size: 2vw;
    font-weight: 600;
    margin: 0;
}

.works li figure figcaption h5 a {
    color: #fff;
}

.works li figure figcaption h5 a:hover {
    color: #82c341;
    text-decoration: none;
}

.works li figure figcaption small {
    font-size: 11px;
    letter-spacing: 0.5px;
}


/* IMAGE REVEAL */

.image-reveal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin: 0;
    visibility: visible !important;
}

.image-reveal .image-inner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.image-reveal .image-inner:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #eee;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all ease 0.5s;
    transition-delay: 0.3s;
}

.image-reveal .image-inner:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transition: all ease 0.5s;
    transition-delay: 0s;
}

.image-reveal .image-inner img {
    transform: scale(1.8);
    transition: all ease 0.8s;
    z-index: 1;
    transition-delay: 0.1s;
}

.image-reveal.animated .image-inner:before {
    height: 0;
}

.image-reveal.animated .image-inner:after {
    height: 0;
}

.image-reveal.animated .image-inner img {
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


/* IMAGE REVEAL DELAY */

div {
    text-indent: inherit;
}

div:nth-child(2) .image-reveal .image-inner:before {
    transition-delay: 0.4s;
}

div:nth-child(2) .image-reveal .image-inner:after {
    transition-delay: 0.1s;
}

div:nth-child(2) .image-reveal .image-inner img {
    transition-delay: 0.2s;
}

div:nth-child(3) .image-reveal .image-inner:before {
    transition-delay: 0.5s;
}

div:nth-child(3) .image-reveal .image-inner:after {
    transition-delay: 0.2s;
}

div:nth-child(3) .image-reveal .image-inner img {
    transition-delay: 0.3s;
}

div:nth-child(4) .image-reveal .image-inner:before {
    transition-delay: 0.5s;
}

div:nth-child(4) .image-reveal .image-inner:after {
    transition-delay: 0.3s;
}

div:nth-child(4) .image-reveal .image-inner img {
    transition-delay: 0.4s;
}

li {
    text-indent: inherit;
}

li:nth-child(2) .image-reveal .image-inner:before {
    transition-delay: 0.4s;
}

li:nth-child(2) .image-reveal .image-inner:after {
    transition-delay: 0.1s;
}

li:nth-child(2) .image-reveal .image-inner img {
    transition-delay: 0.2s;
}

li:nth-child(3) .image-reveal .image-inner:before {
    transition-delay: 0.5s;
}

li:nth-child(3) .image-reveal .image-inner:after {
    transition-delay: 0.2s;
}

li:nth-child(3) .image-reveal .image-inner img {
    transition-delay: 0.3s;
}

li:nth-child(4) .image-reveal .image-inner:before {
    transition-delay: 0.5s;
}

li:nth-child(4) .image-reveal .image-inner:after {
    transition-delay: 0.3s;
}

li:nth-child(4) .image-reveal .image-inner img {
    transition-delay: 0.4s;
}


/*# sourceMappingURL=style.css.map */


/********************/

@media (min-width: 1170px) {
    .container {
        max-width: 1100px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1260px;
    }
}


/* RESPONSIVE MEDIUM  */

@media only screen and (max-width: 1199px),
only screen and (max-device-width: 1199px) {
    .section-titles h2 {
        padding-right: 0;
    }
    .icon-content-box .content p {
        padding-right: 0;
    }
}


/* RESPONSIVE TABLET  */

@media only screen and (max-width: 991px),
only screen and (max-device-width: 991px) {
    body {
        cursor: inherit !important;
    }
    textarea,
    input {
        -webkit-appearance: none;
        border-radius: 0;
    }
    .menu-navigation:after {
        content: "";
        width: 100%;
        height: 20%;
        position: absolute;
        left: 30px;
        bottom: 30px;
        background: url("../images/touch-icon.png") no-repeat;
        background-size: contain;
        opacity: 0;
        -webkit-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -o-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
        transition-delay: 1s;
    }
    .menu-navigation.active:after {
        opacity: 0.05;
    }
    .custom-cursor {
        display: none;
    }
    .spacing-50 {
        display: none;
    }
    .spacing-100 {
        display: none;
    }
    .showcase-slider .swiper-slide .slide-inner h1 {
        font-size: 80px;
    }
    .content-section {
        padding: 75px 0;
    }
    .section-titles h2 {
        font-size: 38px;
    }
    .section-titles.no-spacing {
        margin-bottom: 50px !important;
    }
    .page-header .container-fluid {
        padding: 0 60px;
    }
    .counter .odometer span {
        font-size: 38px;
    }
    .counter small {
        font-size: 15px;
    }
    .icon-content-box {
        margin: 30px 0;
    }
    .icon-content-box .content p {
        margin-top: 10px;
    }
    .icon-content-box .content b {
        margin-left: 0;
    }
    .icon-content-box .content h6 {
        width: 100%;
    }
    .page-header .container-fluid h1 {
        font-size: 15vw;
    }
    .clients li figure img {
        padding: 20px 10px;
    }
    .side-address {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .works li {
        width: 50%;
    }
    .blog-post .post-content {
        padding: 0;
    }
    .sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
    .footer .footer-inner address {
        margin-bottom: 30px;
    }
    .footer .footer-inner p {
        margin-bottom: 30px;
    }
}


/* RESPONSIVE MOBILE */

@media only screen and (max-width: 767px),
only screen and (max-device-width: 767px) {
    .topbar {
        padding: 15px;
    }
    .bottombar {
        padding: 15px;
    }
    .header {
        min-height: 100%;
    }
    .page-header {
        min-height: 100%;
    }
    .section-titles h5 {
        letter-spacing: 0;
    }
    .animated h5:after {
        width: 80px !important;
    }
    .animated b:after {
        width: 40px !important;
    }
    .showcase-slider .swiper-slide .slide-inner small {
        letter-spacing: 0;
    }
    .showcase-slider .swiper-slide .slide-inner h1 {
        font-size: 50px;
    }
    .page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner small:after {
        width: 60px !important;
    }
    .page-loaded .showcase-slider .swiper-controls {
        display: none;
    }
    .page-loaded .showcase-slider .swiper-pagination {
        display: none;
    }
    .page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner small:after {
        width: 80px;
    }
    .works {
        width: calc(100% - 30px);
        margin: 0 15px;
    }
    .clients li {
        width: 50%;
    }
    .clients li figure img {
        padding: 15px;
    }
    .page-header .container-fluid {
        padding: 0 15px;
    }
    .counter {
        margin: 15px 0;
    }
    .awards-box {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .accordion .card .card-header a {
        font-size: 26px;
    }
    .section-titles h2 {
        font-size: 30px;
    }
    .page-header .container-fluid h1 {
        font-size: 20vw;
    }
    .page-header .container-fluid p {
        font-size: 15px;
    }
    .blog-post .post-content .post-title {
        font-size: 22px;
    }
    .bottombar .social-media ul li {
        margin-right: 20px;
    }
    .bottombar .social-media ul li:last-child {
        margin-right: 0;
    }
    .bottombar .social-media ul li a .char {
        display: none;
    }
    .bottombar .social-media ul li a .char:nth-child(2),
    .bottombar .social-media ul li a .char:nth-child(3),
    .bottombar .social-media ul li a .char:nth-child(4),
    .bottombar .social-media ul li a .char:nth-child(5) {
        display: inline-block;
    }
    .topbar .languages {
        display: none;
    }
    .topbar .hamburger-menu {
        margin-left: auto;
    }
    .menu-container .main-menu li a {
        font-size: 12vw;
    }
    .custom-list-sides li {
        width: 100%;
    }
    .team-member figure {
        padding: 0 10%;
    }
    .awards-box .odometer {
        font-size: 25vw;
    }
    .showcase-slider .swiper-slide .slide-inner h1 {
        letter-spacing: 0;
    }
    .showcase-slider .swiper-slide .slide-inner h1 b {
        margin-left: 0;
    }
    .works li {
        width: 100%;
    }
    .works li figure figcaption h5 {
        font-size: 8vw;
    }
}


/* KEYFRAMES */

@keyframes texteffect {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes texteffect {
    0% {
        -webkit-transform: translateY(50%);
        -webkit-opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }
}

@-moz-keyframes texteffect {
    0% {
        -moz-transform: translateY(50%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@-o-keyframes texteffect {
    0% {
        -o-transform: translateY(50%);
        opacity: 0;
    }
    100% {
        -o-transform: translateY(0);
        opacity: 1;
    }
}

.upper-service {
    margin-bottom: 50px;
}

.lower-service {
    margin-top: 50px;
}

h1.intern {
    font-size: 55px!important;
}

@media screen and (max-width: 425px) {
    h1.intern {
        font-size: 40px!important;
    }
    h1.intern2 {
        font-size: 30px!important;
    }
    h1.intern3 {
        font-size: 35px!important;
    }
}

.icon-segment {
    position: relative;
    left: 13%;
}

.call-to-action {
    border: 1px solid #ffffff;
    padding: 1px 12px!important;
}


/******************************************************/

#button-zap {
    display: none;
    position: fixed;
    right: -8px;
    bottom: 75px;
    padding: 8px;
    cursor: pointer;
    z-index: 999
}

.animation-target {
    -webkit-animation: animation 6400ms linear infinite both;
    animation: animation 6400ms linear infinite both;
}

@media (min-width: 768px) and (max-width: 991px) {
    .error_section {
        padding-bottom: 120px;
        padding-top: 65px;
    }
}

@media (min-width: 767px) and (max-width: 769px) {
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 19% !important;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 28.333333% !important;
    }
}

.toast {
    max-width: 350px;
    overflow: hidden;
    font-size: 13px;
    background-color: rgb(0 0 0 / 23%);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 1;
    border-radius: 0.25rem;
}

.white-txt-hover {
    color: #ffffff!important;
}

.p-4 {
    padding: 10px 10px 10px 10px!important;
    z-index: 999999!important;
}

.fixed-bottom {
    right: 60px !important;
}

/* =========================================================
   REVIEWS PREMIUM - SIMPLES E ELEGANTE
   COLE NO FINAL DO style.css
   ========================================================= */

.reviews-premium {
  --reviews-neon: #89d246;
  --reviews-neon-2: #4fd38d;
  --reviews-neon-rgb: 137, 210, 70;
  --reviews-bg-1: #050805;
  --reviews-bg-2: #0b120b;
  --reviews-card-top: #182318;
  --reviews-card-bottom: #0e160f;
  --reviews-text: #f3f5f3;
  --reviews-soft: #d7ddd8;
  --reviews-muted: #8b968d;
  --reviews-border: rgba(255, 255, 255, 0.08);
  --reviews-star: #d7f05f;

  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 12% 14%, rgba(var(--reviews-neon-rgb), 0.14), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(var(--reviews-neon-rgb), 0.08), transparent 24%),
    linear-gradient(145deg, var(--reviews-bg-1) 0%, var(--reviews-bg-2) 100%);
}

.reviews-premium__header {
  margin-bottom: 46px;
}

.reviews-premium__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--reviews-neon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-premium__title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.reviews-premium__title span {
  display: block;
  /* color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6); */
}

.reviews-premium__subtitle {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--reviews-muted);
  font-size: 15px;
  line-height: 1.7;
}

.reviews-premium__summary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.reviews-premium .blend-greviews__score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-premium .blend-greviews__avg {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.reviews-premium .blend-greviews__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
  color: var(--reviews-star);
  font-size: 14px;
}

.reviews-premium .blend-greviews__count {
  display: block;
  color: var(--reviews-muted);
  font-size: 11px;
}

.reviews-premium .blend-greviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--reviews-neon-rgb), 0.4);
  background: rgba(var(--reviews-neon-rgb), 0.04);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.reviews-premium .blend-greviews__cta:hover {
  background: var(--reviews-neon);
  color: #091008;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(var(--reviews-neon-rgb), 0.22);
}

/* swiper */
.reviews-premium .blend-greviews__carousel {
  position: relative;
}

.reviews-premium .depoimentos-swiper {
  overflow: hidden;
  padding: 8px 2px 62px;
}

.reviews-premium .swiper-wrapper {
  align-items: stretch;
}

.reviews-premium .swiper-slide {
  display: flex;
  height: auto;
}

.reviews-premium .blend-greviews__item {
  display: flex;
  height: auto;
}

/* card */
.reviews-premium .blend-greviews__card {
  width: 100%;
  display: flex;
  border-radius: 28px;
  border: 1px solid var(--reviews-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--reviews-card-top) 0%, var(--reviews-card-bottom) 100%);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.reviews-premium .blend-greviews__card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--reviews-neon-rgb), 0.35);
  box-shadow:
    0 34px 80px rgba(0,0,0,0.34),
    0 0 24px rgba(var(--reviews-neon-rgb), 0.08);
}

.reviews-premium .blend-greviews__cardInner {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 38px 32px 34px;
  text-align: center;
}

.reviews-premium .blend-greviews__quote {
  position: absolute;
  top: 22px;
  left: 26px;
  font-size: 52px;
  line-height: 1;
  color: var(--reviews-neon);
  opacity: 0.08;
  pointer-events: none;
}

.reviews-premium .blend-greviews__avatarWrap {
  margin-bottom: 18px;
}

.reviews-premium .blend-greviews__avatar {
  width: 112px;
  height: 112px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--reviews-neon), var(--reviews-neon-2));
  box-shadow:
    0 0 0 6px rgba(var(--reviews-neon-rgb), 0.06),
    0 14px 28px rgba(0,0,0,0.28);
}

.reviews-premium .blend-greviews__avatarImg,
.reviews-premium .blend-greviews__avatarFallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #111811;
}

.reviews-premium .blend-greviews__avatarImg {
  display: block;
  object-fit: cover;
  object-position: center;
}

.reviews-premium .blend-greviews__avatarFallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #294627;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.reviews-premium .blend-greviews__starsSm {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--reviews-star);
  font-size: 14px;
}

.reviews-premium .blend-greviews__star.is-off {
  opacity: 0.22;
}

.reviews-premium .blend-greviews__text {
  flex: 1;
  width: 100%;
  max-width: 92%;
  margin: 0;
  color: var(--reviews-soft);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.reviews-premium .blend-greviews__footer {
  margin-top: 24px;
}

.reviews-premium .blend-greviews__name {
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.reviews-premium .blend-greviews__meta {
  color: var(--reviews-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* navegação */
.reviews-premium__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  gap: 10px;
}

.reviews-premium__nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reviews-premium__nav:hover {
  background: var(--reviews-neon);
  color: #091008;
  border-color: var(--reviews-neon);
  box-shadow: 0 0 20px rgba(var(--reviews-neon-rgb), 0.2);
  transform: translateY(-2px);
}

.reviews-premium__nav.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* paginação */
.reviews-premium .depoimentos-pagination {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: auto;
  text-align: left;
}

.reviews-premium .depoimentos-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  margin: 0 5px 0 0 !important;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  opacity: 1;
  transition: all 0.3s ease;
}

.reviews-premium .depoimentos-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: var(--reviews-neon);
  box-shadow: 0 0 12px rgba(var(--reviews-neon-rgb), 0.45);
}

/* responsivo */
@media (max-width: 991px) {
  .reviews-premium__summary {
    justify-content: flex-start;
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .reviews-premium {
    padding: 80px 0 70px;
  }

  .reviews-premium__title {
    font-size: 42px;
  }

  .reviews-premium__summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .reviews-premium .blend-greviews__cardInner {
    min-height: 420px;
    padding: 30px 24px 28px;
  }

  .reviews-premium .blend-greviews__avatar {
    width: 92px;
    height: 92px;
  }

  .reviews-premium .blend-greviews__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.75;
  }

  .reviews-premium .blend-greviews__name {
    font-size: 19px;
  }
}

/* =========================================================
   CORREÇÕES FINAIS — DEPOIMENTOS
   ========================================================= */

/*
 * O Swiper precisa controlar a largura dos slides.
 * Remove o flex-basis de 420px definido nas regras antigas.
 */
.reviews-premium #blendGrGrid .blend-greviews__item {
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  width: auto;
  max-width: none !important;
  min-width: 0;
}

/* Mantém todos os slides esticados na mesma altura. */
.reviews-premium .depoimentos-swiper .swiper-wrapper {
  align-items: stretch;
}

.reviews-premium .depoimentos-swiper .swiper-slide {
  display: flex;
  height: auto;
}

/*
 * Remove a altura fixa de 400px e o padding duplicado
 * das regras antigas.
 */
.reviews-premium #blendGrGrid .blend-greviews__card {
  width: 100%;
  height: 100% !important;
  min-height: 620px !important;
  padding: 0 !important;
  overflow: hidden;
}

/*
 * Permite que o conteúdo determine a altura necessária.
 * O padding inferior impede o footer de ficar colado.
 */
.reviews-premium .blend-greviews__cardInner {
  width: 100%;
  height: 100%;
  min-height: 620px;
  box-sizing: border-box;
  padding: 38px 32px 40px;
}

/* Texto completo, sem corte e com respiro no final. */
.reviews-premium .blend-greviews__text {
  flex: 0 0 auto;
  width: 100%;
  max-width: 94%;
  margin: 0;
  padding-bottom: 8px;
  overflow: visible;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Mantém o nome afastado do fim do depoimento. */
.reviews-premium .blend-greviews__footer {
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
}

/* =========================================================
   AVALIAÇÃO SUPERIOR
   Remove o quadrado branco e cria um bloco escuro integrado.
   ========================================================= */

.reviews-premium .blend-greviews__score {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 12px 16px !important;

  border: 1px solid rgba(var(--reviews-neon-rgb), 0.2) !important;
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(var(--reviews-neon-rgb), 0.09),
      rgba(255, 255, 255, 0.025)
    ) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reviews-premium .blend-greviews__avg {
  color: var(--reviews-neon) !important;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reviews-premium .blend-greviews__stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 5px;
  transform: none;

  color: var(--reviews-star);
  font-size: 15px;

  filter: drop-shadow(
    0 0 5px rgba(var(--reviews-neon-rgb), 0.22)
  );
}

.reviews-premium .blend-greviews__stars .blend-greviews__star {
  font-size: 15px;
}

.reviews-premium .blend-greviews__count {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.2;
}

/* Não desabilita visualmente as setas em modo infinito. */
.reviews-premium__nav.swiper-button-disabled {
  opacity: 1;
  pointer-events: auto;
}

/* Ajustes responsivos. */
@media (max-width: 991px) {
  .reviews-premium #blendGrGrid .blend-greviews__card,
  .reviews-premium .blend-greviews__cardInner {
    min-height: 590px !important;
  }
}

@media (max-width: 767px) {
  .reviews-premium #blendGrGrid .blend-greviews__card,
  .reviews-premium .blend-greviews__cardInner {
    min-height: 0 !important;
  }

  .reviews-premium #blendGrGrid .blend-greviews__card {
    height: auto !important;
  }

  .reviews-premium .blend-greviews__cardInner {
    height: auto;
    padding: 30px 24px 34px;
  }

  .reviews-premium .blend-greviews__text {
    max-width: 100%;
  }

  .reviews-premium .blend-greviews__footer {
    margin-top: 26px;
    padding-top: 0;
  }

  .reviews-premium .blend-greviews__score {
    padding: 11px 14px !important;
  }
}