/*!
 * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    width: 100%;
    height: 100%;
    /*font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    /*color: #fff;*/
    color: #000;
    /*background-color: #000;*/
    background-color: #fff;

    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 48px
}

h3 {
    text-transform: capitalize;
    font-size: 24px;
}

p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.5;
}

@media(min-width:767px) {
    p {
        margin: 0 0 35px;
        font-size: 18px;
        line-height: 1.6;
    }
}

a {
    /*color: #219ab3;*/
    color: black;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:focus {
    text-decoration: none;
    /*color: #219ab3;*/
    color: rgba(0,146,255,1);
}
a:hover {
    text-decoration: none;
    /*color: #11505d;*/
    color: rgba(0,146,255,1);
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    /*border-bottom: 1px solid rgba(255,255,255,.3);*/
    border-bottom: 1px solid rgba(0,0,0,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #000;
    /*background-color: #fff; */
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #fff;
}

.navbar-custom .nav li.active {
    outline: nonte;
    /*background-color: rgba(255,255,255,.3);*/
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a.active {
    outline: 0;
    background-color: rgba(255,255,255,0.3);
}

@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: #000;
        /*background-color: #fff*/
    }

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.3);
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #000;
    background: url(../img/backgrounds/bg-0.jpg) no-repeat 43% center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 48px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:767px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        /*font-size: 100px;*/
        font-size: 66px;
    }

    .intro .intro-body .intro-text {
        font-size: 25px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #000;
    border-radius: 35px;
    font-size: 40px;
    color: #000;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

@media(max-width:767px) {
    .btn-circle {
        width: 50px;
        height: 50px;
        padding: 3px 13px;
        font-size: 32px;
    }
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #000;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding: 100px 0px;
}

.contact-section {
    padding: 100px 0px 50px 0px;
}

#OEM-service {
    background-color: rgba(255,255,255,.5);

    font-size: 12px;
}

.service-section {
    width: 100%;
    /*padding: 50px 0;*/
    color: #000;
    /*background: url(../img/downloads-bg.jpg) no-repeat center center scroll;*/
    /*background-color: #000;*/
    /*background-color: rgba(255,255,255,.5);*/
    /*-webkit-background-size: cover;*/
    /*-moz-background-size: cover;*/
    /*background-size: cover;*/
    /*-o-background-size: cover;*/
}

.serviceDscr {
    display: none;
    text-align: center;
    padding-left: 6%;
    padding-right: 6%;
    font-size: 16px;
    font-weight: bold;
}

#serviceFormuDscrp {
    display: block;
}

.aboutDscr {
    text-align: center;
    padding-left: 6%;
    padding-right: 6%;
    font-size: 16px;
    font-weight: bold;
}

@media(min-width:767px){
    .aboutDscr {
        font-size: 20px;
        text-align: justify;
    }
    .serviceDscr {
        font-size: 20px;
        text-align: justify;
    }
}

.aboutDscr span {
    color: red;
    text-transform: capitalize;
}

.sectionFooter {
    text-align: justify;
    font-size: 10px;
    /*font-weight: lighter;*/
    position: relative;
    top: 40px
}

#map {
    width: 100%;
    height: 200px;
    /*margin-top: 100px;*/
}

@media(min-width:767px) {
    .content-section {/*
        padding-top: 250px;*/
        padding: 150px 0px;
    }

    .contact-section {
        padding: 250px 0px 100px 0px;
    }

    .download-section {
        /*padding: 100px 0;*/
    }

    #map {
        height: 400px;
        /*margin-top: 250px;*/
    }
}

.btn {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*.btn-default {
    border: 1px solid #219ab3;
    color: #219ab3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #219ab3;
    outline: 0;
    color: #000;
    background-color: #219ab3;
}*/

ul.banner-social-buttons {
    margin-top: 45px;
    margin-bottom: 20px;
}

/*@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 45px;
        margin-bottom: 20px;
    }
}*/

/*@media(max-width:767px) {*/
    ul.banner-social-buttons li {
        /*display: block;*/
        margin-bottom: 10px;
        padding: 0;
    }

    /*ul.banner-social-buttons li:last-child {*/
        /*margin-bottom: 0;*/
        /*margin-bottom: 20px;*/
    /*}*/
/*}*/

ul.banner-social-buttons li p{
    /*color:#219ab3;*/
    color:#000;
}

/*footer {
    padding: 50px 0;
}*/

footer p {
    margin: 0;
    font-size: 12px;
}

::-moz-selection {
    /*text-shadow: none;*/
    /*background: #fcfcfc;*/
    /*background: rgba(255,255,255,.2);*/
}

::selection {
    /*text-shadow: none;*/
    /*background: #fcfcfc;*/
    /*background: rgba(255,255,255,.2);*/
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}


.form{
  float:left;
  /*height:76%;*/
  height:520px;
  width:100%;
  box-sizing:border-box;
  padding-top:20px;
}

.textbox{
  height:50px;
  width:50%;
  border-radius:3px;
  border:rgba(0,0,0,.3) 2px solid;
  box-sizing:border-box;
  padding:10px;
  color:rgba(0,0,0,.3);
}

.textbox:focus{
    outline:none;
/*   border:rgba(24,149,215,1) 2px solid;
   color:rgba(24,149,215,1);*/
    border:rgba(0,146,255,1) 2px solid;
    color:rgba(0,146,255,1);
}

textarea{
    resize: none;
    width:50%;
    height:200px !important;
}

.singleInput{
    margin-bottom: 20px;
}

.hint{
    display: none
}

/*
@media(max-width:580px){
    ul.banner-social-buttons p{
        margin-bottom: 0px
    }
}*/

#background1{
    background: url(../img/backgrounds/bg-1.jpg) no-repeat 60% top scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/*div p:last-child{
    margin-bottom: 0px;
};*/

#shipping-export{
    background: url(../img/backgrounds/bg-2.jpg) no-repeat center top scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: auto cover;
    -o-background-size: cover;
}

.export-section img{
    width: 80%;
    padding: 75px 0px 50px 0px;
}

#dietary-supplement{
    background-color: rgba(255,255,255,0.3);
}

#background3{
    background: url(../img/backgrounds/bg-3.jpg) no-repeat 60% top scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#background4{
    background: url(../img/backgrounds/frank-mckenna-117069-unsplash.jpg) no-repeat 60% center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#background5{
    background: url(../img/backgrounds/bg-4.jpg) no-repeat center bottom scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#certification{
    background-color: rgba(255,255,255,0.5);
}

footer {
    background-color: black;
    color: white;
    padding: 16px 0px;
}

#OEM-service li,
#dietary-supplement li{
    width: 15%;
    vertical-align: top;
    padding: 2px;
}

.icon{
    width: 65%;
}

@media(max-width: 960px){
    #OEM-service li,
    #dietary-supplement li{
        width: 32%;
    }
    .icon{
        width: 40%;
    }
}

@media(max-width: 512px){
    #OEM-service li,
    #dietary-supplement li{
        width: 49%;
    }
    .icon{
        width: 35%;
    }
}

#production-capacities li{
    width: 13%;
    vertical-align: bottom;
}

#production-capacities li p{
    font-size: 12px;
}

.CapacitiesBar{
    width: 65%;
}

@media(max-width: 768px){
    #production-capacities li{
        width: 24%;
    }
    .CapacitiesBar{
        width: 40%;
    }
    #production-capacities li p{
        font-size: 10px;
    }
}

#certification li{
    width: 32%;
    margin-bottom: 7%
}

#certification img{
    width: 40%;
    vertical-align: bottom;
}

#icon-layout-2 img{
    margin-top: 35px;
    /*padding-top: 10%;*/
    width: 66%;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media(max-width: 768px){
    #certification li{
        width: 49%;
        margin-bottom: 15%
    }

    #certification img{
        width: 35%;
    }

    #icon-layout-2 img{
        margin-top: 0px;
        width: 60%;
        
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

}

.btn-default {
    font-size: 16px;
}

@media(max-width: 512px){
    #certification li{
        width: 75%;
        margin-bottom: 15%
    }

    #certification img{
        width: 35%;
    }
    h1, h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 20px;
    }
    .btn-default {
        font-size: 14px;
    }
    li p{
        font-size: 12px;
    }
}

/*.btn-default {
    border: 1px solid #000;
    color: #000;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid rgba(0,146,255,1);
    outline: 0;
    color: #000;
    background-color: rgba(0,146,255,1);
}*/

#contact{
/*    -webkit-user-select:all;
    -moz-user-select:all;
    -ms-user-select:all;
    user-select:all;*/
}

.contactBlock{
    display: inline-block;
    font-size: 16px;
}

.contactBlock a{
    font-size: 16px;
    vertical-align: top;
}

.leftBlock{
    /*text-align: right;*/
    /*margin-right: 100px;*/
}

.rightBlock{
    /*text-align: left;*/
}

#dietary-supplement .icon{
    background: url(../img/misc/product_icon_bg_grey.png);
    background-size: cover;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#dietary-supplement .icon:hover{
    background: url(../img/misc/product_icon_bg_blue.png);
    background-size: cover;
}

