@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: purple; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #cb7cf2; 
}
body{
    font-family: 'Poppins' , sans-serif;
}
p{
    font-size: 12px;
}
.bg-green{
    background-color: #00c986 !important;
}
.form-control {
    height: 36px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}


.form-control:focus,.form-control:active {
    border-color: #01d28e !important;
}
.form-label {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.btn.btn-green {
    background: #01d28e !important;
    border-color: #01d28e !important;
    color: #fff;
    width: 100px;
    border-radius: 0!important;
    
}
.btn.btn-primary:hover{
    background-color: #28a745!important;
}

.bi{
    font-size: 50px;
}
@media only screen and (max-width: 600px) {
  .container{
      width: 100%!important;
      padding-bottom: 207px!important;
  }
}
/* navbar style */
.logo img {
	height: 50px;
	width: 80px;
  }
  .navbar {
  padding: 30px;
	background-color: #75975e;
  height: auto;

  }
  .navbar a {
	color: #75975e;
  }
  .navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  /* Dropdown menu styles */
  .navbar a:not(.logo):hover {
	background-color: #ddd;
	color: black;
  }
  
  .dropdown-content {
	background-color: #75975e;
  }
  
  .dropdown-content a {
	color: black;
  }
  
  .dropdown-content a:hover {
	background-color: #c9c9c9;
	color: black;
  }
/* footer section */
  footer {
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	background: #87ab69;
	height: auto;
	font-family: "Open Sans";
	color: #fff;
	width: 100%;
  }
  
  .footer-content {
	max-width: 1170px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
  font-family: 'Poppins' , sans-serif;
  }
  
  .footer-content h3 {
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 3rem;
  }
  
  .footer-content p {
	max-width: 500px;
	margin: 10px auto;
	line-height: 28px;
	font-size: 14px;
  }
  
  /* Social links in the footer */
  .socials {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem 0 3rem 0;
  }
  
  .socials li {
	margin: 0 10px;
  }
  
  .socials a {
	text-decoration: none;
	color: #fff;
  }
  
  .socials a i {
	font-size: 1.1rem;
	transition: color 0.4s ease;
  }
  
  .socials a:hover i {
	color: #c5b5b5;
  }
  
  /* Footer bottom section */
  .footer-bottom {
	background: #648354;
	width: 100%;
	padding: 20px 0;
	text-align: center;
  }
  
  .footer-bottom p {
	font-size: 14px;
	word-spacing: 2px;
	text-transform: capitalize;
  }
  
  .footer-bottom span {
	text-transform: uppercase;
	opacity: 0.4;
	font-weight: 200;
  }

.button{
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	margin-top: 10px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.button:hover{
	background-color: #0056b3;
	color: #fff;
	transform: scale(1.05);
}