﻿/*
 * Row with equal height columns
 * --------------------------------------------------
 */
 .row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    margin-top:20px;
  }
  
  
html {
    /* overflow: hidden; */
}
body {
    /* overflow:auto;
    overflow-x: hidden;  */
}
@font-face {
    font-family: 'robotoregular';
    src:url('../fonts/roboto-regular-webfont.eot');
    src:url('../fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
        url('../fonts/roboto-regular-webfont.woff') format('woff'),
        url('../fonts/roboto-regular-webfont.ttf') format('truetype'),
        url('../fonts/roboto-regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotocondensed';
    src:url('../fonts/RobotoCondensed-Regular-webfont.eot');
    src:url('../fonts/RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
        /*url('../fonts/RobotoCondensed-Regular-webfont.woff2') format('woff2'),*/
        /*url('../fonts/RobotoCondensed-Regular-webfont.woff') format('woff'),*/
        /*url('../fonts/RobotoCondensed-Regular-webfont.ttf') format('truetype'),*/
        url('../fonts/RobotoCondensed-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'oswaldregular';    
    src:url('../fonts/oswald-regular.ttf') format('truetype');
    src:url('../fonts/oswald-regular-webfont.eot');
    src:url('../fonts/oswald-regular-webfontt?#iefix') format('embedded-opentype'),
        url('../fonts/oswald-regular-webfont.woff2') format('woff2'),
        url('../fonts/oswald-regular-webfont.woff') format('woff'),
        url('../fonts/oswald-regular-webfont.ttf') format('truetype'),
        url('../fonts/oswald-regular-webfont.svg#oswald-regular-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'opensansregular';
    src:url('../fonts/OpenSans-Regular-webfont.eot');
    src:url('../fonts/OpenSans-Regular-webfont?#iefix') format('embedded-opentype'),        
        url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
        url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
        url('../fonts/OpenSans-Regular-webfont.svg#OpenSans-Regular-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size:15px/1.8;
    color: #333;
    background: #fff;    
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
*:focus {
    outline: none;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    font-size: 44px;
    text-transform: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
.fs {
    position: relative;
    opacity: 0.9;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
	
	-webkit-background-size: 100%; 
    -moz-background-size: 100%; 
    -o-background-size: 100%; 
    background-size: 100%; 
	
	-webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover;
}
.opacity-full{
    opacity: 1; 
}
.opacity-onethird{
    opacity: 0.4; 
}
.particles-js-canvas-el {
    position: absolute;
    top:0;
}
.parallax-window {
    min-height: 100%;    
    background: transparent; 
    z-index: auto;
}

/* Fading animation */
.slideContainer {  
  display:none;
}

.slideContainer.first {  
  display:block;
}

#captions-container {
  background:#000;  
}

.caption{ 
	display:none;
	opacity:.5;
	background:#ccc;
	height:100vh;
}
.caption.first{
	display:block; 	
}

.caption img {
	height:auto;
	width:100%;
	display:block;
	width:100%;
	height:100%;
	object-fit: cover;
	min-width:100%; 
	min-height:100%;
	top:0;
	left:0;
}

.fade-in {
  animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s;
}


@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.fade-out {
  animation: fadeOut ease 5s;
  -webkit-animation: fadeOut ease 5s;
  -moz-animation: fadeOut ease 5s;
  -o-animation: fadeOut ease 5s;
  -ms-animation: fadeOut ease 5s;
}


@keyframes fadeOut{
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 5s;
  animation-name: fade;
  animation-duration: 5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


.zoomEffect {
    -webkit-animation: zoomin 30s ease-in infinite;
  animation: zoomin 30s ease-in infinite;
  transition: all .5s ease-in-out;
  overflow:hidden;
}
.parallax-window-half {
    min-height: 50%;    
    background: transparent;
    background: linear-gradient(to top, rgba(0,255,0,0), rgba(0,255,0,0.5)); 
    z-index: auto;  
}
.half-height {
    min-height: 50%;
    height:50vh;
}
.parallax-mirror {
    z-index: 0!important;
}

.px1 {
    /*background-image: url("../img/img1.jpg");*/
    background-color:#829c31;
    min-height:100%;
}
.px-1 {    
    min-height:100%; 
    height:600px;
}
.px2 {
    background-image: url("../img/img2.jpg");
    min-height: 100%;
}
.px3 {
    background-image: url("../img/img3.jpg");
    background-repeat: none;
    min-height: 100vh;
    /*height:100vh;*/
    background-position: center;
    background-size: cover;
}
.px3 h1 {
    /*position: absolute;
    top:15px;   
    left:50%;
    transform: translateX(-50%);*/ 
    padding-top:15px;
    width: 100%;
    color:#fff;    
    text-align: center;
}
.px4 {    
    background:url("../img/img4.jpg");    
    min-height: 100vh;
    height:100%;
    /*height:100vh;*/
    background-position: center;
    background-size: cover;
}
.formWrapper {
    padding:10px;
    background:rgba(26,66,47,0.5);    
}
.formWrapper h1 {    
    width: 100%;
    color:#fff;    
    text-align: center;
}
.reqDemoWrapper {
    padding:10px;
    background:rgba(192,192,192, 0.5);
}
.reqDemoWrapperNoBgClr {    
    background:rgba(192,192,192, 0)!important;
}
.formBackgroundColor {
    /*background:rgba(0, 53, 28, 0.5);*/
}
.reqDemoWrapper h1 {    
    width: 100%;
    /*color:#fff;    */
    text-align: left;
    text-shadow: 1px 0px 0px #000;
}
.reqDemoWrapper p {
    /*color:#fff;*/
    font-size:18px;
    line-height:26px;
}
.reqDemoWrapper ul {
    list-style: none;
    margin:0;
    padding:0;
}
.reqDemoWrapper ul li {
    /*color:#fff;*/
    font-size:18px;
} 
.reqDemoWrapper ul li:before {
    content: '✓';
    /*color:#fff;*/
    font-size:24px;
    margin-right: 10px;
}

.testMonialsWrapper {
    /*background:rgba(255,255,255,.8);*/
}
.testMonialsWrapper h1 {    
    width: 100%;
    color:#000;    
    text-align: center;
}
div.wpcf7-validation-errors {
    color:#0a681c;
    border:2px solid #0a681c;
}
.span.wpcf7-not-valid-tip {
    color:#f7e700;
}
.wpcf7-submit {
    background:#f7e700;
    color:#000!important;
}
.px6 {
    background-image: url("../img/img6.jpg");
    min-height: 100%;
    background-position: center;
    background-size: cover;
}
.header {
    background: transparent;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 999;
    transition: all 2s linear ease-in-out;
}
.bg {
    width: 100%;
    height:100vh;
    opacity: .7;
    background:url('../img/slide-bg.png');
}
section {   
    /* box-shadow: 1px 3px 5px #000; */
    padding-bottom: 20px;
}
.padding15 {    
    padding:15px;
}
.padding30 {    
    padding-top: 80px;
    margin-top: -50px;
}
.padding80 {
    padding-top:80px!important;
}
.no-boxShadow {
    box-shadow: none!important;
}
.paragraphText {
    font-size: 16px;
    line-height: 24px;
}
.styleText {
    color:#2834ad;
    font-style: italic;
}
.col-md-6 img {
    width:100%;
    height:auto;
    /* margin-top:20px; */
}
.posAbs {
    position: absolute;
}
.posRel {
    position: relative;
}
.posFixed {
    position: fixed;    
}
.shwBg {
    background: rgba(255,255,255,0.9);
}
.noBgOnClick {
    background: rgba(255,255,255,0);
}
.parallax-window {
    min-height: 100%;
    height:100vh;
    background: transparent;   
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}
.parallax-window-half {
    min-height: 50%;
    height:50vh;
    background: transparent;  
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}
.parallax-window-small {
    min-height: 35%;
    height:35vh;
    background: transparent;   
   background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}
.videoContainer {
    min-height: 100%;
    height:100vh;
    background: transparent;   
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
	overflow:hidden;
}

.videoContainer img{
	width:100%;
	height:100%;
}
.imageContainer {
    min-height: 100%;
    height:100vh;
    background: transparent;   
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
	overflow:hidden;
}


.imageContainer img{
	width:100%;
	height:100;	
}

.overlayContainer {
    min-height: 100%;
    height:100vh;
    background: rgba(40,100,0,0.8);
	position:absolute;
}



video, iframe, .introVdo {
    position: absolute;
    top:0;
    left:0;

    /*min-height: 100%;    
    background: transparent; 
    z-index: auto;
    width: auto;*/
}
.introVdo {
	min-height: 100%;
    height:100vh;	
	border:none!important;
	width:100%;
}
video, iframe, .introVdo {
    object-fit: fill;
  }
.videoOverlay {    
    height:100%;
    width:100%;
    position:absolute;
    top:0;
    left:0;
    background: -moz-linear-gradient(to bottom right, rgba(30, 180, 240, .7), rgba(40,100,0,.5));
    background: -webkit-linear-gradient(to bottom right, rgba(30,180,240,.7), rgba(40,100,0,.5));
    background: linear-gradient(to bottom right, rgba(30,180,240,.7), rgba(40,100,0,.5));
	/*background: rgba(30,180,240,.9);*/
	background: linear-gradient(to top, rgba(40,100,0,.1), rgba(40,100,0,.9));
}
.captionCon { 
    position: absolute;
    z-index: 99;   
    height: 95%;    
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.captionCon-half {     
    height: auto;
    width: 50%;
    padding-top: 140px;
}
.captionCon-half h1 {
    font-size: 36px;
}
.captionCon h1 {
    height: auto;    
    padding: 15px 30px;
    /*background:rgba(15,15,15,0.8);*/
    font-size: 50px;
    text-transform: uppercase;
    color:#fff;
    text-shadow: 1px 0px 0px #000;
}
.templatCaptionCon { 
    position: absolute;
    z-index: 99;   
    height: 100%;    
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.templatCaptionCon-half { 
    height: 25%; 
    width: 70%;  
}
.templatCaptionCon-half h1 {
    font-size: 36px;
}
.templatCaptionCon h1 {
    height: auto;    
    padding: 15px;
    /*background:rgba(15,15,15,0.8);*/
    /*font-size: 54px;*/
    text-transform: uppercase;
    color:#fff;
    text-shadow: 1px 3px 5px #000;
    margin-top:150px;
}
.fa {
    font-size:24px;
}
.fa-home {
    font-size:28px;
}
.logo {
    height: 2rem;
    left: 2rem;
    position: fixed;
    top: 1.5rem;
    width: 20rem;
    z-index: 2;   
}
.logo h1 {
    margin:0;
    padding:0;
    color:#fff;  
    font-size:40px;  
	text-shadow:1px 1px 1px #000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.logo.active h1 {
    color:#fff;
}
.fr {
	float:right;
}
.logoTagline {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.logoTagline p {
	color:#fff;
	padding:10px 0;
}
.logoSVG {
    width:188px;
    height:56px;
    background: url(../img/sts-logo.svg) no-repeat;
}
.logoSVG.active {
    background: url(../img/sts-logo-active.svg) no-repeat;
}
.shwBg .logo h1 {
	color:#000;
	text-shadow:none;
}
.demoBtn {
    background:#a4d219;
    font-weight:bold;
    font-size:16px;
    color:#333;
    text-transform: uppercase;
    position: relative;
    padding-right:30px; 
    margin: 10px 0;
}
.demoBtn .fa {     
    top:4px;
    right:10px;
    position: absolute;  
}
.shwBg .nav-toggle .nav-toggle-bar,
.shwBg .nav-toggle .nav-toggle-bar::after,
.shwBg .nav-toggle .nav-toggle-bar::before {
	background: #000;
	box-shadow:none;
}
.row {
    /*margin: -20px 0;*/
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.row .col {
    padding: 0 20px;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.row .col.x-50 {
    width: 50%;
}
.row .col.x-100 {
    width: 100%;
}
.content-wrapper {
    min-height: 100%;
    position: relative;
}
.contactForm {
    max-width: 650px;
    margin: 20px auto;
    display: none;
    width:600px;
    padding: 2em 2em 3.5em;
    position: absolute;
    background: #fff;
    top:-54%;
    left:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 999999;
}

.title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    /*text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 36px;
    line-height: 18px;*/
    padding-bottom: 24px;
    margin-top:0;
    color:#000; 
    /*position: sticky;
    z-index: 999999;  */
    margin:15px 0 0;
}  
.titleActive {
    /*position: static;*/
}
.title-left {
    text-align: left;
}
.title-right {
    text-align: right;
}
.text-center {
    text-align:center;
}
.contactForm .title {
    padding-bottom: 45px;
    position: static;
}
.contact-form .form-field {
    position: relative;
    margin: 25px 0;
}
.contact-form .input-text {
    display: block;
    width: 100%;
   /* height: 36px;*/
    border-width: 0 0 2px 0;
    border-color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
.contact-form .input-text:focus {
    outline: none;
}
.contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    font-size:14px;            
}
.contact-form .label {
    position: absolute;
    /*left: 20px;*/
    padding-left:0;
    bottom: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #333;
    cursor: text;
    -webkit-transition: -webkit-all .2s ease-in-out;
    transition: -webkit-all .2s ease-in-out;
    transition: all .2s ease-in-out;
    transition: all .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
.contact-form .submit-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}  
.note {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 21px;
}
.note .link {
    color: #333;
    text-decoration: none;
}
.note .link:hover {
    text-decoration: underline;
}
#mail {
    cursor: pointer;
}
.socialLinks {
    padding:0;
    margin:30px;
    
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.socilaLinkItem {
    width:50px;
    height:50px;
    color:#000;
    text-align: center;      
}
.socilaLinkItem .fa {
    font-size:28px;
}
.socialLinks div a{    
    color:#000;          
}
#contact {
    position: relative;
}
.contact .close {
    color:#000;
}
.scrollIcon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    z-index: 99;
    cursor: pointer;
}
.scrollIcon img {
    width:100%;
    height:auto;
}
.navbar,
.navbar-toggle,
.navbar-brand,
.navbar-nav,
.navbar-toggle::after,
.navbar-toggle::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar {  
    background: rgba(0,0,0,0);
	background:transparent;
    border:none;
    padding: 30px 0;
}
.navbar.active {    
    background: rgba(255,255,255,1);
    border:none;
    padding: 5px 0;
    box-shadow: 0px 10px 39px -22px rgba(0,0,0,0.5);
}
.navbar.active .nav {
    margin-top:15px;
}
.navbar-toggle {
    border:none;
}
.navbar.active .navbar-toggle {
    margin-top:25px;
}
.navbar-nav>li>a {    
    font-family: 'Roboto Condensed', sans-serif;    
    font-size:16px;    
    letter-spacing: 0px;    
    text-transform: uppercase;    
}
.active .navbar-nav>li>a { 
    /*text-shadow: 2px 2px 2px #fff;*/
    color: rgba(0, 0, 0, 0.32);
}
.navbar-brand {
    height:auto;
    padding:0px 15px;
}
.navbar.active .navbar-brand {
    padding:15px 15px;
}
.navbar-brand img {
    width:80%;
    height:auto;
}
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: inherit;
}
.navbar-inverse .navbar-nav>li>a {
    color:#fff;
}
.navbar-inverse.active .navbar-nav>li>a {
    color:#000;
}
.navbar-inverse.active .navbar-nav>li.active>a {
    color:#000;
}
.navbar-inverse .navbar-nav>.active>a, 
.navbar-inverse .navbar-nav>.active>a:focus, 
.navbar-inverse .navbar-nav>.active>a:hover {    
    color:#fff;
    background: rgba(0,0,0,0.2);
}
.navbar-inverse .navbar-toggle:focus, 
.navbar-inverse .navbar-toggle:hover {
    background: none;  
}
.navbar-inverse .navbar-collapse, 
.navbar-inverse .navbar-form {
    border:none;
    -webkit-box-shadow:none;
    box-shadow: none;
}
.active .navbar-toggle .icon-bar {
    background:#000;
}
.dropdown-menu>li>a {
    padding:10px 15px;
    font-size:16px;
    color:#000;
}
.dropdown-menu>li>a:hover {
    color:#000;
}
.feature-wrapper {
    width:99%;
    height:100%;
    display: flex;    
    flex-wrap:wrap;
    margin:10px auto 0;
}
.feature {    
    /*border:solid 1px rgba(0,0,0,0.1);*/
    margin:0 10px 10px 0;
    width: calc(33% - 10px);
    /* background: #ccc; */
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    user-select: none;
    -moz-user-select: -moz-none;
    padding: 5px;
}
.single-feature { 
    flex-grow:0;    
    width: calc(33%);
}
.feature:nth-child(3n), 
.feature:last-child {
    margin-right:0;
}
.feature-icon-sprite {
    background: url('../img/icon-sprite.png') no-repeat;
}
.feature-icon {
    flex: 0 0 100px;
    height:113px;        
}
.feature-content {
    padding-left:10px;
}
.feature-title {
   font-family: 'Roboto Condensed', sans-serif;
   font-size:17px;
   font-weight:bold;
   letter-spacing: 0px;
   padding: 10px 0 0;
}
.feature-description {
    font-family:'robotocondensed', sans-serif;
    font-size:14px;
    padding-right: 5px;
}

.innoSolWrapper { 
    display: flex;
    flex-wrap: wrap;
}
.innoSolContent {    
    width: calc(25%);
    padding:15px 5px;    
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.innoSolContent .innoSolContentBx {
    width:98%;
    margin:1%;
    /*border:solid 1px #fff;*/
    padding:1%;
}
.innoSolContent span {
    color:#fff;
    font-family: "robotocondensed", sans-serif;
    font-size:14px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    padding:10px;
}
.innoSolIcon {
    width:102px;
    height:104px;
    margin:0 auto;
}
.innoSolContent .innoSolContentBx {    
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.32);     
}
.innoSolContent .innoSolContentBx:hover {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.32);
    transition: all .1s ease-in-out;
    transform: scale(.95);
}

.farmer-enrollment {
    background-position:0px 0px;
}
.farm-enrollment {
    background-position:-100px 0px;
}
.geo-plotting {
    background-position:-200px 0px;
}
.sowing {
    background-position:-300px 0px;
}
.inputs-distribution {
    background-position:-400px 0px;
}
.crop-calendar {
    background-position:-500px 0px;
}
.advisory-services {
    background-position:-600px 0px;
}
.farm-inspection {
    background-position:-700px 0px;
}
.crop-harvest {
    background-position:0px -100px;
}
.cost-of-cultivation {
    background-position:-100px -100px;
}
.procurement {
    background-position:-200px -100px;
}
.product-transfer {
    background-position:-300px -100px;
}
.field-staff-management {
    background-position:-400px -100px;
}
.dashboards-reports {
    background-position:-500px -100px;
}
.warehouse-management {
    background-position:-600px -100px;
}
.farmer-account {
    background-position:-700px -100px;
}
.innosol-container {
    position: relative;
    width: 100%;
}
.innosol {
    background-image: url("../img/innovative-solution-icon-sprite.png");
    /* animation: float 3s linear infinite;   */
}
.innosol-icn {
    width:102px;
    height:104px;
    position: absolute;  
    
}
/* @keyframes float {
  0%   {transform: translateY(0)}
  25%  {transform: translateY(-5px)}
  75%  {transform: translateY(5px)}
  100% {transform: translateY(0)}
} */
.remoteSensing {    
    background-position: 0px 0px;
    /*bottom:16%;
    right:16%;*/
}
.advisoryServices {
    background-position: -102px 0px;
    /*bottom:61%;
    right:15%;*/
}
.farmManagement {
    background-position: -204px 0px;
    /*bottom:21%;
    left:17%;*/
}
.traceabilty {
    background-position: -306px 0px;
    /*bottom:20%;
    left:24%;*/
}
.esupplychain {
    background-position: -408px 0px;
    /*top:23%;
    left:32%;*/
}
.marketlinkage {
    background-position: -510px 0px;
    /*bottom:32%;
    right:10%;*/
}
.certification {
    background-position: -612px 0px;
    /*bottom:56%;
    right:35%;*/
}
.mande {
    background-position: -714px 0px;
    /*top:36%;
    left:10%;*/
}
.sidebar {
    position:absolute; right:0;
}
.dot {
    display:inline-block; 
    width:10px; 
    height:10px; 
    background-color:rgba(0,0,0,.3); 
    border-radius:10px; z-index:999; 
    content:''; 
    color:transparent; 
    font-size:14px; 
    line-height:10px; 
    vertical-align:middle; 
    margin:5px 0 5px 0; 
    font-weight:300;
}
.dot:hover {
    background-color:rgba(0,0,0,.8); 
    color:rgba(0,0,0,.8);
}
.dot span {
    margin:0px 0px 20px 15px; 
    position:relative; 
    top:0px; 
    left:-80px;
}
.dotNav {
    width:100px; 
    height:200px;
    /*background-color:rgb(240,240,240); 
    border:solid 1px rgb(220,220,220);*/ 
    padding:0 0px; 
    position:fixed; 
    top:50%; 
    right:0px; 
    transform: 
    translate(0, -50%); 
    z-index: 10000; 
    text-align:right;
}
.dotNav ul li a {
    text-decoration:none;
}
.dotNav ul {
    list-style-type:none;
     margin:0; padding:0;
}
.name-active {
    color:rgba(255,255,255,.8); 
    background-color:#FFD95F; 
    text-align:right;
}
.dots {
    position: absolute;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: default;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}
.dots .activeNav a {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}
.dots .activeNav a:after {
    height: 100%;
}
.dots li {
    position: relative;
    display: block;
    /*float: left;*/
    margin: 10px 16px;
    width: 7px;
    height: 7px;
    cursor: pointer;
}
.dots li a {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    text-indent: -999em;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    background-color: rgba(0,0,0,.6);
    /*box-shadow: inset 0 0 0 2px white;*/
    /*border:solid 1px #fff;*/
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.dots li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,.6);
    /* box-shadow: 0 0 1px #fff; */
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}
.unimodtxt {
    width: 100%;
    color:#fff;
    font-family: "robotocondensed", sans-serif;
    font-size:14px;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    bottom: -25px;
    left:50%;
    transform: translateX(-50%);
}
.unimodtxt2line { 
    bottom: -50px;
}
.testimonialsListWrapper {
    background:#fee6c6;
}
.clrOrange {
    color:#f8621a;
}
.clrViolet {
    color:#601cf4;
}
.slick-prev::before, .slick-next::before {
    color:#111;
}

.menu-wrapper {
    width:100%;
    height:100%;
    display: flex;    
    flex-wrap:wrap;
    margin:0px; 
}
.menu {
    display: inline-block;
    border:solid 1px #ccc;
    margin:0 10px 10px 0;    
    flex-grow: 1;      
    width: calc(33% - 10px);
}
.menu:nth-child(3n) {
    margin-right:0;
}
.contenPostWrapper {
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    -moz-column-rule: none;
    -webkit-column-count: 2;
    -webkit-column-gap: 10px;
    -webkit-column-rule: none;
  column-count: 2;
  column-gap: 10px;
  column-rule: none;
}

.blogList, .mediaList {
    padding:10px 0;
    width:100%;
    display: flex;    
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}
.proj {        
    margin-bottom:10px;
    /* margin-right:1%; */
    padding:10px;
    /*flex: 1 1 32.33%;*/
    flex-grow: 0; 
    align-items: flex-end;
    height:auto;
}
.projColumn {
    
}
.projColumn:nth-child(2n+1) {
    
}
.proj:nth-child(3n+0) {
    /*margin-right:0;
    flex: 1 1 31.33%;*/
}
.proj, .projColumn {
    /*box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.32);*/
    transition: all .1s ease-in-out;
}
.proj:hover, .projColumn:hover {    
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.52); 
    transform: scale(1.01);
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:focus, 
.navbar-default .navbar-nav > li > a:hover {
	/*color:#fff;*/
	background:none!important;
    color:#209020!important;
}
.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a:focus, 
.navbar-default .navbar-nav > li.active > a:hover {
    /*background:rgba(0,129,64,0.2);
    color:#fff;*/	
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus, 
.navbar-inverse .navbar-nav > .open > a:hover {
    /*background-color:rgba(3, 21, 44, 0.5)!important;
    color:#fff;*/
	background:none!important;
    color:#209020!important;
}
.active .navbar-nav > li > a,
.active .navbar-nav > li > a:focus, 
.active .navbar-nav > li > a:hover {
	color:#333;
}
.active .navbar-nav > li.active > a,
.active .navbar-nav > li.active > a:focus, 
.active .navbar-nav > li.active > a:hover {
	background:none!important;
    color:#209020!important;
	/*background:rgba(0,129,64,.5);
    color:#fff;*/
}
.current-page-ancestor a, .current-menu-ancestor a { 
    /*background:rgba(0,129,64,.5);
    color:#fff;*/
}
.navbar-default .navbar-toggle:focus, 
.navbar-default .navbar-toggle:hover {
    background-color:transparent;
} 
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    /*color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0;*/
	background:none!important;
    color:#209020!important;
}
.feature {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.32);
    transition: all .1s ease-in-out;
}
.feature:hover {
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.32); 
    transform: scale(1.01);
}

.innosol-icn {
    border-radius: 50%;    
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.32);     
}
.innosol-icn:hover {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.32);
    transition: all .1s ease-in-out;
    transform: scale(.95);
}

.worldMap {
    width:100%;
    height:100vh;
    position: relative;    
}
.worldMapOverlay {
    background: rgba(254,230,198,.1);
    position: absolute;    
    width:100%;
    height: 100vh;
    left:0;
    top:0;
    z-index: 999999;
}
.leaflet-popup-close-button {
    /*display:none;*/
}
.leaflet-control-container {
    display: none;
}
/*.leaflet-popup-content {
    line-height: 0;
    margin-left: 48px;
    margin-bottom: -2px;
}
.leaflet-popup-content img {
    width:50%;
    height:auto;
    border:solid 1px #333;
}*/
.leaflet-popup {
    
}
.leaflet-popup-close-button {
    display: none;
}
/*
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: transparent;
    box-shadow: none;
}*/
.maptitle {
    z-index: 999 !important;
    position: absolute;
    text-align: center;
    width: 100%;
}
.wpcf7-textarea {
    height:70px;
}
.dropdown-menu {
    padding:0!important;
    border-radius: 0;
}
.awardImgContainer {
    width:100%;
    text-align:center;
    height:300px;
    margin-top:3%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.awardImgContainer img {
    width:auto;
    height:250px;
}
.verticalAwrds {
    display: none;
}
.horizontalAwrds {
    display: block;
}
.iframeCls {
    width:50%;
    height:50%;
    border:solid 10px #fff;
    position:absolute;
    left:50%;
    top:60%;
    transform:translate(-50%,-50%);
}
@media only screen and (max-width:860px) {
    .iframeCls {
        width:80%;
        height:80%;
    }
}
.newsletter-signup {
    display: flex;
}
.nslInput {
    width:75%;
}
.nslButton {
    width:25%;
}
@media only screen and (max-width:340px) {
    .newsletter-signup {
        display: block;
    }
}
.footerContainer {
    background:#121f15;
    overflow:hidden;
    padding:20px 20px 80px 20px;
}
span.wpcf7-not-valid-tip {
    color:#0a681c!important;
}
div.wpcf7-response-output {
    margin:1em 0.5em 1em!important;
} 
.page-wrapper-background {
    background:#fff;
}
.fusion-footer-parallax{
    z-index:-1;
    position:fixed;
    bottom:0;
    left:0;
    right:0
}
.fusion-footer-parallax .fusion-footer-widget-area{
    -webkit-backface-visibility:visible;
    backface-visibility:visible
}
#cloud1 {
    width:913px;
    height:100vh;
    position: absolute;
    bottom:0px;
    left:0px;
    background:url('../img/mist1.png') no-repeat;    
}
#cloud2 {
    width:638px;
    height:100vh;
    position: absolute;
    bottom:0px;
    right:0px;
    background:url('../img/mist2.png') no-repeat;
}
/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
  }
  @keyframes zoomin {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
  } /*End of Zoom in Keyframes */

.dropdown-submenu>.dropdown-menu {    
    left: 100%;
    margin-top: -40px;
    margin-left: -1px;    
}
p {
    font-size: 16px;
    line-height: 24px;
}
.gridBx {
    /*background:#ccc;    */
    position: relative;    
    padding-left:0;
    padding-right:0;
    overflow:hidden;
    text-align: center;
}
.gridBx img {
    width:90%;
    height:auto;
    padding: 0 -15px;
    margin:0 auto;
}
.listViewClassTitle {
    text-align:right;
}
.listViewClass {        
    padding-bottom:15px 15px 20px 15px;
    direction:rtl;
}
.listViewClass li {    
    font-size: 16px;
    line-height: 36px;
}
.listViewClassLft {        
    padding-bottom:15px 15px 20px 15px;
    direction:ltr;
}
.listViewClassLft li {    
    font-size: 16px;
    line-height: 36px;
}
.tabs-left {
   margin:15px 0;
}
.tab-content {
    padding: 15px;
}
.lightBlueBg{
    background:#94bdf3;
}
.investorsRw {
    text-align:center;
    padding:10px;
}
.investorsRw img {
    width:80%;
    height:auto;
    margin:0 auto;
}
.investorsRw .title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px!important;
    margin-top:10px;
    color:#000;
}  

.mediaContainer {
    /*display: flex;
    flex-wrap: wrap;
    padding: 25px 5px;*/
    columns:4;
    column-gap: .75em;
    padding: 1em;
}
.media-item {
    /*flex: 25%;
    max-width: 25%;
    padding: 0 5px;*/
    margin-bottom:.75em;
	/* No cross browser 'break-inside' property being supported yet: */
	display:inline-block;
}
.customersWrapper .-item {
    border:solid 1px #ccc;margin:5px;
}

.ftsList {
    /*width:600px;
    float:right;
    margin-top:20px;*/
    margin:0;
    padding:0;
  }
  .ftsList li {
    font-size:20px;
    margin: 5px;
    text-align: left;
  }
  .ftsSubList {
    margin-top:20px;
  }
  .ftsList li, .ftsSubList li {
    list-style-type: none;
    font-size:20px;
  }
  .ftsList li::before, .ftsSubList li::before {
    content: '■ ';
    color: #00bc87;
  }
  .qr-images {
    margin: 50px 0;
  }
  .about-content {
    padding:60px 0;
  }
  .padding10 {
    padding:10px 0;
  }
  .ftsList {
    /*width:600px;
    float:right;
    margin-top:20px;*/
    margin:0;
    padding:0;
  }
  .ftsList li {
    font-size:20px;
    margin: 5px;
  }
  .ftsSubList {
    margin-top:20px;
  }
  .ftsList li, .ftsSubList li {
    list-style-type: none;
    padding-left:15px;
    position: relative;
  }
  .ftsList li::before, .ftsSubList li::before {
    content: '■ ';
    color: #00bc87;    
    position: absolute;
    left: -5px;
    top: -3px;
  }
  .qr-images {
    margin: 50px 0;
  }
  .about-content {
    padding:60px 0;
  }
  .padding10 {
    padding:10px 0;
  }
  .footer {
      padding:30px 20px 25px;
      font-family:"robotoregular", Arial, Helvetica, sans-serif!important;
  }
  .footer{
      text-align:center;
      color:#000;
    background:rgba(255,255,255,0.5);
  }
  .socialLinks {
  
  }
  .socialLinks li{
      text-align:center;
      list-style-type:none;
      margin:0 5px 10px;
      color:#000;
      font-size:14px;
      /*border-right: solid 1px #fff;*/
  }
  .socialLinks li a{
      text-decoration:none;
      color:#000;
  }
  .socialLinks p{
      color:#000;
  }
  .footerTxt {
      color:#000;
  }
  .footerTxt a{
      color:#0d503d;
      text-decoration:none;
    font-weight:bold;
  }
  .socialLink{
      width:52px;
    height:52px;
  }
  .logo {
    margin-bottom:40px;
  }
  .btn {
      text-transform: uppercase;
  }
  .form-button {
    background-color:#00bc87;
    color:#fff!important;
  }
  .form-button:hover {
    background-color:#0d503d;
    color:#fff!important;
  }
  
  
  /* Zoom in Keyframes */
  @-webkit-keyframes zoomin {
    0% {transform: scale(1);}
    50% {transform: scale(1.3);}
    100% {transform: scale(1);}
  }
  @keyframes zoomin {
    0% {transform: scale(1);}
    50% {transform: scale(1.3);}
    100% {transform: scale(1);}
  } /*End of Zoom in Keyframes */
  
  /* Zoom out Keyframes */
  @-webkit-keyframes zoomout {
    0% {transform: scale(1);}
    50% {transform: scale(0.83);}
    100% {transform: scale(1);}
  }
  @keyframes zoomout {
    0% {transform: scale(1);}
    50% {transform: scale(0.83);}
    100% {transform: scale(1);}
  }/*End of Zoom out Keyframes */
  .fs { 	
      background-attachment: fixed;	
      background-position: center;	
      background-repeat: no-repeat;	
      background-size: cover; 		
      -webkit-background-size: 100%; 	
      -moz-background-size: 100%; 	
      -o-background-size: 100%; 	
      background-size: 100%;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
  }
  .px1 {	
      background-image: url("../img/webinar-img.jpg") ;	
      min-height:100%;
  }
  .bg {
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a90329+0,8f0222+44,6d0019+100;Brown+Red+3D */
      background-color: #a90329; /* Old browsers */
      background-color: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* FF3.6-15 */
      background-color: -webkit-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* Chrome10-25,Safari5.1-6 */
      background-color: linear-gradient(to bottom, #a90329 0%,#8f0222 44%,#6d0019 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 ); /* IE6-9 */
  }
  iframe {
      border:solid 5px #fff;
  }
  
  .flex-container {
    width:100%;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;  
  }
  .box {
    padding:10px;  
    text-align:center;
    display:block;
  }
  .box a {
      padding:20px;
  }
  .bold{
    font-weight:bold;
  }
  ul.list-none li {
    list-style: none!important;
    padding-left:5px;
  }
  ul.list-none li::before, ul.list-none li::before {
    content: ' ';  
  }
  .info {
    width:5px;
    height:5px;
    padding:2px 8px;
    margin:2px 10px 2px 0px;
    background: #000;
    color: #fff;
    border-radius:50%;
  }
  .type {
    padding:10px; 
    padding-left:350px; 
    font-size:20px;
  }
  .type1 {
    background:#86bf00;
  }
  .type2 {
    background:#0090fa;
  }
  .type3 {
    background:#39c6a6;
  }
  .type4 {
    background:#2834ad;
  }
  .clrWhite {
    color:#fff!important;
  }
  .pos-releative {
    position: relative;
  }
  .typesImg {
    position: absolute;
    bottom: 40px;
    left:-80px;
    width:40%;
    height:auto;
  }
  .section-3-2 {
    padding-top:0;
  }
  @media(max-width:767px){
  
  }
  @media(max-width:768px){
    .section {
      padding-top:10px;
    }
  }
  @media(max-width:992px){
    .type {
      padding:10p; 
      padding-left:10px!important; 
      font-size:20px;
    }
    .typesImg {
      display:none;
    }
  }
  @media(max-width:1200px){
    .type {
      padding:10px 5px; 
      padding-left:250px; 
      font-size:20px;
    }
    .typesImg {
      position: absolute;
      bottom: 100px;
      left:-100px;
      width:40%;
      height:auto;
    }
  }

.moduleContainer {   
    /*background: #ccc;*/
    margin-bottom: 25px;
    position: relative;
    min-height:600px;
}
.moduleContainer {   
    height:600px;
}
.moduleContainer svg {
    width:auto;
    height:100%;
    /*position: absolute;
    left:50%;
    transform: translateX(-50%);*/
}
.module {
    cursor: pointer;
    fill:#000;
}
.module:hover {
    fill:#2834ad;
}

.btn.agro-btn-yellow:hover, 
.agro-btn-yellow.btn-large:hover {
    box-shadow: none;
    background-color: #FFC805;
}
.btn.agro-btn-transparent, .agro-btn-transparent.btn-large {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid #fff;
}
.btn, .btn-large, .btn-floating, .btn-large, .btn-flat {
    font-size: 2rem;
    outline: 0;
}
.btn, .btn-large {
    text-decoration: none;
    color: #000;
    background-color: #bdde3c;
    text-align: center;
    letter-spacing: .5px;
    transition: .2s ease-out;
    cursor: pointer;
}
.btn, .btn-large {
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}
.btn, .btn-large, .btn-floating, .btn-large, .btn-flat {
    font-size: 2rem;
}
.btn, .btn-large, .btn-flat {
    line-height: 55px;
    text-transform: uppercase;
}
.btn::before, .btn-large::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 90px;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    opacity: 0.1;
    transition: all 0.5s ease-in-out;
}
.btn, .btn-large, .btn-flat {
    border: none;
    border-radius: 2px;
    display: inline-block;
    height: 55px;
    line-height: 55px;
    padding: 0 2rem;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}
/*.menuSec .menu-item-257 a, .menuSec .menu-item-257:active a, .menuSec .menu-item-257:hover a  {	
	background:#d2ff01!important;
	color:#333!important;
}
.menuSec.active .menu-item-257 a, .menuSec.active .menu-item-257:active a, .menuSec.active .menu-item-257:hover a {	
background:#d2ff01!important;	
color:#333!important;
}*/

.nocomments {
	display:none;
}
.nav-tabs > li > a, 
.nav-tabs > li > a:focus, 
.nav-tabs > li > a:hover {
	
}
.tab-content .title {
	padding-bottom:15px!important;
}

.tabpaneContainer .nav-tabs > li.active > a, 
.nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    background: #209020;
    color: #fff;
    font-weight: bold;
}

.tabpaneContainer .nav-tabs > li > a{
	background:#e3e3e3;
	color:#333;
	font-size:15px;
	padding:10px 10px;
}

.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:focus, 
.nav-tabs > li.active > a:hover {
	background: #209020!important;
    color: #fff;
    font-weight: bold;
}




.bgWhite {

  background:#fff!important;

  font-family:"open_sansregular"!important;

  font-size:14px;

  line-height: 26px;

  color:#333;

}

.attachment-custom_thumb {

}

.testimonialContentWrapper {

  margin-top:20px;

}

.blogListItem {

  border-bottom:solid 1px #ccc;

  padding:15px 0;

}

.thumbnailImage {  

  background:#000;

  float: left;

  margin-right: 10px; 

}

.thumbnailImage  > a > img {

  width:160px;

  height:100px;

  border:solid 1px #000;

}

.social-links {

  margin-top:20px;

}

.social-links .twitter-share-button {

  float: left!important;

  height: 60px!important;

  /*margin-top: 6px!important;*/

  position: static!important;

  visibility: visible!important;

  width: 70px!important;

}

.fb_iframe_widget span:first-child {

  width:68px!important;

  height:28px!important;

}

.textwidget .fb-page {

  width:302px!important;

  height:502px!important;

  border:solid 1px #ccc;

  padding-right:2px;

  margin:20px 0 10px 0!important;

}

.pagination {

  clear:both;

  padding:20px 0;

  position:relative;

  font-size:11px;

  line-height:13px;

}

.pagination span, .pagination a {

  display:block;

  float:left;

  margin: 2px 2px 2px 0;

  padding:6px 9px 5px 9px;

  text-decoration:none;

  width:auto;

  color:#fff;

  background: #555;

}

.pagination a:hover{

  color:#fff;

  background: #3279BB;

}

.pagination .current{

  padding:6px 9px 5px 9px;

  background: #3279BB;

  color:#fff;

}

.operationsInNo {

  padding:30px;

  background:#fff;

}

/*.operationsInNo h1 {

color:#011939;

font-size:48px;

color:#005AFF;

font-weight:bold;

}*/

.operationsInNo h2 {

  color:#2a3ab3;

  text-transform:uppercase;

  font-size:18px;

  width:120px;

  margin:0px auto;

  padding:20px 0;

}

.operationsInNo h2 {

/*border-top: solid 1px #005AFF;

border-bottom: solid 1px #005AFF;*/

}

.counterTxt {			  

  margin:1.5% auto;

  font-weight:bold;

  font-family:Arial;

  font-size:40px;

  font-weight:bold;

  background-color: #023c88;

  width:200px;

  border-radius: 50%;

  padding:72px 0;

  vertical-align: middle;

  color:#fff;

}

*, *:before, *:after {

  box-sizing:  border-box !important;

}

.wholeMediaContainer {

  -moz-column-width: 18em;

  -webkit-column-width: 18em;

  -moz-column-gap: 1em;

  -webkit-column-gap: 1em;

}

.media-item {

  display: inline-block;						 

  width:  100%; 

}

.-item img {

  margin:0 auto 10px;

  width:100%;

}

.datagreen {
  color: #60D560;
  text-transform: uppercase;
  font-weight: bold;
}
.datagreen-logo {
  width:150px;
  height:42px;
  margin: 0 auto 10px;
}
.datagreen-logo-small {
  width:50px;
  height:42px;
  margin: 0 auto 10px;
}
.datagreen-logo img {
  width:100%;
  height:auto;
}

.datagreen-logo-boxed {
  background: #fff;
  padding: 7px;
}

.logoSVG {
  width:136.519px;
  height:24.076px;
  background: url(../img/sts-logo.svg) no-repeat; 
  margin-top: 10px;
  margin-left: 10px;  
}

.logoSVG.active {
  background: url(../img/sts-logo-active.svg) no-repeat;
}

.newCaptionCon { 
  position: absolute;
  z-index: 99;   
  height: 50%; 
  width:70%;
  top:25%;
  left:50%;
  display: flex;
  align-items: center; 
  justify-content: center;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%); 
}

.newCaptionCon h1 {
  height: auto;
  color: #fff;    
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-family: 'Roboto Condensed', serif;
  width: 60%;
  margin: 0 auto;
}

.heroContent .heroLogoSVG {
  margin:0 auto 15px!important;    
  width:136.519px;
  height:24.076px;
  background: url(../img/sts-logo.svg) no-repeat;
}

.newCaptionCon a span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.newCaptionCon a span::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: capitalize;
  /*text-shadow: 5px 3px 3px rgba(0, 0, 0, 0.2);*/
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
  position: relative;
  /*padding-bottom: 15px;*/
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  /*content: '';
  position: absolute;
  display: block;
  width: 200px;
  height: 3px;
  background: #18d26e;
  bottom: 0;
  left: calc(50% - 100px);*/
}

.section-header p {
  text-align: center;  
  color: #333;
}

/* Section with background
--------------------------------*/

.section-bg {
  /*background: #f7f7f7;*/
}

/* Featured Services Section
--------------------------------*/

#featured-services {
  background: #deffe0;
}

#featured-services .box {
  padding: 30px 20px;
  text-align: center;
}

#featured-services .box img {
  margin:0 auto;
}


#featured-services .box-bg {
  /* background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%); */
  background: #deffe0;
}

#featured-services i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 24px;
}

#featured-services h4  {
  color: #333;
}

#featured-services .box-bg h4  {
  color: #333;
}

#featured-services h4 a:hover {
  color: #000;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

#company {
  background: rgb(255, 255, 255);
  background-size: cover;
  padding: 10px 0 20px 0;
  position: relative;
}

#company .section-header h3 {
  font-size: 32px;
  color: #333;
  text-transform: capitalize;
  /*text-shadow: 5px 3px 3px rgba(255, 255, 255, 0.2);*/
  letter-spacing: 0;
  text-align: left;
  font-weight: 700;
  position: relative;
  padding-bottom: 25px;
}

#company .section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 20%;
  height: 1px;
  background: #333;
  bottom: 1px;
  left: calc(30% - 10%);
}

#company .section-header p { 
  color: #333;
  text-align: left;
}

/* Technologies Section
--------------------------------*/

#technologies, #solution-foot-print {  
  padding: 60px 0 40px 0;  
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/technologies-bg.jpg) fixed center center;  
}

#technologies::before {
  /*content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;*/
}

#technologies .section-header h3 {
  color:#fff;
}

#technologies .container {
  position: relative;
  z-index: 10;
}

#technologies .technologies-col {
  background: #fff;
  border-radius: 0;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  min-height: 350px;
}

#technologies .technologies-col .img {
  position: relative;
}

#technologies .technologies-col .img img {
  /*border-radius: 4px 4px 0 0;*/
}

#technologies .technologies-col .icon {
  width: 128px;
  height: 128px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #94e892;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 64px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#technologies .technologies-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#technologies .technologies-col:hover .icon {
  /* background-color: #fff; */
}

#technologies .technologies-col:hover i {
  color: #18d26e;
}

#technologies .technologies-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#technologies .technologies-col h2 a {
  color: #000;
}

#technologies .technologies-col h2 a:hover {
  color: #18d26e;
}

#technologies .technologies-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 15px 15px 15px;
  text-align: left;
}

/* Services Section
--------------------------------*/

#solutions {
  background: #fff;
  background-size: cover;
  padding: 0px 0 20px 0;
}

#solutions .box {
  margin-bottom: 30px;
}

#solutions .icon {
  float: left; 
  padding-right: 20px;
}

#solutions .icon i {
  color: #18d26e;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#solutions .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#solutions .title a {
  color: #111;
}

#solutions .box:hover .title a {
  color: #18d26e;
}

#solutions .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
  /* text-align: justify */
}

.menuSolutionWrapper {    
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;    
}

.menuSolution {
  width:150px;
  height:150px;    
  background:#fff;    
  border-radius: 5px;
  text-align: center;
  margin: 10px;   
  padding: 10px; 
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;

  -webkit-box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3); 
  -moz-box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3); 
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3); 

  transition: all .2s ease-in-out;
}

.menuSolution:hover {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  transition: all .2s ease-in-out;
  transform: scale(.95);
}

.menuSolution.active {
  background-color:#9ddc80;
  box-shadow: none;
}
.menuSolution.active:hover {
  background-color:#9ddc80;
  box-shadow: none;
  transition: inherit;
  transform: inherit;
}
.menuSolution.active p {
  color:#008000;
}

.menuSolution img {
  width: 80px;
  margin: 0 auto;    
}
.menuSolution p {
  font-weight: bold;
}

.section-sub-header h3 {
  color:#000;
}

.solutionDetail {
  padding:15px;
  display: none;
}

#fm {
  display: block;
}

.solutionDetail .points {
  width:100%;
}

.solutionDetail .points .itm {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.solutionDetail .points .itm .icn { 
 flex:1;
 border: solid 1px #13a456;
 border-radius: 3px; 
}

.blockDisplay .points .itm .icn { 
 flex:1;
 border:none;
}

.solutionDetail .points .itm .point { 
  flex:6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
}

.lastSolution .points .itm .icn { 
 flex:1;
 border:none;
}

.lastSolution .points .itm .point { 
 flex:10;
 display: flex;
 align-items: center;
 justify-content: flex-start;
 padding-left: 10px;
}

.solutionDetail .points .itm .icn img {
  width:100%;
  height:auto;
}

@-webkit-keyframes sdb10 {
  0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
  }
  40% {
      opacity: 1;
  }
  80% {
      -webkit-transform: translate(0, 20px);
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
  }
  @keyframes sdb10 {
  0% {
      transform: translate(0, 0);
      opacity: 0;
  }
  40% {
      opacity: 1;
  }
  80% {
      transform: translate(0, 20px);
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
}

.left {
  margin: 0;
}

/* Clients Section
--------------------------------*/

#customers {
  padding: 20px 0;
}

#customers img {
  max-width: 100%;
  /*filter: grayscale(100%);*/
  opacity:0.7;
  transition: 0.3s;
  padding: 15px 0;
  
}

#customers img:hover {
  /*filter: grayscale(0);*/
  opacity:1;
}

#customers .owl-nav,
#customers .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#customers .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#customers .owl-dot.active {
  background-color: #18d26e;
}

/* Testimonials Section
--------------------------------*/

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 20px 0;  
}

/* .testimonialContainer {
  border: solid 1px #008000;
  position: relative;
}

.testimonialHdr {
  width:60%;
  padding:5px;
  background: #fff;
  border: solid 1px #008000;
} */

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 150px;
  /*border-radius: 50%;*/
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonial-img-lg {
  width: 200px!important;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #18d26e;
}


/* Request Demo Section
--------------------------------*/

#reqDem {  
  padding: 60px 0 30px 0;  
  background: #d0d0d0;  
}

.reqDemoConCol {
	min-height:430px;
	background:url('../img/reqDemoBg.png') no-repeat bottom right;
}

.reqDemoConCol ul {
	margin:0 0 0 20px;
	padding:0
}
.reqDemoConCol ul li {
	font-size:16px;
	font-weight:bold;
}

.reqDemoNewForm .form-group {
	margin-bottom:20px!important;
	padding:0;
}
.reqDemoNewForm .form-group  input {
	font-size:20px!important;
	background:none!important;
	border:none!important;
	border-bottom:solid 1px #333!important;
	padding-left:0!important;
}
.reqDemoNewForm .wpcf7-textarea {
	font-size:20px!important;
	height:100px!important;
	background:none!important;
	border:none!important;
	border-bottom:solid 1px #333!important;
	padding-left:0!important;
}

.reqDemoNewForm .wpcf7-submit {
	background:#84c7ac!important;	
}

#reqDem::before {
	
}

#reqDem .section-header h3 {
  color:#333;
}

#reqDem .container {
  position: relative;
  z-index: 10;
}

#reqDem button {
	max-width:150px!important;
}

.reqDemBtn {
	max-width:150px!important;
}

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

.blockDisplay {
	display:block;
}

.solutionImageContainer {
	padding-bottom:20px;
}

.detailedSolContainer {
	display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-wrap: wrap;
}

.reqDemoFrm input {
	width:100%!important;
}

.reqDemoFrm .wpcf7-submit {
	max-width:150px!important;
}

@media (max-width: 768px) {
	.reqDemoConCol {
		min-height:auto;
		background:none;
	}

  .newCaptionCon {
    width:70%;
  }

  .newCaptionCon h1 {    
    width: 100%;
  }

  .back-to-top {
    bottom: 15px;
  }

  .section-header h3 {
    letter-spacing: 0px!important;
  }
  .logoTagline {
	 display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding:15px;
  }
  
  .caption img {
	height:100%;
	width:auto;
  }
}

@media (max-width: 400px) {
	.menuSolutionWrapper {
		display:none;
	}
	.solutionDetail .points .itm .icn {
		display:none;
	}
	.solutionDetail .points .itm .point {
		border-left:solid 1px #000;
	}
	.solutionDetail {
		display:block;
	}
	.newsletterSignupCol {
		margin-top:10px;
	}
	#technologies .col-xs-6 {
		width:100%;
	}
	
}

.show {
	display:block;
}

.solutionUL {				
	min-height:100px;
}
#content-desktop {display: block;}
#content-mobile {display: none;}
#videoContainerPanel {
	padding:40px 0 0px;
	min-height:350px;
	background:#fff;
	margin-bottom:40px;
}
.videoPanel {
	height:auto;	
}
.vdoDiv {
	padding:10px;
}
.vdomore h4 {
	color:#333;
}

@media screen and (max-width: 992px) {
	.solutionUL {
		min-height:150px;
	}
}

@media screen and (max-width: 768px) {
	#content-desktop {display: none;}
	#content-mobile {display: block;}
	.solutionUL {
		text-align: left;
		width: 45%;
		margin: 10px auto;
		min-height:auto;
	}
	.solRw img {
		width:50%;
		margin: 0 auto;
	}
	.videoPanel {
		height:215px;
		overflow-y:scroll;
	}
}
@media screen and (max-width: 640px) {
	
}
.wpcf7-select {
	padding-left: 10px;
	border: solid 1px #ccc;
}
.demoForm ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333;
  opacity: 1; /* Firefox */
}

.demoForm :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #333;
}

.demoForm ::-ms-input-placeholder { /* Microsoft Edge */
  color: #333;
}
.featuresSection .owl-nav {
	width:50%;
	margin:0 auto;
	position:relative;
}
.featuresSection .owl-nav .owl-prev {
	position: absolute;
	left:0;
}
.featuresSection .owl-nav .owl-next {
	position: absolute;
	right:0;
}
.featuresSection .owl-nav span {
	font-size:36px;
}
.testimonial-1 .carousel .item {
	min-height:300px;
}
.testimonial-1{ 
	padding:25px 0px 0px 0px; 
	margin:-20px 0px 0px 0px;
}
.testimonial-1 .icon-1{ 
	padding:0; margin:0;
}
.testimonial-1 .icon-1 img {
	width:80px;
	height:80px; 
	border-radius:50%; 
	border:2px solid #999; 
	display:block; 
	margin:0 auto; 
}
.testimonial-1 p{ 
	text-align:left; 
	padding:0 0 20px 0;
}
.testimonial-1 .test { 
	padding:0px; 
	margin:0; 
	border:none;
	/*background:url(https://www.sourcetrace.com/wp-content/themes/sts-v3/img/request-a-demo/Testimonial-bg.png) #fff
	background-repeat:no-repeat; */
	height:auto; 
	width:auto;
}
.test p { 
	font-size:15px; 
	color:#8d8d8d; 
	font-style:Narrow !important; 
	padding:15px; 
	text-align:justify;
	
}
.testimonial-1 .carousel{
	height:300px;
}
@media only screen and (max-width: 600px) {
  .testimonial-1 .carousel{
	height:auto!important; 
   }
}
.demoForm .wpcf7-submit {
	background: #fff;
	border: thin solid #8cb555;	
	color: #8cb555;
}
.carousel-indicators li {
	background: #fff;
	border: thin solid #8cb555;	
}
.carousel-indicators li.active {
    background-color: #8cb555;
}

.signupForm {
	background-color: #ceebeb;
	padding-bottom:0;
}
.st_newsletter_wrapper{
	padding: 38px 60px 35px;
	display: flex;
	align-items: center;
	background-color: #ceebeb;
	border-radius: 20px;	
	position: relative;
	z-index: 1;
}
.st_newsletter_wrapper .newsletter_text{
	width: 40%;
}
.st_newsletter_wrapper .newsletter_text h2{
	font-size: 40px;
	font-weight: 700;
	color: #333;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.st_newsletter_wrapper .newsletter_text h4{
	font-family:'robotocondensed', sans-serif;
	font-size: 22px;
	font-weight: 400;
	color: #333;
	text-transform: capitalize;
}
.st_newsletter_wrapper .newsletter_field{
	width: 60%;
}
.st_newsletter_wrapper .newsletter_field h3{
	font-family:'robotocondensed', sans-serif;
	font-size: 24px;	
	color: #333;
	text-transform: capitalize;
	margin-bottom: 14px;
}
.st_newsletter_wrapper .newsletter_field .newsletter_field_block{
	max-width: 610px;
	width: 100%;
	position: relative;
}
.st_newsletter_wrapper .newsletter_field .newsletter_field_block > input{
	width: 100%;
	height: 50px;
	padding: 0px 20px;
	padding-right: 180px;
	border-radius: 30px;
	border: none;
	outline: none;
}
.st_newsletter_wrapper .newsletter_field .newsletter_field_block > a{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	line-height: 50px;
	padding: 0px 40px;
	border-radius: 30px;
	background-color: #222222;
	text-transform: capitalize;
	color: #fff;
	transition: all 0.3s ease-in-out;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;
}
.st_newsletter_wrapper .newsletter_field .newsletter_field_block > a:hover{
	background-color: #555555;
}
#zcWebOptin {
	marging:0px 0px 0px -35px;
}
@media (max-width: 991px){
	.st_newsletter_wrapper .newsletter_text h2{
		font-size: 30px;
	}
	.st_newsletter_wrapper{
		padding: 38px 30px 35px;
	}
}
@media (max-width: 767px){
	.st_newsletter_wrapper{
		margin-top: 50px;
	}
	.st_newsletter_wrapper{
		padding: 38px 15px 35px;
	}
}
@media (max-width: 550px){
	.st_newsletter_wrapper{
		flex-direction: column;
	}
	.st_newsletter_wrapper .newsletter_text{
		width: 100%;
		text-align: center;
	}
	.st_newsletter_wrapper .newsletter_field{
		width: 100%;
		text-align: center;
	}
	.st_newsletter_wrapper .newsletter_field h3 {
		font-size:18px;
	}
	.st_newsletter_wrapper .newsletter_text h4{
		font-size:20px;
		margin-top:10px;
	}
	#zcWebOptin {
		marging:0;
	}
}
@media (max-width: 480px){
	.st_newsletter_wrapper .newsletter_field .newsletter_field_block > input{
		padding: 0px 25px;
	}
	.st_newsletter_wrapper .newsletter_field .newsletter_field_block > a{
		position: relative;
		display: inline-block;
		margin-top: 20px;
	}
}

/*08052020*/
.mapSectionContainer {
	margin-bottom:30px;
}
#map {
  min-height: 420px;
  width: 100%;  
}
.col-md-6 .contactusForm img {
	width:auto;
}
.contactusForm {
	padding:15px;
	background:#f8f5e5;	
	min-height: 420px;
}

.global-locations h1 {
	text-align:center;
}
.formInputFieldRow {
	display:flex;
	align-content:center;
	justify-content:space-between;
	margin-bottom:15px;
}
.formInputFieldRow .item{
	margin-right:3%;
	width:47%;
}
.formInputFieldRow .item:last-child {
	margin-right:0;
}
.contactusForm input, 
.contactusForm textarea {
	font-size: 20px!important;
	background: none;
	border: none!important;
	border-bottom-color: currentcolor!important;
	border-bottom-style: none!important;
	border-bottom-width: medium!important;
	border-bottom: solid 1px #333!important;
	padding: 2% 0!important;
	width:100%;
	margin:1%;
}
.contactusForm textarea {
	height:60px;
}
.contactusForm img {
	width:auto;
}
.captchaInput {
	
}
.contactusFormSubmitBtn  {
	background: #84c7ac!important;
	max-width:150px;
	height:50px!important;
}
.gloLoc {
	padding:20px;
	text-align:center;
}
.address {
	padding:20px;
	text-align:center;
}
.flag {
	width:78px;
	height:50px;
	margin:0 auto;
	text-align:center;
}
.flag img {
	width:auto;
	height:100%;
}
.call-to-action {
	margin-bottom:30px;
}
.callactionWholeWrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  margin: 0px;
  background:#c1e3d5;  
}
.columnWholeDiv {
	width: 50%; 
}
.callactionWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  margin: 0px;
}
.callactionWrapper .columnDiv {    
  margin: 0 0px 0px 0;
  flex-grow: 1;
  width: calc(50% - 10px);
  background:#f8f5e5;
  padding:25px 0 10px;
  border-bottom:solid 1px rgba(51,51,51,0.3);
  border-right:solid 1px rgba(51,51,51,0.3);
}
.callactionWrapper .threecolumnDiv {    
  margin: 0 0px 0px 0;
  flex-grow: 1;
  width: calc(33% - 10px);  
  padding:25px 0 10px;  
}
.callactionWrapper .columnDiv:nth-child(2n) {
  margin-right: 0;
  border-right:none;
}
.callactionWrapper .threecolumnDiv:nth-child(3n) {
  margin-right: 0;
}
.callactionWrapper .columnDiv:nth-child(3),.callactionWrapper .columnDiv:nth-child(4) {  
  border-bottom:none;
}
.globalLocationIcon {
  text-align: center;
  width:70px;
  height:70px; 
  margin:0 auto 10px;  
}
.globalLocationIcon img {
	width:100%;
	height:auto;
}
.contentDiv {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.verticalCenter {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.reqDemContent {
	margin-bottom:10px;
	clear:both;
}
.reqDemoPanelBtn {
	background:#333;
	padding:15px;	
	color:#fff;
	text-transform:uppercase;
}
.reqDemoPanelBtn:hover {	
	color:#fff;
}
.othrLocation {
	width:178px;
	height:124px;
	margin:0 auto;
	text-align:center;
}
.othrLocation img {
	width:auto;
	height:100%;
}
.partnerLocTxt {
	text-align:center;
	text-transform:uppercase;
	margin:0;
	padding:10px 0 0 0;
}
@media only screen and (max-width: 500px) {
	.formInputFieldRow {
		flex-direction:column;		
	}
	.formInputFieldRow .item{		
		width:97%;
		margin-bottom:15px;
	}
	.callactionWholeWrapper {
		flex-direction:column;
	}
	.columnWholeDiv {
		width: 100%; 
		padding:20px;
	}
	.callactionWrapper .columnDiv {
		width: calc(50% - 10px);
		background:none;
		border-right:none;
	}
	.callactionWrapper .threecolumnDiv { 
		width: calc(50% - 10px);
	}
	.callactionWrapper .columnDiv:nth-child(3) {  
	  border-bottom:solid 1px rgba(51,51,51,0.3);
	}
}
@media only screen and (max-width: 500px) {
	.callactionWrapper .columnDiv {
		width: 100%;
		background:none;
		border-right:none;
	}
	.callactionWrapper .threecolumnDiv { 
		width: 100%;
	}
	.callactionWrapper .columnDiv:nth-child(3) {  
	  border-bottom:solid 1px rgba(51,51,51,0.3);
	}
}

/*15052020*/
.ftbanner {
	width:100%;
	min-height:400px;
	background:#f3eee6;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:start;
	margin-top:55px;
}
.fmbanner {
	width:100%;
	min-height:400px;
	background:#fff;
	position:relative;	
	margin-top:80px;
}
.fmBannerRow {
	display:flex;
	align-items:center;
}
.ft-dglogoWrapper {
	max-width:40%;
}
.ft-dglogo {
	width:167px;
	height:36px
}
.ft-dglogo img {
	width:100%;
	height:auto;
}
.ftbanner-right {
	position:absolute;
	right:0;
	bottom:0;
	width:65%;
}
.ftbanner-right img {
	width:100%;
	height:auto;
}
.ft-section {
	padding:20px;
	margin-bottom:30px;
}
.ft-section h1, .ft-benefits h1, .ft-blockchain h1, .fm-benefits h1, .fm-smartfarm h1  {
	font-size:32px;
	text-align:center;
	padding:15px;
	font-weight:bold;
	padding:0;
	margin:0;
}

.ft-platform {
	padding:40px;
}
.ft-platform ul {
	margin:0;
	padding:0;
}
.ft-platform ul li {
	list-style:none;
	padding: 0; 
}
.ft-sectorWrapper {
  width:960px;
  margin:0 auto;
}
.sectors {
  width:90%;
  /*height:100%;*/
  display: flex;    
  flex-wrap:wrap;
  align-self:flex-start;
  margin:40px auto 20px; 
}
.ft-sectorItem {  
  margin:10px 1px;    
  flex-grow: 1;
  width: calc(100%);
}
.sec-icon {
  text-align:center;
  width:100px;
  margin:0 auto;
  height:100px;
}
.sec-icon img {  
  width:100%;
  height:auto;
}
.sec-name {
  width:80%;
  margin:0 auto;
  text-align:center;
}
.sec-content {
	width:90%;
	text-align:center;
	margin:0 auto;
}
.paddingZero {
	padding:0;
}
.ft-benefits h1, .ft-blockchain h1, .fm-benefits h1, .fm-smartfarm h1, .ft-reqDemo  {
	text-align:left;
}
.fm-benefits h1, .fm-smartfarm h1  {
	margin-bottom:15px;
	text-align:center;
}
.fm-benefits p, .fm-smartfarm p  {	
	text-align:center;
}
.fm-benefits, .fm-smartfarm {
	display:flex;
	flex-direction:column;
	justify-content:flex-end;	
}
.fm-smartfarm h1  {
	
}
.ft-blockchain h1  {
	color:#fff;
}
.ft-benefits-wrapper ul, .ft-blockchain-wrapper ul, .fm-benefits-wrapper ul, .fm-smartfarm-wrapper ul  {
	margin:25px 20px;
	padding:0
}
.fm-benefits-wrapper ul, .fm-smartfarm-wrapper ul  {
	margin:25px 30px;
	padding:0
}
.ft-benefits-wrapper ul li, .ft-blockchain-wrapper ul li, .fm-benefits-wrapper ul li, .fm-smartfarm-wrapper ul li  {	
	padding:5px;
	font-size:18px;
}
.ft-blockchain-wrapper ul li  {	
	list-style-image: url("../img/blockchain-bullet.jpg");
	color:#fff;
}
.ft-benefits {
	background:url("../img/ft-benefits.jpg") bottom right no-repeat #cfdae0;
	position:relative;
	padding:20px 10px;
	min-height:380px;
}
.ft-blockchain {
	background:url("../img/ft-blockchain-power.jpg") bottom right no-repeat #0e4865;
	position:relative;
	padding:20px 10px;
	min-height:380px;
}
.fm-benefits {
	background:url("../img/fm-benefits.jpg") bottom right no-repeat #e2f4dc;
	position:relative;
	padding:20px 10px;
	min-height:380px;
}
.fm-smartfarm {
	background:url("../img/fm-smartfarm.jpg") bottom right no-repeat #d7f5f4;
	position:relative;
	padding:20px 10px;
	min-height:380px;
}
.ft-benefits-img, .ft-blockchain-img, .fm-benefits-img, .fm-smartfarm-img {
	width:80%;
	margin:0 auto;
}
.ft-features-intro {
	width:80%;
	margin:0 auto;
	padding:20px;
	text-align:center;
	border-bottom:solid 1px #ccc;
}
.ft-features {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: 15px;
	min-height: 400px;	
}
.ft-features-img {
	padding:10px;
}
.ft-features p {
	text-align:center;	
	align-items: center;
}
/* Large desktops and laptops */
@media (min-width: 1200px) {
	.ft-sectorItem {        
		width: calc(14%);
	 }
	 .sec-content {
		width:70%;
	 }
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
	.ft-sectorItem {        
		width: calc(20%);
	 }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
	.ft-sectorItem {        
		width: calc(25%);
	 }
	 .fmBannerRow {
		 flex-direction:column;
	 }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
	.ft-sectorItem {        
		width: calc(33%);
	 }	 
	 .fmBannerRow {
		 flex-direction:column;
	 }
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
	.ft-sectorItem {        
		width: calc(50%);
	 }
}

@media only screen and (max-width: 768px) {
	.ftbanner, .fmbanner {
		flex-direction:column;
		padding:20px;
	}
	.ftbanner-right {
		position:relative;
		right:inherit;
		bottom:inherit;
		width:100%;
	}
	.ft-dglogoWrapper {
		max-width:100%;
	}
	.ft-platform {
		padding:40px 40px 0;
	}
	.ft-benefits {
		background:#cfdae0;		
	}
	.ft-blockchain {
		background:#0e4865;
	}
	.fm-benefits {
		background:#e2f4dc;		
	}
	.fm-smartfarm {
		background:#d7f5f4;
	}
	.ft-features-intro {
		width:100%;
	}
	.ft-features {
		min-height: 200px;
	}
	.ft-features p {
		margin-bottom:20px;
	}
}
.casestudyItemImg img {
	border:solid 1px #000;
	width:auto;
	height:100%;
}
.casestudyItemImg {
	width:100%;
	height:330px;
	overflow:hidden;
	margin:0 auto;
}
.casestudy-title {
	font-family: 'Playfair Display', serif;
	font-size:24px;
	padding:5px 0;
}
.casestudy-button {
	font-size: 20px!important;
	background: none;
	border: none!important;	
	border-bottom: solid 1px #333!important;
	padding: 2%!important;
	width:100%;	
	background: #84c7ac!important;
	max-width:200px;
	text-transform:uppercase;
	text-align:center;
}
.casestudy-button a {
	color:#000;
}
/*16052020 tomorrow talks*/
.tmrTalksLogo {
	max-width:450px;
	margin:20px auto;
	height:auto;
}
.tmrTalks h1, .tmrTalksPanel h1 {
	font-size:32px;
	text-align:center;	
	font-weight:bold;
	padding:10px;
	margin:0;
}
.tmrTalks-list-image h1 {
	font-size: 24px;
	text-align: left;	
	font-weight: bold;
	padding:0;
	margin: 0;
}
.tmrTalks-intro {
	width:80%;
	margin:0 auto;
	text-align:center;
}
.tmrTalks-list {	
	margin:30px 15px;	
}
.tmrTalks-list-image {
	padding-bottom:15px;
}
.tmrTalks-list-image h1 {
   margin-bottom:7px;
}
.tmrTalks-list-image img {	
	border:solid 1px #000;
	margin-bottom:10px;
}
.tmrTalks-list-content {	
		
}
.tmrTalks-list a {
	color:#034901;
	text-decoration:underline;
	font-weight:bold;	
}
.tmrTalks-list a:hover {
	text-decoration:none;	
}
.tmrTalksPanel{	
}
.tmrTalksPanel .panel {
	border:none;
}
.tmrTalksPanel .panel-body {
	padding:0;
	padding-bottom:10px;
}
.tmrTalksPanel .panel-default > .panel-heading {
	border:none;
	background-color: transparent;
}
.tmrTalksPanel .panel-default > .panel-heading + .panel-collapse > .panel-body {
	border:none;
}
.tmrTalksPanel h4 {
	/*font-size:20px;
	background:#c9e7c8;
	border:none;
	border-bottom:solid 1px #034901;
	padding:10px 30px 10px 20px;
	line-height:30px;
	position:relative;*/
}
.tmrTalksPanel h4 {
	font-size:20px;	
	border:none;
	/*border-bottom:solid 1px #034901;
	padding:10px;*/
	line-height:30px;
	position:relative;
	font-weight:bold;
	margin-bottom:5px;
}

.tmrTalksPanel h4 span {
	position:absolute;
	right:10px;
	top:50%;
	transform:translateY(-50%);
}
.tmrTalksPanel p {
	border-left:solid 1px #024903;
	padding-left:15px;
}
.tmrTalksPanel p:nth-child(even) {
	border-left:solid 1px #26c1ee;
}
.tmrTalksPanelHighLight {
	color:#1347f0;
}
.rotate{
	-webkit-transform: rotate(90deg)!important;  /* Chrome, Safari, Opera */
		-moz-transform: rotate(90deg)!important;  /* Firefox */
		-ms-transform: rotate(90deg)!important;  /* IE 9 */
			transform: rotate(90deg)!important;  /* Standard syntax */   
				top:33%!important;
}
@media only screen and (max-width: 768px) {
	.tmrTalks-intro {
		width:80%;
	}
}

/*Webinar*/
.webinarsLogo {
	max-width:450px;
	margin:20px auto;
	height:auto;
}
.timerWrapper {
  font-family: 'Titillium Web', 'robotoregular';		  
  margin: 10px auto;
  text-align: center;
  color: white;
  background: #002d1f;
  font-weight: 100;
  width:100%;
}

.timerWrapper div {
  display: inline-block;
  line-height: 1;
  padding: 15px;
  font-size: 40px;
}

.timerWrapper span {
  display: block;
  font-size: 20px;
  color: white;
}

#days {
  font-size: 50px;
  color: #db4844;
}
#hours {
  font-size: 50px;
  color: #f07c22;
}
#minutes {
  font-size: 50px;
  color: #f6da74;
}
#seconds {
  font-size: 25px;
  color: #abcd58;
}
.w-section h1, 
.w-section h2, 
.w-section h3, 
.w-section h4, 
.w-section h5, 
.w-section h6 {
	padding:0;
	margin:0;
	padding-bottom:10px;
}
.w-section h1  {
	font-size:32px;
	text-align:left;	
	font-weight:bold;
}
.wdateTime {
	color:#333; 
	font-size:20px; 
	font-weight:bold; 
	line-height:28px;
}
.wRegister .embedButton {
	font-family: 'Titillium Web', 'robotoregular';
	font-size: 26px;
	padding:10px;
	background:#3dac00;
	color:#fff;	
	display:block;
	margin:0 auto;
	font-style:normal;
	text-transform:capitalize ;
	
}
.wContent {
	padding:15px 0;
	margin-top:15px;
	border-top:solid 1px #002d1f;
}
.speakersList {
	display: flex;
	flex-wrap: wrap;
	align-self: flex-start;
}
.speakersList li {
	display:flex;
	align-items:center;
	margin-bottom:10px;
	flex-grow: 1;
    width: calc(50% - 10px);
}
@media only screen and (max-width: 500px) {
	.speakersList li {
		flex-direction:column;
		text-align:center;
	}
	.speakersList li img {
		margin-right:10px;
	}
	.speakersList li img {
		margin-bottom:10px;		
	}
	.w-section h4 {
		text-align:center;
	}
	.wRegister .embedButton {
		display:none;
	}
}
.speakersList li img {
	margin-right:10px;
	min-width:109px;
	border:solid 1px #056c0b;
}
.speakersList li strong {
	display:block;
}
.wVideoPanel {
	margin-top:20px;
}
.embedhrefBtn {
	font-family: 'Titillium Web', cursive;
	font-size: 26px;
	padding:10px;
	background:#3dac00;
	color:#fff;	
	display:block;	
	width:200px;
	text-align:center;
}

#customForm .SIGNUP_FORM_LABEL {
	margin:10px 0;
	font-size:16px;
}
#customForm input {
	width:100%;
	height:30px;
	line-height:30px;
	border:none;
	border-bottom:solid 1px #333;
}
#customForm textarea {
	width:100%;
	border:none;
	border-bottom:solid 1px #333;
}
.webinarBtn  {
	background: #484848!important;				
	padding:3px;
	text-decoration:none;
	color:#fff;
	font-size:14px;
	display:block;
	max-width:100px;
	text-align:center;
	margin-top:10px;
}
.webinarBtn:hover {	
	color:#fff;
}			
.webinarRegiterBtn  {
	background: #84c7ac!important;
	max-width:100px;
}
.w-listItem {
	display:flex;
	flex-direction:column;
	padding-bottom:15px;
	border-bottom:solid 1px #008001;
}
.w-img {
	/*max-width:350px;*/
	width:100%;
	margin-right:15px;
}
.w-img img {
	border:solid 1px #008001;
}
.w-list h3 {
	font-size:24px;
	padding:10px 0;
}
@media only screen and (max-width: 600px) {
	.w-img {
		display:none;
	}
	.wRegister {
		margin-top:15px;
	}
}
.csItem {
	/*min-height:350px;*/
}
a h4 {
	color:#6f9703;
}
.csrow h4, .csItem-h4, .csItem-h4:hover {
	color:#6f9703;
}
.csItem-p, .csItem-h4:hover {
	color:#333;
}
.mediaList h4 {
	color:#333;
}

/*27072020*/
.box img {
	width:50%;
	margin:0 auto;
}
.onePlatformToAll {
	text-align:center;
}
.onePlatformToAllImage {
	margin-bottom:30px;
}
.onePlatformToAll h1 {
	font-size:32px; 
	color:#333;
	letter-spacing:0;
	text-transform:capitalize;
}
.onePlatformToAll h2 {
	font-size:24px; 
	color:#333;
	letter-spacing:0;
	text-transform:capitalize;
}
.onePlatformToAll p {
	padding:0 15px 15px;
	width:80%;
	margin:0 auto 15px;
}
@media only screen and (max-width: 600px) {
	.onePlatformToAll p {
		width:100%;
	}
	.onePlatformToAll h1 {
		font-size:28px; 	
	}
}
.opColumn {
	margin-bottom:25px;
}
.opPanelBtn {
	background:#84c7ac;
	padding:10px;	
	color:#333;
	text-transform:uppercase;	
}
.opPanelBtn:hover {	
	color:#fff;
	background:#333;
}
.whitePaperListWrapper {
	padding: 30px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
}
.wprListItem {
	display:flex;
	align-items:center;
	justify-content:center;
	border-bottom:solid 1px #ccc;
	margin-bottom:20px;
}
.whatsInside {
	padding: 0;				
	padding-left: 15px;
	margin: 0;
}
.wPrListItemColTxt {
	width:70%;
}
.wPrListItemColImg {
	text-align:center;
	width:30%;
}
.whitePaperListItem h3 {
	font-size:22px;
	text-align:center;
	padding:15px;
	margin:15px;
}			
.dwnldBtn {
	background:#ff7800;
	padding:10px;	
	color:#fff;
	text-transform:uppercase;
	font-weight: bold;
}
.dwnldBtn:hover {	
	color:#fff;
}
.whitepaperImageDiv {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 800px;
}
@media only screen and (max-width: 640px) {
	.whitePaperListWrapper {
		padding: 15px;					
	}
	.wprListItem {
		flex-direction:column;
		border:none;
	}
	.wPrListItemColTxt {
		width:100%;
	}
	.wPrListItemColImg {
		text-align:center;
		width:100%;
	}
}
@media only screen and (max-width: 768px) {
	.whitepaperImageDiv {
		min-height: 300px;
	}
}

/*Tracenext 06082020*/
.pageSectionWrapper {
	margin-bottom:30px;
}
.tnBanner {
	margin-top:70px;
}
.tnBannerRow {
	background:url("../img/tracenext-tp-banner.jpg") bottom right no-repeat #c8d18e;
	min-height:683px;
	display:flex;
	align-items:center;
	padding:15px;
}
.introTextSec {
	padding:15px 15px 25px;
}
.tnBannerRow .introTextSec .tnLogo {
	width:327px;
	height:63px;
	margin-bottom:20px;
}
.tnBannerRow h1, .tnBannerRow p {
	color:#000;
	padding:15px 0;
	margin:0 0 10px;
	width:400px;	
}
.tnBannerRow h1 {
	font-weight:505;
}
.tnBannerRow p {
	border-top:solid 2px #209020;
	margin-bottom:15px;
}
.tpButton {
	text-align:left;
}
.tpButton a {
	padding:10px 15px;
	color:#fff;
	background:#2b4c24;
	border-radius:5px;
	font-family: 'Playfair Display', serif;
	font-size:20px;	
	font-weight:bold;
}
.marginBottom20 {
	margin-bottom:20px;
}
.tnBenefitsWrapper {
	padding:20px;
	background:#dcdcdc;
}
.tnBenefitsWrapper ol {
	margin:0;
	padding:0 0 0 15px;
}
.tnBenefitsWrapper ol li:marker {
	font-size:18px;
}
.tnQuote {
	text-align:center;
	box-shadow: 1px 0px 15px #888;
	padding:20px;
	min-width:330px;
	margin:0 auto;
	min-height:530px;
}
.ceoImg {
	padding:25px;
}
.tnQuote img {
	width:194px;
	height:auto;
	padding:20px;
}
.newsmedia {
	text-align:center;	
}
.newsmediaItemImg {
	width:250px;
	height:80px;	
	margin:20px auto;
}
.newsmedia-title {
	font-size:20px;
	padding:20px;
	font-weight:400;	
	width:80%;
	margin:0 auto;
	min-height:60px;
}
.newsmedia-text {
	width:80%;
	margin:0 auto;
}
.newsmedia-carousel .owl-nav, .newsmedia-carousel .owl-dots {
	display:block;
}
.newsmedia-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width:100%;
}
.newsmedia-carousel .owl-nav button.owl-next {
	right:0;
	width:25px!important;
	height:14px!important;
	background: url('../img/U+2192.png') no-repeat;
	position:absolute;
}
.newsmedia-carousel .owl-nav button.owl-prev {
	left:0;
	width:24px!important;
	height:14px!important;
	background: url('../img/U+2190.png') no-repeat;
}
.newsmedia-carousel .owl-nav button.owl-next span,
.newsmedia-carousel .owl-nav button.owl-orev span {
	display:none;
}
.newsmedia-carousel .owl-dots {
	position:absolute;
	left:50%;
	transform:translateX(-50%);
}
.newsmedia-carousel button.owl-dot {
	width:10px;
	height:10px;
	background:#8b8b8b;
	margin:3px;
}
.newsmedia-carousel button.owl-dot.active {
	background:#000;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
	.introTextSec {
		background-color:rgba(255,255,255,0.6);
	}
	.introTextSec {
		padding:15px 0px 25px;
	}
	.tnBannerRow h1, .tnBannerRow p {
		width:100%;
	}
}
@media only screen and (max-width: 768px) {
	.introTextSec {
		background-color:rgba(255,255,255,0.5);
	}
	.introTextSec {
		padding:15px 0px 25px;
	}
	.tnLogo {
		width:286px;
		margin:0 auto;
	}
	.tpButton {
		text-align:center;
	}
	.tnBannerRow h1, .tnBannerRow p {
		width:94%;
		margin:0 auto;
		text-align:center;
	}
}
/*19082020*/
.mainPt {
	padding:0;
	margin:30px 0 0 20px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:stretch;
}
ul.mainPt li {
	list-style:none;
	margin:0 0 15px 0;
}
/*Timeline*/
* {
  box-sizing: border-box;
}

.timelineWrapper {
  background-color: #fff;  
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #231f20;
  top: 0;
  bottom: 0;
  left: 0%;
  margin-left: -3px;
}

/* Container around content */
.tlContainer {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
}

/* The circles on the timeline */
.tlContainer::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: -17px;
  background-color: #231f20;
  /*border: 4px solid #FF9F55;*/
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.tlLeft {
  left: 0;
}

/* Place the container to the right */
.tlRight {
  left: 0%;
}

/* Add arrows to the left container (pointing right) */
.tlLeft::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #dedede;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #dedede;
}

/* Add arrows to the right container (pointing left) */
.tlRight::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #dedede;
  border-width: 10px 10px 10px 0;
  border-color: transparent #dedede transparent transparent;
}

/* Fix the circle for containers on the right side */
.tlRight::after {
  left: -9px;
}

/* The actual content */
.tlContent {
  padding: 20px 30px;
  background-color: #dedede;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .tlContainer {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .tlContainer::before {
  left: 60px;
  border: medium solid #dedede;
  border-width: 10px 10px 10px 0;
  border-color: transparent #dedede transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .tlLeft::after, .tlRight::after {
  left: 22px;
  }
  
  /* Make all right containers behave like the left ones */
  .tlRight {
  left: 0%;
  }
}
.solutionSection {
	padding:15px 0;
	border-bottom:solid 1px #dedede;
}
.sol-section-content ul {
	padding:0;
	margin:0 0 0 15px;
}
.sol-section-header h3 {
	font-weight:bold;
}
.solutionPoints li {
	padding:0 0 7px 0;
}


/*29122020*/
.headerNewClass {
	width:70%;
	margin:30px auto!important;
	text-align:center;
	font-size:32px;
	color:#000;
}
.m-e-solution-ulwrapper {
	display:flex;
	align-items:center;
	justify-content:center;
	padding:20px;
}
.m-e-solution-ul {
	padding:0;
	margin:0px auto 15px;
	width:100%;
}
.m-e-solution-ul li {
	padding:20px 15px 0;
	font-size:24px;
}

.mobweblistulwrapper {
	padding:0;
}
.mobweblist {
	width:90%;
	margin:10px auto;	
}
.mobweblist li{
	font-size:20px!important;
	padding:0 15px 10px;
}

.dataTypesContainer {
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.dataTypesItemWrap {
	flex:1;
}
.dataTypesItem {
	text-align:center;
	padding:15px;
}

@media only screen and (max-width: 600px) {
	.headerNewClass {
		width:100%;
		margin:15px 0!important;
		text-align:left;
		font-size:24px!important;
		color:#000;
		display:block;
	}
	.m-e-solution-ul li {		
		font-size:16px;
	}
	.mobweblist li{
		font-size:16px!important;		
	}
	.dataTypesContainer {
		flex-direction:column;
	}
}/*28-01-2021*/.menuNew > li > a {	padding:16px 12px!important;}.liClr { color:#0072b1;}.fbClr { color:#3b5998;}.trClr { color:#00acee;}.ytClr { color:#ff0000;}.socialMediaIcnsMob {	display:flex;}/*02022021*/.dataMetrics ul {	margin:20px 0 0 0;	padding:0;	list-style:none;}.dataMetrics ul li h4 {	font-size:24px;		color:#164a41;	}.dataMetrics ul li {	padding-bottom:15px;	}.dataMetrics ul li:last-child {	padding-bottom:0px;}.dataMetrics ul li h4 span {	display:block;	font-family: 'oswaldregular';	font-size:32px;	font-weight:bold;	}

/*29012021*/
.staticBg {		
	background:url('../img/intro-carousel/1-intro-bg.svg') no-repeat scroll left top;	
	/*background:url('../img/intro-carousel/intro-bg.jpg') no-repeat;*/
}
.slider21Item {		
	position:relative;
	padding:30px;
	display:flex;
}
.slide21Desc {
	max-width:700px;
}
.slide21Desc h2 {
	color:#fff;
	font-size:36px;
	font-weight:bold;
}
.slide21Desc h4 {
	color:#123a3e;
	color:#fff;
	font-size:20px;
	line-height: 28px;
}
.slide21Image {	
	flex:1;
}
.slider21ItemBtn {
	padding:10px;
	background:#123a3e;	
	color:#fff;
	border-radius:4px;
}
@media only screen and (max-width: 700px) {
	.slider21Item {
		min-height:50vh;
		flex-direction:column;
	}
}
.m-e-solution-ul-new li {
	font-size:16px;
}

/*05/08/2021*/
.nav > li > a {
	padding: 10px 8px;
}