body {
}



.clearout {
    height: 20px;
    clear: both;
}

#flexiselDemo1, #flexiselDemo2, #flexiselDemo3 {
    display: none;
}

.nbs-flexisel-container {
    position: relative;
    max-width: 100%;
}

.nbs-flexisel-ul {
    position: relative;
    width: 99999px;
    /*  margin: 0px; */
    padding: 0px;
    list-style-type: none;
    text-align: center;
    
    overflow: hidden;
    min-height: 91.2px;
}

.nbs-flexisel-inner {
    overflow: hidden;
    float: left;
    width: 100%;
}

.nbs-flexisel-item {
    float: left;
    margin: 0px;
    margin-top: 10px;
    padding: 0px;
    cursor: pointer;
    position: relative;
    line-height: 0px;
}

    .nbs-flexisel-item img {
        width: 100%;
        cursor: pointer;
        position: relative;
        margin-top: -10px;
        margin-bottom: 10px;
        max-width: 150px;
        max-height: 70px;
    }

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    width: 24px;
    height: 28px;
    position: absolute;
    cursor: pointer;
    z-index: 100;
    opacity: 0.5;
}

.nbs-flexisel-nav-left {
    left: -15px;
    background: url(../images/button-previous.png) no-repeat;
}

.nbs-flexisel-nav-right {
        right: -15px;
    background: url(../images/button-next.png) no-repeat;
}

@media screen (max-width: 760px) {
   .nbs-flexisel-nav-left {
        left: 10px !important;
    }

    .nbs-flexisel-nav-right {
        right: 5px !important;
    }
}
@media screen (min-width: 760px) and (max-width: 1100px) {
   .nbs-flexisel-nav-left {
        left: -30px !important;
    }

    .nbs-flexisel-nav-right {
        right: -30px !important;
    }
}


#emailForm {
  position: relative;
}

#emailForm input[type=email],
#emailForm input[type=text] {
  background: #f2f2f2;
  font-weight: 600;
  border-radius: 0;
  width: 250px;
}
#emailForm button  {
  font-weight: 600;
  background: #1d88ca;
  border-color: #1d88ca;
  border-radius: 0;
  text-transform: uppercase;
}
#emailForm .form-result {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  
  padding: 10px 0;
  font-size: 16px;
  
  position: absolute;
  left: 0;
  top: 0;
}
#emailForm.sent .form-result {
  display: block;
  opacity: 1; 
  z-index: 1;
}

#emailForm .form-group {
  position: relative;
  z-index: 0;
  transition: opacity 0.3s ease;
}
#emailForm.sent .form-group {
  opacity: 0;
}

#emailForm input[type=email]:focus:placeholder-shown {
  color: #000;
}
#emailForm input[type=email]:focus::-webkit-input-placeholder {
  color: #000;
}
#emailForm input[type=email]:focus:-moz-placeholder {
  color: #000;
}
#emailForm input[type=email]:focus::-moz-placeholder {
  color: #000;
}
#emailForm input[type=email]:focus:-ms-input-placeholder {
  color: #000;
}
#emailForm input[type=text]:focus:placeholder-shown {
  color: #000;
}
#emailForm input[type=text]:focus::-webkit-input-placeholder {
  color: #000;
}
#emailForm input[type=text]:focus:-moz-placeholder {
  color: #000;
}
#emailForm input[type=text]:focus::-moz-placeholder {
  color: #000;
}
#emailForm input[type=text]:focus:-ms-input-placeholder {
  color: #000;
}
