/*
Theme Name: vendo
Theme URI: http://underscores.me/
Author: vendo
Author URI: http://vendoservices.com/
Description: new vendo corporate site
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vendo
Tags:

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

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

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

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Header
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
        ### Home
        ### AI pricing
        ### Billing + AI Risk
        ### Developers
        ### Events
    ## Comments
    ## Contact form
# Infinite scroll
# Media
    ## Captions
    ## Galleries
# Design effects
--------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300);
@import url(https://fonts.googleapis.com/css?family=Muli);

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:     100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    color: #616161;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-weight: normal;
}

p {
    margin-bottom: 1.5em;
    font-weight: 300;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    font-size: 21px;
    line-height: 31px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #666666;
    border-left: 3px solid #3498db;
    margin: 0 0 20px;
    padding-left: 20px;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

figure {
    margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

footer.site-footer {
    width: 100%;
    padding: 2.3em 6em;
    background: #212121;
    text-align: center;
}

.site-footer .site-info {
    font-family: 'Open Sans', sans-serif;
}
.site-footer .site-info .left-block {
    float: left;
    display: inline-block;
    font-weight: 400;
    text-align: left;
}
.site-footer .site-info .right-block {
    float: right;
    margin-top: 16px;
}
.site-footer .site-info .right-block li {
    list-style: none;
    display: inline;
    float: left;
    margin-right: 20px;
    border-right: 1px solid #555;
    padding-right: 20px;
}
.site-footer .site-info .right-block li:last-child {
    border: none;
}
.site-footer .site-info .right-block li a {
    text-decoration: none;
    color: #999;
}
.site-footer .site-info .right-block li a:hover {
    color: #555;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, .8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

select {
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

textarea {
    width: 100%;
}
*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    width: 100%;
    padding: 0.5em 6em;
    background: #212121;
    z-index: 9999;
}

.site-branding {
    max-width: 250px;
    width: auto;
    display: inline-block;
}

.site-title {
    margin: 0;
    font-size: 16px;
    line-height: 18px;
}

.site-title img {
    width: 145px;
    height: auto; 
}

.navigation-container {
    width: auto;
    float: right;
    padding-right: 40px;
}

.menu-toggle {
    display: none;
}

.head-container {
    max-width: 1920px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: #0b8dbe;
    font-weight: 400;
}

a:visited {
    color: #3498db;
}

a:hover,
a:focus,
a:active {
    color: #0eb3f1;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    display: block;
    float: right;
    width: auto;
    margin-top: .9em;
}
.main-navigation .menu li a {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 1.3em;
    color: #fff;
    font-family: 'Muli', sans-serif;
    display: block;
    padding: 15px 10px;
}
.main-navigation .menu li a:hover {
    background-color: #000;
    -webkit-transition: background-color .37s linear;
    -ms-transition: background-color .37s linear;
    transition: background-color .37s linear;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
    margin: 0 10px;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul.sub-menu {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 45px;
    left: -999em;
    width: 400px;
    z-index: 99999;
    padding: 25px 0;
    background-color: #f6f9fc;
}
.main-navigation ul ul.sub-menu:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 34px;
    width: 0; 
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 9px solid  #f6f9fc;
}
.main-navigation .sub-menu li {
    border: none;
    margin: 5px;
}
.main-navigation .menu .sub-menu li a {
    text-align: left;
    color: #616161;
    padding: 10px 15px;
}
.main-navigation .menu .sub-menu li a:hover {
    background-color: #e4e8ed;
}
.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 190px;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. 
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}*/

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*---------------------------------
## Menu icons
-----------------------------------*/
/*.main-navigation li.services .sub-menu li.billing {
    background: url('img/ai-menu-icon.png') left center no-repeat;
    padding: 20px 10px;
}
.main-navigation li.services .sub-menu li.billing a:hover{
    background-color: transparent;
}*/
/*---------------------------------
## Responsive
-----------------------------------*/
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .site-header {
        padding: 0.5em 2em;
        position: relative;
    }
    .menu-primary-menu-container {
        display: none;
    }
    .main-navigation.toggled .menu-primary-menu-container {
        display: block; 
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 25px;
        top: 25px;
        border: 1px solid #000;
        padding: 5px 12px;
    }
    .main-navigation.toggled ul ul.sub-menu {
        width: 200px;
    }
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}
/* JS COMPOSER */
.vc_empty-placeholder {
    margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

.vendo-heading {
    letter-spacing: 2px;
}
/*-----------------------------
### HOME
-------------------------------*/
.vc_btn3.vc_btn3-style-outline,
.vc_btn3.vc_btn3-style-flat {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.welcome-text { 
    letter-spacing: 5px;
    padding-bottom: 15px;
}

.vendo-forms img {
    position: absolute;
    top: -50px;
    left: 50px;
}

.vc_custom_heading.title-bg {
    color: #fff;
    background-position: center 8px !important;
}
.home-banner .vc_btn3.vc_btn3-color-black.vc_btn3-style-outline {
    letter-spacing: 2px;
}

.home-services .vc_column-inner h2 {
    letter-spacing: 3px;
}

.home-services .vc_column-inner .wpb_text_column p {
    font-size: 15px;
    padding: 0 5px;
    line-height: 25px;
}
.home-services .wrong-way p {
    color: #999;
}
.intro-description {
    font-size: 18px;
    text-align: center; 
    font-weight: 400;
}

.better-slogan {
    text-transform: uppercase;
    letter-spacing: 3px;
}

.home-banner .intro-buttons {
    text-align: center;
}

.home-services .pictonblue {
    text-transform: uppercase;
}

#xbiz {
    background-repeat: repeat-x !important;
}

.quote .lvca-testimonials-slider .lvca-testimonial-text i {
    color: #be74e0;
}

.lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-author-credentials {
    color: #0eb3f0;
}


/*------------
 Banner motion
-------------*/

.iphone-left-motion img {
    top: 165px;
    left: -15px;
    width: 184px;
}
.iphone-right-motion img {
    top: -66px;
    left: 657px;
    width: 215px;
}

.ipad-motion img {
    top: -115px;
    left: 227px;
    width: 375px;
    padding: 25px 11px !important;
}

/*.laptop img {
    position: absolute;
    top: 390px;
    left: 279px;
    width: 820px;
}*/

.laptop-motion.gif img {
    border-radius: 21px;
}
.laptop-motion img {
    position: absolute;
    top: 350px;
    left: 260px;
}

.gif {
    position: relative;
    z-index: 99;
    transform: rotate(-12deg);
    -webkit-transform: rotate(-12deg);
    -moz-transform: rotate(-12deg);
    -o-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
}
.gif img {
    position: absolute;
    padding: 25px 9px;
    border-radius: 27px;
    background: #fff;
    /*box-shadow: inset 6px -6px 11px rgba(145,160,180,.45), -10px 10px 20px rgba(118,146,180,.3);*/
    box-shadow: inset 0 4px 7px 1px #fff, inset 0 -5px 20px rgba(173,186,204,.25), 0 2px 11px rgba(0,21,64,.21), 0 10px 20px rgba(0,21,64,.05);
}

/*------
 Pop up 
-------*/
.popup {
    position: fixed;
    top: 175px;
    right: 40px;
    z-index: 999;
}
#popup-click-close {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -30px;
    z-index: 9999;
    height: 30px;
    width: 30px;
    background: url('img/close-icon.png') no-repeat;
}
.popup-container {
    position: relative;
    background-color: rgba(33,33,33,0.7);
    min-width: 310px; 
    max-width: 290px;
    opacity: 1; 
    color: #fff;
    padding: 15px 20px;
}
.popup-title {
    margin-top: 10px;
    margin-bottom: 0;
}
.popup-container p {
    margin: 5px 0;
}
p.popup-link {
    margin: 17px 0 10px 0;
    padding: 10px;
    background-color: rgba(33,33,33,1);
}
p.popup-link:hover {
    -webkit-transition: background-color .35s linear;
    -ms-transition: background-color .35s linear;
    transition: background-color .35s linear;
    background-color: #32DBEC;
}
p.popup-link:hover a {
    color: #212121;
}
.popup-link a {
    color: #32DBEC;
    text-decoration: none;
    cursor: pointer;
}

/*-----------------------------
### AI Pricing
-------------------------------*/
.aria-intro-text .mouse {
    left: 25%;
}
.percentage-heading {
    letter-spacing: -2px;
    margin-top: 0px;
}
.aria-revenue-block .wpb_content_element {
    margin-bottom: 15px;
}

.more-money p {
    font-size: 15px;
    line-height: 2em;
}

.aria-values-main-heading {
    letter-spacing: 3px;
}

.aria-values-heading {
    text-transform: uppercase;
}

.aria-values-text {
    font-size: 15px;
    line-height: 24px;
}

#faq-1 .vc_tta-panel-heading {
    background: #e9f5e5;
}
#faq-1 .vc_tta-panel-body {
    background-color: #F5FDF1;
}

#faq-2 .vc_tta-panel-heading,
#faq-2 .vc_tta-panel-body {
    background: #FFF1DE;
}
/*-----------------------------
### Billing + AI Risk
-------------------------------*/

.billing-page p,
.risk-page {
    font-weight: 300;
}

/*-----------------------------
### Developers
-------------------------------*/
#lower-diagonal.dev-blue-gradient {
    background-position: center bottom !important;
    background-repeat: repeat-x !important;
}
#lower-diagonal.dev-blue-gradient .wpb_text_column p {
    color:#333;
}
#lower-diagonal.nats {
    background-repeat: repeat-x !important;
}

/*-----------------------------
### Events
-------------------------------*/
.events .intro-banner .wpb_content_element {
    margin-bottom: 0;   
}
.events .thumbnail-text h4 {
    text-transform: uppercase;
    color: #8c8c8c;
    margin: 0;
}

.events .current-event-text h1 {
    font-weight: 300;
    letter-spacing: 3px;
}
.events .current-event-text h1,
.events .current-event-text h2,
.events .current-event-text h3,
.events .current-event-text h4  {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## About us - Team
--------------------------------------------------------------*/
.about-us .team-container .team-items.team-flat .team-item {
    background: transparent !important;
    width: auto;
}
.team-popup-box .team-slide-content ol li { 
    margin: 15px 0; 
    font-size: 14px;
}
.team-popup-box .team-slide-position {
    font-size: 17px;
    color: #999;
}
.team-popup-box .team-slide-thumb {
    height: 410px; 
    overflow: hidden;
}
.team-container {
    margin: 0; 
    padding:0;
}
.team-container .team-items .team-thumb {
    width: 233px; 
    height: 238px; 
    position: relative;
} 
.team-flat .team-thumb img:hover { 
    top: -238px; 
    left:0; 
    position: absolute; 
} 

.team-container .team-items .team-item:nth-child(2n+1) .team-thumb {
    width: 151px; 
    height: 156px;
} 
.team-container .team-items .team-item:nth-child(2n+1) .team-thumb img:hover { 
    top: -156px; 
}
.team-container .team-items .team-item:nth-child(3n+4) .team-thumb {
    width: 190px; 
    height: 195px;
} 
.team-container .team-items .team-item:nth-child(3n+4) .team-thumb img:hover { 
    top: -195px;
}

.team-container .team-items .team-item:nth-child(4n+2) .team-thumb {
    width: 280px; 
    height: 285px;
} 
.team-container .team-items .team-item:nth-child(4n+2) .team-thumb img:hover { 
    top: -285px;
}
.team-container .team-items .team-item:nth-child(2n+1) .team-thumb {
    margin-top: -25%;
}

.team-container .team-items .team-item:nth-child(3) .team-thumb {
    margin-top: 89%;
}
.team-container .team-items .team-item:nth-child(1) .team-thumb,
.team-container .team-items .team-item:nth-child(5) .team-thumb,
.team-container .team-items .team-item:nth-child(7) .team-thumb,
.team-container .team-items .team-item:nth-child(9) .team-thumb {
    margin-top:0;
}

.team-popup-box .team-slide-thumb {
    height: 500px;
}

.team-popup-box .team-slide-content ol {
    padding-left: 0;        
}

@media(max-width:480px) {
    .about-us .team-container .team-items.team-flat .team-item {
        width: 320px;
        height: 325px;
    }
    .about-us .team-container .team-items.team-flat .team-item .team-thumb {
        width: 310px;
        height: 315px;
        margin:0;
    }
    .team-container .team-items .team-item .team-thumb img:hover,
    .team-container .team-items .team-item:nth-child(2n+1) .team-thumb img:hover,
    .team-container .team-items .team-item:nth-child(4n+2) .team-thumb img:hover, 
    .team-container .team-items .team-item:nth-child(3n+4) .team-thumb img:hover {
        top: -315px;
    }
    .team-popup-box .team-slide-thumb {
        display: none;
        visibility: hidden;
    }
    .team-popup-box .team-slide-content ol {
        margin-left: 15px;
    }
}

#lower-diagonal.values {
    background-repeat: repeat-x !important;
}
h2.quote {
    font-style: italic !important;
}
#lower-diagonal.gradient-bottom {
    background-position: center bottom !important;
    background-repeat: repeat-x !important;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
## Contact form
--------------------------------------------------------------*/
.contact-form {
    
}

select, 
input[type="email"], 
input[type="text"], 
input[type="password"],
textarea {
    border-radius: 0;
    border: 1px solid #ccc;
    background: #fff;
    font-weight: bold;
    font-weight: 400;
    color: #828282;
    padding: 7px 10px;
    width: 100%;
}
input[type="submit"] {
    font-size: 16px;
    padding: 13px 25px;
    color: #fff;
    background-color: #2A2A2A;
    border: 1px solid;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-moz-placeholder,
:-ms-input-placeholder {
  color: #616161;
}

label {
    text-align: left;
    text-transform: uppercase;
    color: #333;
    font-size: 11px;
    font-weight: bold;
}

textarea {
    height: 110px;
}

#no-repeat {
    background-repeat: repeat-x !important;
}

.contact-form div.wpcf7-mail-sent-ng {
    color: #eb385f;
    border: 2px solid;
}
.contact-form div.wpcf7-mail-sent-ok {
    color: #02bd9e;
    border: 2px solid;
}

.contact-form div.wpcf7-validation-errors {
    color: #F7960F;
    border: 2px solid;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Design effects
--------------------------------------------------------------*/
.diagonal-line-effect {
    /*top: 50%;
    left: 15px;
    right: 0px;
    transform: skewY(-9deg);
    padding: 100px 0;*/
    position: absolute;
    width: 100%;
    height: 180%;
    top: 0;
    transform: skewY(-9deg);
    padding: 100px 0;
}

/*--------------------------------------------------------------
## Responsiveness :: Media query
--------------------------------------------------------------*/


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

}

@media(max-width:480px) {
    .popup {
        top: 105px;
        right: 35px;
    }
    .top-space {
        display: none;
        visibility: hidden;
    }
    footer.site-footer {
        padding: 1.3em 1em;
    }
}
@media(min-width:1600px) {
    .laptop img {
        top: 444px;
    }
    .diagonal-line-effect {
        padding-bottom: 180px;
    }
    #lower-diagonal {
        margin-top: -210px !important;
        padding-top: 80px !important;
        padding-bottom: 180px !important;
    }
}