@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700');

*:focus,
*:active{
    outline: 0;
}
*{
    box-sizing: border-box;
    /* font-variant: normal;
    text-transform: none; */
    /* line-height: 1; */
    /* text-decoration: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

a{
    text-decoration: none;
}

html,
body{height: 100%; width: 100%;}

body{
    font-family: 'Montserrat', sans-serif;
    color: #4C4C4C;
}

.wrapper{
    width: 100%;
    max-width: 1180px;
    /* padding: 0 20px; */
    margin: 0 auto;
    position: relative;
}

.logo{
    background: url("../images/logo.svg") no-repeat center / 100%;
    display: inline-block;
    width: 234px;
    height: 46px;
}

.main-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main-menu li {
    float: left;
}



.main-menu{
    display: inline-block;
    vertical-align: top;
}
.main-menu a{
    font-size: 16px;
    padding: 15px 0 8px;
    margin: 0 12px;
    color: white;
    display: inline-block;
    font-weight: 300;
    text-shadow: 2px 2px #333;
}
.main-menu a.active{
    border-bottom: 2px solid white;
}

.main-menu a.active:hover {
    color: #5CC133;
}

.main-menu a:hover {
    color: #5CC133 !important;
}

/* Slick */
    .slick-arrow{
        border: 0;
        font-size: 0;
        height: 36px;
        width: 36px;
        cursor: pointer;
        background: url("../images/arrow.svg") no-repeat center rgba(255, 255, 255, .15);
        position: absolute;
        right: 0;
        top: calc(50% - 18px);
        z-index: 1;
    }
    .slick-arrow.slick-prev{
        right: auto;
        left: 0;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }

    .slick-dots{
        margin: 0;
        padding: 0;
    }
    .slick-dots li{
        display: inline-block;
    }
    .slick-dots button{
        border: 0;
        font-size: 0;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        padding: 0;
        margin: 0 4px;
        cursor: pointer;
        background: #828081;
    }
    .slick-active button{
        background: #5CC133;
    }
/* .Slick */

/* Small Buttons */
    .small-button{
        font-size: 14px;
        border-radius: 4px;
        display: inline-block;
        padding: 8px;
        color: white;
        background: #5CC133;
        border: 1px solid #5CC133;
        text-align: center;
    }

    .small-button:hover {
        background: green !important;
        transition: all 0.5s;
    }


    .small-button.white{
        background: white;
        color: #5CC133;
    }
    .small-button.border{
        border: 2px solid #5CC133;
        background: transparent;
        color: #5CC133;
    }
    .small-button.white.border{
        border: 2px solid white;
        background: transparent;
        color: white;
    }
/* .Small Buttons */

/* Animated Buttons */

/* Global Button Styles */



a.animated-button-green {
    color: #5CC133;
    cursor: pointer;
    /* display: block; */
    position: relative;
    border: 2px solid #5CC133;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}


a.animated-button-green::before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	color: #FFF !important;
	background-color: #5CC133;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}



a.animated-button-green:hover::before {
	bottom: 0%;
	top: auto;
	height: 100%;
}


a.animated-button-green:hover {
	color: #FFF !important;
    background-color: #5CC133;
    text-shadow: none;
    
}



/* General button style (reset) */
/* Button 1c */

.btnbreak {
    padding: 40px 0 0 0;
}

.btn {
    position: relative;
    height: 45px;
    width: 150px;
    margin: 10px 7px;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 14px;
    color: #5CC133;
    border: 2px #5CC133 solid;
    border-radius: 4px;
    text-transform: uppercase;
    outline: 0;
    overflow:hidden;
    background: none;
    cursor: pointer;
    z-index: 1;
    transition:         0.08s ease-in;
    -o-transition:      0.08s ease-in;
    -ms-transition:     0.08s ease-in;
    -moz-transition:    0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
  }
  

  .btn:hover {
    color: whitesmoke !important;
  }
  
  .btn:before {
    content: "";
    position: absolute;
    background: #5CC133;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    -webkit-transition: top 0.09s ease-in;
    transition:         0.09s ease-in;
  }
  
  .btn:hover:before {
    top: 0;
  }


  .btn_white {
    position: relative;
    height: 45px;
    width: 150px;
    margin: 10px 7px;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 14px;
    color: #FFF;
    border: 2px #FFF solid;
    border-radius: 4px;
    text-transform: uppercase;
    outline: 0;
    overflow:hidden;
    background: none;
    cursor: pointer;
    z-index: 1;
    transition:         0.08s ease-in;
    -o-transition:      0.08s ease-in;
    -ms-transition:     0.08s ease-in;
    -moz-transition:    0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
  }
  

  .btn_white:hover {
    color: whitesmoke;
    border: 2px solid #5CC133;
  }
  
  .btn_white:before {
    content: "";
    position: absolute;
    background: #5CC133;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    -webkit-transition: top 0.09s ease-in;
    transition:         0.09s ease-in;
  }
  
  .btn_white:hover:before {
    top: 0;
  }




/* Header */
    header{
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        height: 100px;
    }
    body.logged-in header{
        top: 0px;
    }
    header .logo{
        height: 80px;
    }    
    header .main-menu-container{
        display: block;
        float: right;
    }
    header .small-button{
        vertical-align: top;
        margin: 8px 0 0 8px;
    }
    header .request{
        margin-left: 10px;
    }

    .utilitynav {
        text-align: right;
    }


    .header-white{
        background: white;
        box-shadow: 0 0 20px #ececec;
        position: fixed;
    }
    .header-white .main-menu a{
        color: #687B82;
        text-shadow: none;
    }
    
    .home .header-white .main-menu a.active{
        border-bottom: 2px solid #1FC1FF;
    }

    .single .header-white .main-menu a.active {
        border-bottom: 0 !important;
    }


    .header-white .logo{
        background: url("../images/logo_black.svg") no-repeat center / 100%;
    }
/* .Header */

/* Post Preview */
    .post-preview{
        background: white;
        border-radius: 4px;
        box-shadow: 0 0 12px rgba(0, 0, 0, .06);
        width: 100%;
        margin-bottom: 30px;
        text-align: left;
        min-height: 127px;
        position: relative;
    }
    .post-preview:last-of-type{
        margin-bottom: 0;
    }
    .post-preview .post-logo{
        width: 160px;
        height: 100%;
        display: inline-block;
        vertical-align: top;
        border-right: 5px solid #7ADE51;
        position: absolute;
    }
    .post-preview .post-info{
        display: inline-block;
        vertical-align: top;
        padding: 30px 30px 30px 180px;
        width: 100%;
    }
    .post-preview .post-title{
        font-size: 20px;
        color: #4C4C4C;
        font-weight: 500;
        margin: 15px 0;
    }
    .post-preview .post-title a{
        color: #4C4C4C;
    }
/* .Post Preview */


.post-company {
    color: #5CC133;

}

/* Case Study Preview */
    .cases-list{
        text-align: left;
    }
    .case-preview{
        width: 250px;
        height: 312px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 0 12px rgba(0, 0, 0, .06);
        display: inline-block;
        margin: 0 20px 40px 20px;
        position: relative;
        background: black;
    }
    .case-preview:hover{
        opacity: 0.9;
    }
    .case-preview .photo,
    .case-preview .logo{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .case-preview .photo{
        opacity: 0.9;
    }

    .case-preview .photo:hover {
       
        background-color: rgba(100,193,16, 0.7) !important;
        background-blend-mode: screen;
    }



    .case-study-detail .bg-fold{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 1 !important;
    }



/* ArrivaLIST landing */

.landingbreak {
    min-height: 40px;
    display: block;
}

.landing .bg-fold {
    opacity: 1 !important;
}

hr.styletwo {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(34, 245, 6, 0), rgba(34, 245, 6, 0.75), rgba(34, 245, 6, 0));
    margin: 60px 0 0 0;
}

.landing .scroller {
    color: #5CC133;
    padding: 30px 0;
}

.su-tabs-panes h1 {
color: #5CC133;
font-size: 40px !important;
}

.su-tabs-panes h3 {
    font-size: 24px;
}

.su-tabs-panes li {
    font-size: 18px;
    padding: 8px 16px;
    line-height: 25px;
}

.su-tabs-panes .wpcf7-form {
    padding: 5px 30px !important;
    padding-bottom: 8px !important;
    background: #F4f4f4;
}

.su-tabs-panes p {
    color: #999;
    font-size: 14px;
    line-height: 18px;
}

.su-tabs-nav span {
    font-size: 16px !important;
}



/* .Case Study Preview */

/* Fold Content */
    .fold-content{
        position: relative;
        width: 100%;
        padding: 150px 0;
        text-align: center;
    }
    .bg-fold{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0.4;
    }
    .fold-title{
        font-size: 32px;
        position: relative;
        font-weight: 400;
        padding-top: 30px;
        margin: 0 0 20px;
    }
    .fold-title:before{
        content: "";
        background: #64C110;
        height: 2px;
        width: 100px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .fold-subtitle{
        font-size: 24px;
        font-weight: 400;
        color: #1D1D1D;
    }
    .fold-description{
        font-size: 16px;
        font-weight: 300;
        line-height: 2;
        max-width: 828px;
        margin: 0 auto;
    }

    /* Fold Intro */
        #fold-intro{
            min-height: 100vh;
            background: #383838;
            color: white;
            text-align: right;
        }
        #fold-intro .wrapper{
            height: 100%;
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            top: 0;
        }
        #fold-intro .fixed-image{
            position: absolute;
            z-index: 1;
            max-width: 700px;
            max-height: 393px;
            left: 0;
            top: 50%;
            transform: translateY(-60%);
            -webkit-transform: translateY(-60%);
            -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
            -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
            box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        }


        #fold-intro .fixed-image img{
            /* width: 100%;
            height: auto; */
        }
        #fold-intro .slide{
            position: absolute;
            width: 100%;
            top: 50%;
            transform: translateY(-70%);
            -webkit-transform: translateY(-70%);
        }
        #fold-intro .wrapper .slick-list{
            max-width: 90%;
            float: right;
        }
        #fold-intro .slide-item{
            transition: all .2s ease-in-out;
            -webkit-transition: all .2s ease-in-out;
            opacity: 0;
        }
        #fold-intro .slide-item.slick-active{
            opacity: 1;
        }
        #fold-intro .slide-info{
            width: 100%;
            max-width: 455px;
            float: right;
        }
        #fold-intro .slide-title{
            font-size: 45px;
            font-weight: 400;
            margin: 0 0 15px;
        }
        #fold-intro .slide-description{
            font-size: 20px;
            line-height: 1.4;
            font-weight: 300;
            margin: 0;
        }
        #fold-intro .slick-prev{
            left: -80px;
        }
        #fold-intro .slick-next{
            right: -80px;
        }

        /* Testimonials */
            .testimonials{
                position: absolute;
                bottom: 0;
                width: 100%;
                background: rgba(0, 0, 0, .45);
                text-align: center;
                padding: 30px 0;
            }
            #fold-intro .testimonials .slide-info{
                text-align: center;
                float: none;
                margin: auto;
                padding: 0 20px;
                max-width: initial;
            }
            .testimonials p{
                margin: 20px 0 20px 0px;
            }
            .testimonials .slide-quote{
                font-size: 24px;
                line-height: 1.5;
                font-weight: 100;
            }
            .testimonials .slide-author span{
                color: #5CC133;
            }
        /* .Testimonials */
    /* .Fold Intro */

    /* Fold Solutions */
        #fold-solutions .fold-subtitle{
            max-width: 420px;
            margin: 20px auto;
        }
        #fold-solutions .fold-description{
            margin-bottom: 60px;
        }
        #fold-solutions .slide-item{
            max-width: 528px;
            padding: 10px;
        }
        #fold-solutions .slide-item img{
            width: 100%;
        }
        #fold-solutions .wrapper-slide{
            max-width: 1280px;
        }
        #fold-solutions .cols{
            margin-bottom: 80px;
        }
        #fold-solutions .cols > div{
            box-sizing: initial;
            text-align: center;
            display: inline-block;
            width: 49%;
            max-width: 425px;
            vertical-align: top;
            padding: 0 75px;
            border-right: 1px solid #EEEEEE;
        }
        #fold-solutions .cols img{
            max-width: 140px;
            height: 100px;
        }
        #fold-solutions .cols .col-left{
            padding-left: 0;
        }
        #fold-solutions .cols .col-right{
            border: 0;
            padding-right: 0;
        }

        /* Buttons */
            .col-button{
                padding: 20px 25px 20px 105px;
                border-radius: 4px;
                box-shadow: 0 5px 12px rgba(0, 0, 0, .06);
                margin-bottom: 33px;
                text-align: left;
                font-size: 20px;
                min-height: 86px;
                border: 1px solid #E7E7E7;
                display: flex;
                align-items: center;
                background: white;
                position: relative;
            }
            .col-button span{
                width: 40px;
                height: 40px;
                display: block;
                position: absolute;
                left: 40px;
            }
            .col-button.green{
                color: white;
                background: linear-gradient(to right, #67C314 , #80D633);
            }
            .col-button:last-of-type{
                margin-bottom: 0;
            }
        /* .Buttons */
    /* .Fold Solutions */

    /* Fold Methodology */
        #fold-methodology{
            background: #F8FAFC;
        }
        #fold-methodology .fold-description{
            margin-bottom: 60px;
        }
        #fold-methodology img{
            width: 100%;
            max-width: 850px;
        }
    /* .Fold Methodology */

    /* Fold Case Studies */
        #fold-case-studies .fold-description{
            margin-bottom: 60px;
        }
        #fold-case-studies .read-more{
            margin: auto;
            display: block;
            max-width: 110px;
            text-align: center;
        }
    /* .Fold Case Studies */

    /* Fold News */
        #fold-news{
            background: #F8FAFC;
        }
        #fold-news .wrapper{
            max-width: 935px;
        }
        #fold-news .post-list{
            margin: 80px 0 0;
        }
        #fold-news .small-button.border{
            margin-top: 80px;
        }
    /* .Fold News */

    /* Fold About Us */
        #fold-about-us .fold-description{
            margin-bottom: 62px;
        }
        #fold-about-us .fold-subtitle{
            margin-bottom: 80px;
        }
        #fold-about-us .team-item{
            display: inline-block;
            vertical-align: top;
            width: calc(49% - 40px);
            margin: 0 20px 100px 20px;
            position: relative;
        }
        #fold-about-us .team-photo{
            position: absolute;
            left: 37px;
        }

        /* #fold-about-us .team-item:nth-last-of-type(1) .team-photo {
            border: 1px solid #D4D4D4;
            border-radius: 2px;
        } */

        #fold-about-us .team-info{
            font-size: 16px;
            font-weight: 400;
            text-align: left;
            padding: 25px 0 10px 180px;
        }
        #fold-about-us .team-name{
            color: #5CC133;
        }
        #fold-about-us .team-name,
        #fold-about-us .team-job{
            display: inline-block;
            width: 100%;
            margin-bottom: 5px;
        }
        #fold-about-us .linkedin{
            background: url("../images/linkedin.svg") no-repeat center;
            display: block;
            height: 22px;
            width: 22px;
            margin-top: 2px;
        }
        #fold-about-us .team-description{
            background: white;
            border-radius: 4px;
            padding: 36px;
            box-shadow: 0 0 12px rgba(0, 0, 0, .15);
            display: inline-block;
        }
        #fold-about-us .team-description p{
            margin: 0;
            font-size: 16px;
            line-height: 27px;
            font-weight: 300;
            text-align: left;
            /* overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical; */
        }
    /* .Fold About Us */

    /* Fold Slide */
        #fold-slide-company{
            background: #292929;
            padding: 0;
        }
        #fold-slide-company .slide .item{
            height: 350px;
            width: 350px;
            margin: 0 0px;
        }
    /* .Fold Slide */


/* Author line */
.author {
border-bottom: 1px solid #D4D4D4;
padding: 20px 0;
border-top: 1px solid #D4D4D4;
margin: 0 0 60px 0;
color: #5CC133;
font-weight: 500;
}

/* Post Navigation */
.postnav {
    border-bottom: 1px solid #D4D4D4;
    padding: 20px 0;
    border-top: 1px solid #D4D4D4;
    margin: 60px 0 60px 0;
    color: #5CC133;
    font-weight: 500;
    }

.postnav a {
    color: #5CC133 !important;
}

.postnav a:hover {
    color: #000 !important;
}

/* JOB MANAGER */

.job_listings .job_filters {
    display: none;

}

.job_listings .company_logo {
    display: none;

}

ul.job_listings li.job_listing a {
    padding: 30px 0 !important;
}

ul.job_listings li::before {
    content: none !important;

}

ul.job_listings .position {
    padding: 0 !important;
    width: 45% !important;

}

ul.job_listings .position h3 {
    color: #5CC133;
    padding-left: 20px !important;

}

ul.job_listings li.job_listing a .meta {
    width: auto;
}

.job_listings .page-detail .node-title {
    font-size: 40px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    margin: 0;
}

.job_listings .page-detail .border-title {
    margin: 0 !important;
    
}

.single_job_listing .meta {

    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    padding: 20px 0 0px 0 !important;

}

ul.job-listing-meta meta li {
    margin: 0 !important;
    margin-bottom: 0px !important;
}

.single-job_listing .page-detail .node-body li {
    margin-bottom: 0 !important;
}

ul.job-listing-meta li::before {
    content: none !important;

}

.single_job_listing .meta .full-time {
    background: transparent !important;
    color: #5CC133;
    font-weight: 500;
}

.job-manager-application-wrapper .application, .single_job_listing .application {
    padding: 30px 0 30px 0;
}

.page-detail .node-body .single_job_listing .application a {
    color: #5CC133;
}




    /* Fold Contact Us */
        #fold-contact-us{
            background: #383838;
            color: white;
        }
        #fold-contact-us .fold-description{
            margin-bottom: 80px;
        }
        .locations{
            background: white;
            border-radius: 4px;
            padding: 60px;
            color: black;
            text-align: center;
            max-width: 638px;
            margin: 0 auto;
        }
        .location{
            width: 100%;
            max-width: 49%;
            display: inline-block;
            vertical-align: top;
            text-align: left;
        }
        .location:last-of-type{
            padding-left: 50px;
        }
        .location h2{
            margin: 0 0 20px;
            font-size: 16px;
            color: #222222;
            font-weight: 500;
            background: url("../images/location.svg") no-repeat 0 center;
            display: block;
            padding: 10px 0 10px 40px;
        }
        .location hr{
            width: 40px;
            display: inline-block;
            margin-bottom: 15px;
        }
        .location span{
            display: block;
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 10px;
        }
        .location span:last-of-type{
            margin: 0;
        }
    /* .Fold Contact Us */
/* .Fold Content */

/* Page Detail */
    .page-detail .top-node-info{
        padding: 160px 0 80px;
        background: black;
        position: relative;
        text-align: center;
        color: white;
        min-height: 450px;
        text-align: left;
    }
    .page-detail .node-title{
        font-size: 40px;
        font-weight: 400;
        display: inline-block;
        position: relative;
        margin: 0;
        padding: 20px 0;
    }
    .page-detail .border-title{
        width: 100px;
        height: 2px;
        background: white;
        margin: 0 0 20px;
    }
    .page-detail .wrapper{
        max-width: 1098px;
        padding: 0 20px;
    }
    .page-detail .node-body{
        font-size: 16px;
        line-height: 1.6;
        font-weight: 300;
        padding: 100px 0;
    }
    .page-detail .node-body h2,
    .page-detail .node-body h3{
        font-size: 20px;
        font-weight: 500;
        color: #2D2D2D;
    }
    .page-detail .node-body h2{
        font-size: 32px;
        line-height: 1.4;
        position: relative;
        padding-top: 30px;
        margin: 60px 0 40px;
    }
    .page-detail .node-body h2:before{
        content: "";
        width: 100px;
        height: 2px;
        background: #64C110;
        position: absolute;
        top: 0;
        left: 0;
    }
    .page-detail .node-body ul{
        list-style: none;
        padding: 0;
    }
    .page-detail .node-body li{
        color: #4C4C4C;
        padding-left: 20px;
        position: relative;
        margin-bottom: 20px;
    }
    .page-detail .node-body li::before {
        content: "•";
        color: #5CC133;
        display: inline-block;
        width: 20px;
        margin-left: 0;
        font-size: 40px;
        line-height: 0;
        height: 20px;
        position: absolute;
        left: 0;
        top: 8px;
    }
    .page-detail .node-body p img{
        width: 100%;
        height: auto;
        margin: 10px 0;
    }
    .page-detail .node-body strong{
        font-weight: 600;
    }
    .page-detail .node-body a{
        color: #4A90E2;
    }

    /* Case Study Detail */
        .case-study-detail .wrapper{
            max-width: 900px;
        }
        .case-study-detail .top-node-info{
            text-align: left;
        }
        .case-study-detail .border-title{
            margin: 0;
        }
        .case-study-detail .case-logo{
            height: 110px;
            width: 200px;
            margin: 30px 0;
        }
        .case-study-detail .node-title{
            padding-top: 0;
            font-size: 40px;
        }
        .case-study-detail .small-button.download{
            margin: 34px auto 0;
            display: block;
            width: 175px;
            background: url("../images/icons/download.svg") no-repeat 90% center #5CC133;
            padding-right: 35px;
            color: white;
        }
    /* .Case Study Detail */
/* .Page Detail */

/* Page News */
    .news-page{
        padding: 120px 0;
    }
    .news-page .wrapper{
        max-width: 935px;
    }
/* .Page News */

/* Page Case Studies */
    .cases-page{
        padding: 120px 0 80px;
    }
    .cases-page .wrapper{
        max-width: 1214px;
    }
/* .Page Case Studies */

/* Footer */
    footer{
        background: #141414;
        color: white;
        min-height: 135px;
        padding: 20px 0;
    }

    .footer-menu{
        display: inline-block;
        margin-top: 20px;
    }
    .footer-menu ul{
        margin: 0;
        padding: 0;
    }
    .footer-menu li{
        display: inline-block;
    }
    .footer-menu li a{
        color: white;
        font-size: 15px;
        font-weight: 400;
        padding-right: 20px;
    }

    footer .copyright{
        font-size: 13px;
        font-weight: 300;
        margin: 30px 0 0;
    }

    .footer-social{
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }

    .footer-social a{
        width: 20px;
        height: 20px;
        display: inline-block;
        margin: 0 10px;
        text-align: center;
    }
    .footer-social img{
        height: 20px;
    }

    .footer-logo{
        float: right;
    }
/* .Footer */


/* Contact us */

/***********basic************/

/*Form width*/
.wpcf7 {
    text-align: left;
    width: 90%;
}

/*Input Field widths*/
.wpcf7-text, .wpcf7-textarea {
    width: 100%;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
}

.wpcf7-text {

	height: 50px;
    padding-left: 10px;

}
.wpcf7-text:focus, .wpcf7-textarea:focus {
    border-color: #129FEA;
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 2em 0 0em;
}


/*Label Font*/
.wpcf7-form p {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0 0 0;
}

/*Submit button Font*/
.wpcf7-submit {
    width: 300px;
    font-size: 15px !important;
    color: #fff !important;
    background-color: #64c110;
    padding: 20px;
}

/*Submit button Hover*/
.wpcf7-submit:hover {
    background: green !important;
}

/*Response messages - Error & Success*/
.wpcf7-response-output {
    margin-bottom: 30px !important;
}

/***********borders************/

/*Form border*/
.wpcf7-form {
    padding: 20px 25px !important;
    padding-bottom: 0px !important;
}

/*Input Field borders*/
.wpcf7-text:focus, .wpcf7-textarea:focus {
    border-color: #8F8F8F !important;
}


/*Label Text color*/


.wpcf7-form label{
    /*display: none;*/
    color: #64c110;
    font-weight: 500;
}

/*Input Field Text color*/
.wpcf7-text, .wpcf7-textarea {
	color: #777;
}



/* Column Classes
    Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.clear {
    clear:both !important;
}

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}



/*--------------------------------------------------------------
19.0 Media Queries
--------------------------------------------------------------*/

/* Non-Retina Laptops - Large */

@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) { 

    #fold-intro .fixed-image {
        display: block;
        padding: 0;
        width: 64%;
        position: relative;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
    }

    #fold-intro .fixed-image img {
        width: 90%;
    }


}


/* Non-Retina Laptops - Small */

@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) { 

    #fold-intro .fixed-image {
        display: block;
        padding: 0;
        width: 64%;
        position: relative;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
    }

    #fold-intro .fixed-image img {
        width: 90%;
    }


}





  /* iphone 6, 6s, 7, 8 */
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) {

    body.logged-in header, body.logged-out header {
        top: 0px;
        left: 0px;
        padding: 0 15px;
    }

    header {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        height: 80px;
    }

    #fold-intro .fixed-image {
        display: block;
        padding: 0;
        width: 64%;
        margin: 98px auto 10px;
        position: relative;
        top: 90px;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.56);
    }

    #fold-intro .fixed-image img {
        width: 100%;
        height: 100%;
       
    }

    #fold-intro .slide {
        position: relative;
        top: 110px;
        width: 100%;
    }

    #fold-intro .slide-info {
        width: 100%;
        max-width: 100%;
        width: 100%;
        float: none;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    #fold-intro .slide-title {
        font-size: 25px;
        font-weight: 400;
        margin: 0 auto;
    }

    #fold-intro .slide-description {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 300;
        padding: 15px 40px;
    }

    #fold-intro .wrapper .slick-list {
        max-width: 90%;
        float: none;
        margin: 0 auto;
    }

    #fold-intro .slick-prev {
        left: 0;
    }

    #fold-intro .slick-next {
        right: 0;
    }


    .case-preview {
        margin: 20px auto;
        display: block;

    }

    
    #fold-about-us .team-item {
        display: block !important;
        width: 100%;
        margin: 20px 0px;
        position: relative;
        padding: 10px;
    }

    #fold-solutions .cols > div {
        width: 100%;
        padding: 0;

    }

    .col-button {
        padding: 20px 0px 20px 95px;
        margin: 0 10px 25px 10px;
    }

    #fold-solutions .cols .col-right {
        padding: 50px 0 0 0;
    }

    .locations {
        width: 80%;
        max-width: 100%;
        padding: 0px 40px 40px;
    }

    .location {
        text-align: left;
        clear: both;
        display: block;
        padding: 20px 0 20px 0;
        margin: 0 auto;
        max-width: 100%;
    }

    .location:last-of-type {
        padding: 0;
    }

    .location h2 {
    margin: 20px 0 0px;
    }

    .fold-description {
        width: 100%;
        padding: 0 20px;
        max-width: 100%;
    }

    .post-preview {
        margin: 20px 10px 0px 10px;
        width: auto;
    }

    .post-preview .post-title {
        font-size: 15px;
    }

    .page-detail img {
        width: 100%;
        height: 100%;
    }

    .testimonials .slide-quote {
        font-size: 14px;
        line-height: 1.5;
        font-weight: 300 !important;
    }

    .testimonials {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        text-align: center;
        padding: 11px 0;
    }


    .footer-logo {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
        padding: 30px 0 10px 0;
    }

    .footer-social {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
        padding: 0px 0 20px 0;
    }

    .footer-menu {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
    }

    p.copyright {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
    }

    .footer-logo img {
        width: 60px;
        height: 61px;
    }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
    body.logged-in header, body.logged-out header {
        top: 0px;
        left: 0px;
        padding: 0 10px;
    }

    header .logo {
        left: 20px !important;
        position: absolute !important;
    }

    .header-white .logo {
        left: 20px;
        position: absolute;
    }


    #fold-intro .fixed-image {
        display: block;
        padding: 0;
        width: 64%;
        margin: 10px auto 10px;
        position: relative;
        top: 220px;
    }

    #fold-intro .fixed-image img {
            width: 100%;

    }

    #fold-intro .wrapper {
        position: relative;

    }

    #fold-intro .slide {
        position: relative;
        top: 110px;
        width: 100%;
    }

    #fold-intro .slide-info {
        width: 100%;
        max-width: 100%;
        width: 100%;
        float: none;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    #fold-intro .slide-title {
        font-size: 25px;
        font-weight: 400;
        margin: 0 auto;
    }

    #fold-intro .slide-description {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 300;
        padding: 15px 40px;
    }

    #fold-intro .wrapper .slick-list {
        max-width: 90%;
        float: none;
        margin: 0 auto;
    }

    #fold-intro .slick-prev {
        left: 0;
    }

    #fold-intro .slick-next {
        right: 0;
    }

    .main-menu a {
        font-size: 14px;
    }

    .testimonials {
        position:relative;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .45);
    text-align: center;
    padding: 17px 0;
    margin: 100px 0 0;
    }


    #fold-solutions .cols > div {
        border-right: 0;
    }

    .case-preview {
        margin: 20px auto;
        display: inline-block;

    }

    .cases-list {
        text-align: center;
        margin: 20px auto;
    }
    
    #fold-about-us .team-item {
        display: block !important;
        width: 100%;
        margin: 20px 0px;
        position: relative;
        padding: 10px;
    }

    #fold-solutions .cols > div {
        width: 100%;
        padding: 0;

    }

    .col-button {
        padding: 20px 0px 20px 95px;
        margin: 0 10px 25px 10px;
    }

    #fold-solutions .cols .col-right {
        padding: 50px 0 0 0;
    }

    .locations {
        width: 80%;
        max-width: 100%;
        padding: 0px 40px 40px;
    }

    

    .location {
        text-align: left;
        clear: both;
        margin: 0 40px;
        width: auto !important;
        max-width: 100%;
    }



    .location:last-of-type {
        padding: 0;
    }

    .location h2 {
    margin: 20px 0 0px;
    }

    .fold-description {
        width: 100%;
        padding: 0 20px;
        max-width: 100%;
    }

    .post-preview {
        margin: 20px 10px 0px 10px;
        width: auto;
    }

    .post-preview .post-title {
        font-size: 15px;
    }

    .page-detail img {
        width: 100%;
        height: 100%;
    }

    

    .footer-logo {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
        padding: 30px 0 10px 0;
    }

    .footer-social {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
        padding: 0px 0 20px 0;
    }

    .footer-menu {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
    }

    p.copyright {
        display: block;
        margin-top: 20px;
        clear: both;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
        position: relative;
    }

    .footer-logo img {
        width: 60px;
        height: 61px;
    }
    
  }