/*line fixed menu out of the screen*/
html,body
{
      width: 100%;
      margin: 0px;
      padding: 0px;
      overflow-x: hidden; 
    /*padding:20px; this makes 20px gap between the nav bar and carousel*/
    
      color: white;
      background-color:white;
      font-family: poppins;
}


/*navbar*/
.navbar-wrapper
{
    position: fixed;/*this says navbar positions from right top and left and it will make navbar to fix*/
    top: 0;
    right:0;
    left: 0;
    z-index: 20;/*navabar should be always on top*/
    
}
/*makes navbar transparent*/
.navbar-inverse
{
  /*background:transparent;*/
    background-color:#078F5F; 
  background-image:none;
  border-color:transparent;
  box-shadow:none;
}

/*code makes when user scrolls down navbar change to green*/
.navbar.solid
{
  background-color: #078F5F ;
  transition: background-color 1s ease 0s;
  box-shadow: 0 0 4px grey;
}
.navbar .navbar-collapse {
  text-align: center;
  
}




/*end*/
.navbar-brand img
{
    height:40px;
    
    width: 30%;
}

.navbar-logo img
    {
        padding: 10px;
        opacity: 5;
        width: 200px;
        height: 60px;
        padding-left:0;
        margin-top: -5px;
    }

.navbar-inverse .navbar-nav>li>a
{
    font-family: poppins;
    color:white;
    font-weight: bold;
    padding:20px;/*made navbar texts come down*/
}

.navbar-inverse .navbar-nav>li>a:hover
{
	text-decoration:none;
    background-color: #078F5F ;
  
   
}

.navbar-wrapper> .container
{
    padding-right: 0;
    padding-left: 0;
}

.navbar-wrapper .navbar .container
{/*this line says wen you wanna apply styles to all the class */
    width:auto;
}/*when minimize the screen it makes letters to bcme small*/

.navbar-inverse .navbar-toggle 
{/*menu button*/
    background-color:black;
}
.navbar-inverse .navbar-toggle:hover {
    background-color:#078F5F;
}
;.navbar-inverse .navbar-brand{
        font-size:30px;
        padding:20px 15px;
}

/*gives underline on navbar when hover*/
.navbar-nav li > a:after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: white;
    transition: width .2s;
}
.navbar-nav li > a:hover::after {
    width: 100%;
    //transition: width .2s;
}


/*carousel css*/
.banner
{
      max-width: 100%;
      height: 100vh;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;/*parallex effect, dont add this line in mobile device*/
}
/*makes carousel image black*/



/*carousel smooth code
.carousel-inner>.item {
-webkit-transition: -webkit-transform 1.5s ease-in-out !important;
-o-transition: -o-transform 1.5s ease-in-out !important;
transition: transform 1.5s ease-in-out !important;
}*/





 .banner::before 
{
      content: '';
      /*background-color: rgba(0, 0, 0, 0.3);*/ 
        
      
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      background-attachment: fixed;/*parallex effect*/
}


.banner background img {
  max-width: 100%;
}
#carousel-example-generic .carousel-fade {
  overflow: hidden;
}

#carousel-example-generic .carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

#carousel-example-generic .carousel-fade .carousel-inner .carousel-item,
 {
  opacity: 0;
      
}


#carousel-example-generic .carousel-fade .carousel-inner .active,
 {
  opacity: 1;
  transition: 0.5s;
}
.carousel-caption
{
   padding-bottom:250px;
    font-family: poppins;
}
.carousel-caption h6
{
    font-size: 60px;
    text-transform:uppercase;
    font-weight: bold;
    
}
.carousel-caption h2{
    font-size: 60px;
    text-transform:uppercase;
    font-weight: bold;
    
}
.carousel-caption h3
{
    font-size: 30px;
    font-family: poppins;
    color: white;
}
 
.carousel-caption h6 span
{
    color:white;
}
.carousel-caption h2 span
{
    color:#078F5F;
}.carousel-caption h3 span
{
    color:#078F5F;
    font-weight: bold;
}
.carousel-control.right
{
    background-image: none;
    
}
.carousel-control.left{
    background-image: none;
    
}



.carousel-indicators .active
{/*slider dots*/
    background-color:white;
    border-color:white;
}

/*scroll*/
.circle
{
    position: absolute;
    top: 70%;
    left:50%;
    transform: translate(-50%,-50%);
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 70px;
    text-align: center;
    text-align: 110px;
    font-size: 60px;
    overflow: hidden;
    margin-top: 50px;
   
   
}
.circle:hover
{
  border: 2px solid #078F5F;  
}
.circle .fa
{
    color:white;
    margin: 0;
    padding: 0;
    animation: animate 1s linear infinite;
}
.circle .fa:hover{
   color:#078F5F; 
}
@keyframes animate
{
    0%{
        transform: translateY(-50px);
        text-shadow: 0 50px 0 #fff;
    } 
    20%{
        transform: translateY(0px);
         text-shadow: 0 10px 0 #fff;
    } 
    
    40%{
        transform: translateY(0px);
         text-shadow: 0 -10px 0 #fff;
    } 

    60%{
        transform: translateY(0px);
         text-shadow: 0 0px 0 #fff;
    } 
    
    100%{
        transform: translateY(100px);
         text-shadow: 0 -50px 0 #fff;
    } 
    
    
}

/*page scroll option code*/
.circle:before
{
    content: "SCROLL DOWN";
    position: absolute;
    margin-top: 20px;
    color:#fff;
    font-family: poppins;
    font-size: 7px;
    left: 5px;
    font-weight: bold;
    
}

/*about section*/
#about 
{
    padding-top: 60px;
    /*padding-bottom:10px;*/
}
section h1.section-heading
{
    font-size: 40px;
    font-weight:300;
}
section h1.section-heading::after
{
    content:'';
    background:#078F5F;
    display: block;
    height: 3px;
    width: 120px;
    margin: 20px auto 5px;
}
.col-sm-8 p
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: poppins;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: -100px;
    text-align: justify-all;
        /*text alignment*/
}
    
}

/*makes image round*/
.image-wrap
{
    width:100%; 
    position: relative;
}
.img-wrap img
{
    width:300px;
    height: 300px;
    display: block;
    
    margin: auto;  
    border-radius:50%;
  box-shadow:0 0 10px #078F5F;
    position: relative;
    text-align: justify;/*text alignment*/
    border-radius: 100%;
border: 5px solid #078F5F;
}
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
/*makes text alignment*/
@media screen and (min-width: 48em){
    .col-sm-8 p{
        text-align: justify;
    }
}


/*about kratomsection*/
#Kratom 
{
    padding-top: 60px;
    padding-bottom:40px;
}
section h1.section-heading
{
    font-size: 40px;
    font-weight:300;
}
section h1.section-heading::after
{
    content:'';
    background:#078F5F;
    display: block;
    height: 3px;
    width: 120px;
    margin: 20px auto 5px;
}
.col-sm-8 p
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: poppins;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: -100px;
    text-align: justify-all;
        /*text alignment*/
}




/*makes text alignment*/
@media screen and (min-width: 48em){
    .col-sm-8 p{
        text-align: justify;
    }
}




/*products*/
#portfolio
{
    padding-top: 60px;
    padding-bottom: 50px;
    
}
section h6.section-heading 
{
    font-size: 40px;
    font-weight:300;
    
    padding-bottom: 20px;
} 

section h6.section-heading::after
{
    content:'';
    background: #078F5F;
    display: block;
    height: 3px;
    width: 120px;
    margin: 20px auto 5px;
}

.text-muted {
    color: #333;
    font-family: poppins;
}
#slider
{
    padding-top: 20px;
}
.content-area
{
    position: relative;
     
}

.custom-overlay
{
    position: absolute;
    top:35px;
    left:0;
    right: 0;
    text-align: center;
    background-color: white;
    opacity: 0;
    transition: all 400ms ease-in-out;
    height: 70%;
    text-align: justify;/*text alignment*/
}
.custom-overlay:hover
{
    opacity: 1;
}
h3{
    font-size: 15px;
    font-family: poppins;
    color: black;
    font-weight: bold;
}
.custom-overlay h4
{
    position: relative;
    font-size: 15px;
    font-family: poppins;
    color: #000;
    
    
}
.content-text
{
    position: absolute;
    top: 50%;
    left:10px;
    right: 10px;
    transform: translateY(-50%);
}

.owl-dots
{
    text-align: center;
    margin-top: 3%;
}
.owl-dot
{
    display: inline-block;
    height: 6px !important;
    width: 60px !important;
    background-color: lightgrey!important;
    opacity: 0.8;
    margin: 0 5px;
}
.owl-dot.active
{
    background-color:#078F5F!important;
}

/*contact*/
section#contact 
{
    background-color:#f7f7f7;
    padding-top: 50px;
    padding-bottom: 50px;

}
section#contact .section-heading 
{
   font-size: 40px;
   font-weight:300;
   color: black;
}
section#contact .section-heading::after
{
    content:'';
    background: #078F5F;
    display: block;
    height: 3px;
    width: 160px;
    margin: 20px auto 5px;
}

#contact .contact-info 
{
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i 
{
    font-size: 30px;
    display: inline-block;
    
    color:#078F5F;
}

#contact .contact-info address,
#contact .contact-info p
{
    margin-bottom: 0;
    color: #000;
    font-size: 20px;
}

#contact .contact-info h3
{
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #999;
}

#contact .contact-info a
{
      color: #000;
    text-decoration: none;
    
}


#contact .contact-address,
#contact .contact-phone,
#contact .contact-email
{
  margin-bottom: 20px;
}

section#contact .form-group
{
  margin-bottom: 15px;
  margin-top: 10px;
  
}
section#contact .form-group input,
section#contact .form-group textarea 
{
  padding: 20px;
}
section#contact .form-group input.form-control
{
  height: 50px;
}
section#contact .form-group textarea.form-control 
{
  height: 180px;
}

section#contact ::-webkit-input-placeholder 
{
  
  font-weight: 500;
  
}
section#contact :-moz-placeholder 
{
  /* Firefox 18- */
 
  font-weight: 500;
 
}
section#contact ::-moz-placeholder 
{
  /* Firefox 19+ */
  
  
  font-weight: 500;
  
}
section#contact :-ms-input-placeholder
{

  font-weight: 500;
  
}

section#contact .text-danger 
{
  color: #e74c3c;
}
section#contact .btn{
    color: white;
    background-color: #078F5F;
    border-color:#078F5F ;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    font-size: 13px;
    padding: 10px 20px;
}
section#contact .btn:hover{
    background-color:#078F5F;
    border-color: #078F5F;
}

/*footer*/
.footer-basic {
  padding:10px 0;
  background-color:#078F5F;
  color:white;
}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  margin-bottom:0;
}

.footer-basic li {
  padding:0 10px;
}

.footer-basic ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.8;
}

.footer-basic ul a:hover {
  opacity:1;
}


.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:13px;
  color:#aaa;
  margin-bottom:0;
}


/*sticky icons*/

.sticky-icon  {
	z-index:1;
	position:fixed;
	top:53%;/*icons uo and down code*/
	right:0%;
	width:220px;
	display:flex;
	flex-direction:column;} 

  .sticky-icon a  {
	transform:translate(160px,0px);
	border-radius:50px 0px 0px 50px;
	text-align:left;
	margin:2px;
	text-decoration:none;
	
	padding:10px;
	font-size:15px;
	font-family:'Oswald', sans-serif;
	transition:all 0.8s;}

.sticky-icon a:hover  {
	color:#FFF;
	transform:translate(0px,0px);}	

.sticky-icon a:hover i  {
	transform:rotate(360deg);}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/

.Facebook  {
	background-color:#3b5998;
	color:#FFF;}
	
.Whatsapp  {
	background-color:#078F5F;
	color:#FFF;}
	
.Twitter  {
	background-color:#00acee ;
	color:#FFF;}

.Linked {
	background-color:#0072b1;
	color:#FFF;}
	
.Instagram  {
	background-color:deeppink;
	color:#FFF;}
							
.sticky-icon a i {
	background-color:#FFF;
	height:40px;
	width:40px;
	color:#000;
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;}

.sticky-icon a i.fa-facebook-f  {
	background-color:#FFF;
	color:#3b5998;}
	

	
.sticky-icon a i.fa-instagram  {
	background-color:#FFF;
	color:deeppink;}
	
.sticky-icon a i.fa-linkedinFw  {
	background-color:#FFF;
	color:#0072b1;}
	
.sticky-icon a i.fa-whatsapp  {
	background-color:#FFF;
	color:#078F5F;}
	
.sticky-icon a i.fa-twitter  {
	background-color:#FFF;
	color:#00acee ;}


#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
    
    
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			



/*responsive css*/

/* Media Query for Mobile Devices */ 
@media (max-width: 480px) { 
  .navbar-logo img 
    {
        height: 50px;
        margin-top: 2px;
        width: 150px;
        margin-left: 5px;
    }
    .col-sm-8 p
    {
        font-size: 18px;
         text-align: justify-all;
        letter-spacing:normal;
        
    }
    .circle
    {
        display: none;
    }

    .col-sm-8 img
    {
      display: none;
    }
    .navbar-collapse
    {
        background: rgba(0,0,0,0.5);
    }
    .carousel-caption
    {
        margin-bottom:20%; 
    }

    .carousel-caption h6
    {
        font-size:20px;
    }
    .carousel-caption h2
    {
        font-size:20px;
    }

    .carousel-caption h3
    {
        font-size:15px;
        color: white;
    }
    
     .custom-overlay
    {
  
        top:25px; 
   
    }
    .custom-overlay h4:before
    {
        content: ' - ';
        padding-left: 5px;
    
    }

    .custom-overlay h4:after
    {
        content: ' -';
        padding-left: 5px;
    }
    
    #contact
    {
        padding-top:30px;
    }
    .col-sm-8 p{
        text-align: justify;
    }
     .img-wrap img
    {
       min-width: 30%;
       
     }
    /*hide about iomage in mobile */
    .img-wrap img{
       margin-top: 130px ;
       margin-bottom:-50px;
    }
    
    .navbar-nav li > a:hover::after 
    {
        width: 30%;
        //transition: width .1s;
        margin-left: 140px;
    }
    .banner
    {
     max-width: 100%;
        height:40vh;
    
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: inherit;
    }
    
    .carousel-caption
    {
        padding-bottom: 10px;
    }
    .navbar-inverse .navbar-nav>li>a
{
  
    padding:10px;/*made navbar texts come down*/
}
    
     #about 
{
    padding-top: 40px;
    padding-bottom:50px;
}
    /*makes navbar transparent*/

}



/* Media Query for low resolution  Tablets, Ipads */ 
@media (min-width: 481px) and (max-width: 768px) 
{ 
    .navbar-inverse .navbar-brand
    {
        font-size:30px;
        padding:20px 25px;
    }
    .container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header{
        max-height: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    
    .circle{
        display: none;
    }
    .col-sm-8 img
    {
      display: none;
    }
    .carousel-caption
    {
        margin-bottom: 30%;
    }
    .carousel-caption h6
    {
        font-size:50px;
    }
        .carousel-caption h2
    {
        font-size:50px;
        
    }
    #contact
    {
        padding-top:50px;
    }
     .img-wrap img
    {
       min-width: 70%;
       margin-top:20px;
    }
    .float
    {
        width:80px;
	    height:80px;
        font-size:60px;
   }
    .img-wrap img{
       margin-top: 130px ;
       margin-bottom:-50px;
      
    }
    
    
}
    
@media (min-width: 768px)
{
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email
    {
        padding: 20px 0;
        padding-top: 10px;
    }

    #contact .contact-phone
    {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
    
    
    
}



/* Media Query for Tablets Ipads portrait mode */ 
@media (min-width: 769px) and (max-width: 1024px){
    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form
    .navbar-collapse{
        margin: 20px;
    }
    .navbar-inverse .navbar-brand
    {
        font-size:30px;
        padding:40px 25px;
    }
    .navbar-inverse .navbar-nav>li>a{
        font-size: 15px;
    }
    {
        background: rgba(0,0,0,0.5);
    }
    .row .fa-angle-up 
    {
        margin-right: 330px;
    }
    .carousel-caption
    {
        margin-bottom: 40%;
    }
    .carousel-caption h6
    {
        font-size:60px;
    }
        .carousel-caption h2
    {
        font-size:60px;
        
    } .carousel-caption h3
    {
        font-size:40px;
      
    }
    .circle{
        display:none;
    }
    section h1.section-heading{
        padding-top: 30px;
    }
    section h3.section-heading{
         padding-top: 30px;
}
    .float
    {
	    width:100px;
	    height:100px;
        font-size:70px;
   }

}

/*bubble loader*/

#loader-wrapper
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader 
{
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: white;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

    #loader:before 
{
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #078F5F;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
 }

    #loader:after
{
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

    @-webkit-keyframes spin 
{
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
             }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
             }
}
    @keyframes spin 
{
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
             }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
             }
}

    #loader-wrapper .loader-section 
{
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #082E3F;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

    #loader-wrapper .loader-section.section-left 
{
        left: 0;
}

    #loader-wrapper .loader-section.section-right
{
        right: 0;
}

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left 
{
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

    .loaded #loader-wrapper .loader-section.section-right 
{
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
    
    .loaded #loader 
{
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
}
    .loaded #loader-wrapper 
{
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
 }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper
{
        display: none;
}
    .no-js h1 
{
        color: #222222;
 }




