

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Nunito:wght@200;300;400;500;600;700;900&family=Playfair+Display+SC:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&display=swap');

body {
  font-family: 'Merriweather', serif;
  color: #444444;
}

a {
  color: #056238;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #056238;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
  animation:none;
}
.back-to-top:hover {
  background: #64b748;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.back-to-top:hover i {
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background:rgba(0,0,0,0.9);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #056238;
  border-top-color: #056238;
  border-bottom-color: #64b748;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background:#222;
  padding: 15px 0;
  height:21vh;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.9);
}
#header.header-scrolled, #header.header-inner-pages {
  background:rgba(0,0,0,0.9);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.9);
}
#header .logo {
  font-size: 33px;
  margin: 0;
  color:#fff;
  padding: 0;
  font-weight:bold;
  font-family: 'Merienda One', cursive;
  margin-right:20px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
  font-family: 'Merienda One', cursive;
}
#header .logo a span {
  color: #056238;
}
#header .logo img {
  height: 110px;
}
@media (max-width:768px){
   #header .logo img {
  height: 80px;
} 
#header .logo{
    font-size:22px;
}
#header{
    height:15vh;
}
}



/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #056238;
}
.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}
@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  font-weight: 600;
  color: #056238;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #64b748;
  letter-spacing:2px;
  
}
.navbar .dropdown .active{
    color:#64b748;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,0.6);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color:#64b748;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color:#64b748;
  color:#fff;
  letter-spacing:2px;
  
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #64b748;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #222;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #056238;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #64b748;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #64b748;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #fff;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background-color: #056238;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height:75vh;
  background-image:url("assets/img/cocoa-powder.jpeg");
  background-size: 100% 100%;
  background-position:center center;
  background-repeat:no-repeat;
  position: relative;
  margin-top:110px;
}
#hero:before {
  content: "";
  margin-top:30px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.carousel-control-prev-icon i{
    width:3rem;
    height:3rem;
    padding:10px;
    color:#fff;
    font-size:2rem;
    opacity:1;
    background:#056238;
}
.carousel-control-next-icon i{
    width:3rem;
    height:3rem;
    padding:10px;
    color:#fff;
    font-size:2rem;
    opacity:1;
    background:#056238;
}



#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    margin-top:-70px;
  }
  #hero h1 {
    font-size: 18px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #056238;
  text-align:center;
  font-family: 'Merriweather', serif;
}

.section-title p {
  margin: 0;
  margin-top:20px;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  font-family: 'Merriweather', serif;
  color: #64b748;
  text-align:center;
}
.section-title span{
    color:#056238;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
    margin-left:7rem;
}
.about .content{
    padding:0 100px;
    margin-top:40px;
}

 .about .container .row img{
       margin-left:50px; 
       margin-top:40px;
    }
.about .content h3 {
  font-weight: 700;
  color:#056238;
  text-align:center;
  font-size: 2rem;
  font-family: 'Merriweather', serif;
}
.about .content span {
  font-weight: 700;
  color:#64b748;
  text-align:center;
  font-size: 2rem;
  font-family: 'Merriweather', serif;
}

 .text_1 {
  animation: text1;
}

 .text_1 {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  animation-duration: 20s;
  animation-timing-function: steps(25, end);
  animation-iteration-count: infinite;
}
.text_1::after {
  content: "|";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}


@keyframes text1 {
  0%, 50%, 100% {
    width: 0;
  }
  10%, 40% {
    width: 14.6em;
  }
}

@keyframes caret {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }

}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 8px 26px;
  font-family: 'Merriweather', serif;
  font-size:15px;
  position: relative;
}
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #056238;
}
.about .content p{
font-family: 'Merriweather', serif;
 font-size:16px;
 text-align:justify;
 margin-top:40px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
 @media (max-width:768px){
 
     .about .content{
    padding:0px 10px;
    margin-right:5rem;
}
      
      .about .container .row img{
       margin:0px 10px; 
       height:150px;
       width:120px;
       left:10%;
       float:left;
    }
  }  

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}
.clients .container h1{
    color:#056238;
    text-align:center;
    font-size:1.5rem;
    margin-bottom:20px;
}
.clients .swiper-slide img {
  opacity: 1;
  transition: transform 0.3s;
}
.clients .swiper-slide img:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  transform:scale(1.2);
  
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #64b748;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #056238;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 2px solid #ebebeb;
  height:340px;
  width:340px;
  border-radius:10px;
  margin-left:40px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon img {
  height:220px;
  width:270px;
  border-radius:10px;
  margin-top:20px;
  margin-bottom:20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .icon-box h4 {
  color:  #056339;
  transition: ease-in-out 0.3s;
}
.services .icon-box a{
    background:#222;
    color:#64b748;
    font-weight:bold;
    height:4rem;
    width:16rem;
    font-size:10px;
    padding:10px 10px;
    border-radius:2px;
    margin-top:10px;
}

.services .icon-box a:hover{
    background:#64b748;
    color:#fff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
    background:#fff;
}
.contact .info-box {
  color: #666;
  box-shadow: 0 0 30px 5,rgba(255, 255, 255, 0.6);
  padding: 20px;
  height:26vh;
  border:.5px dashed #64b748;
}
.contact .info-box i {
  font-size: 32px;
  color:#64b748;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #056238;
  float: left;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #056238;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  color:#64b748;
  margin: 0 0 0 68px;
}
.contact .info-box p:hover{
    color:#056238;
}
.contact .contact-form {
  width: 100%;
  border:.5px solid #64b748;
  box-shadow: 0 0 24px 0 #64b748;
  padding: 30px;
  background: #ffffff00;
}
.contact .contact-form .form-group {
  padding-bottom: 8px;
}
.contact .contact-form input[type=text], .contact .contact-form input[type=email], .contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background:#ffffff00;
  color:#fff;
  border:.5px solid #056238;
  border-radius:10px;
}
.contact .contact-form input[type=text]:focus, .contact .contact-form input[type=email]:focus, .contact .contact-form textarea:focus{
    color:#fff;
}
.contact .contact-form input[type=text], .contact .contact-form input[type=email] {
  height: 44px;
}
.contact .contact-form textarea {
  padding: 10px 12px;
}
.contact .contact-form input[type=submit] {
  background: #056238;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
  margin-left:45%;
}
.contact .contact-form input[type=submit]:hover {
  background: #64b748;
  color:#fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #056238;
  min-height: 40px;
  margin-top: 130px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color:#fff;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  color:#fff;
  margin: 0;
}
.breadcrumbs ol a{
    color:#64b748;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
  color:#fff;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

@media (max-width:768px){
  .breadcrumbs {
  padding: 15px 0;
  background: #056238;
  min-height: 40px;
  margin-top: 110px;
}  
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111;
  padding: 0 0 30px 0;
  min-height:40px;
  font-size: 10px;
  color:#fff;
  
}
#footer .footer-top {
  background: #222;
  border-top: .2px solid #64b748;
  border-bottom: .2px solid #64b748;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info img{
    height:50px;
}
#footer .footer-top .footer-info a{
    color:#fff;
}
#footer .footer-top .footer-info i{
    color:#64b748;
    margin-right:5px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: #fff;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Merriweather', serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #056238;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #64b748;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #64b748;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #64b748;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  font-size:14px;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #64b748;
  letter-spacing:2px;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size:12px;
  color:#fff;
}

#footer .copyright img{
    height:50px;
    margin-left:8px;
}

#footer .credits {
  padding-top: 10px;
  font-size:10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a{
    color:#056238;
}

#footer .credits a:hover{
    color:#64b748;
}
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  float:right;
  left:95%;
  border-radius:10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 5px 12px;
  margin:10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 30px;
  border-radius:50%;
  text-shadow: 2px 2px 4px #000000;
  transition: transform .7s ease-in-out;
}

/* Style the social media icons with color, if you want */


.facebook {
  background: #00008B;
  color: white;
}

.instagram{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
  color: white;
}
.twitter{
  background: #00BFFF;
  color: white;
}
.whatsapp{
  background:#2BB741;
  color: white;
}

.linkedin{
  background: #0e76a8;
  color: white;
}
.call-btn{
  background:#efbf1b;
  color: white;
}


.facebook:hover{
  background:#ffffff00;
  color: #00008B;
  font-weight:900;
  text-shadow: 2px 2px 2px #00008B;
  transform: rotate(360deg);

}

.instagram:hover{
background:#ffffff00;
color:#E1306C;
font-weight:900;
text-shadow: 2px 2px 2px #E1306C;
transform: rotate(360deg);

}

.twitter:hover{
  background:#ffffff00 ;
  color: #00BFFF;
  font-weight:900;
  text-shadow: 2px 2px 2px #00BFFF;
  transform: rotate(360deg);

}

.whatsapp:hover{
  background:#ffffff00 ;
  color: #2BB741;
  font-weight:900;
  text-shadow: 2px 2px 2px #2BB741;
  transform: rotate(360deg);

}

.linkedin:hover{
  background:#ffffff00 ;
  color: #0e76a8;
  font-weight:900;
  text-shadow: 2px 2px 2px #0e76a8;
  transform: rotate(360deg);

}
.call-btn:hover{
  background:#ffffff00 ;
  color: #efbf1b;
  font-weight:900;
  text-shadow: 2px 2px 2px #efbf1b;
  transform: rotate(360deg);

}
@media (max-width:768px){
    .icon-bar {
    left:80%;
}
}