@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	scroll-behavior: smooth;
	list-style: none;
	text-decoration: none;
}

.logo{
	color: #2C4007;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
	text-shadow: 0 1px 1px black;
}

.logo:hover{
	color: #2C4007;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
}

.nav{
	margin: 10px 0px;
}

.nav-link{
	color: #455E14 !important;
	font-weight: 700;
	text-align: center;
}

.nav-link:hover{
	color: white !important;
	background: #2C4007;
	border-radius: 10px;
	box-shadow: 0 1px 2px #313131;
}


.btn-primary{
	background:#83951C;
	font-weight: 700;
	border: none;
	box-shadow: 0 1px 2px #313131;
}

.btn-primary:hover{
	background: #2C4007;
	box-shadow: 0 3px 4px black;
}

.header{
	text-align: center;
	align-content: center;
	color: #E5EEDA;
	background: #2C4007;
	height: 30vh;
}
.header h1{
	text-shadow: 1px 1px 1px black;
	padding: 20px 0 10px 0;
}

.square{
	height: 2px;
	width: 100px;
	display: inline-block;
	background: #E5EEDA;
	margin: 15px 0;
}

h3{
	color: #2C4007;
	text-shadow: 0px 1px 1px black;
	margin: 20px 0 10px 0px;
}

.combine{
	display: flex;
	justify-content: center;
	grid-gap: 20px;
	margin: 20px 0;
}

.card{
	box-shadow: 0 1px 3px #313131;
	border-radius: 10px;
}

.card-body{
	background:  #E5EEDA;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	text-align: center;
	
}

.section{
	padding: 20px 100px;
	background: #2C4007;
}

.main{
	width: 100%;
	min-height: 60vh;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1.5rem;
	align-items: center;
}

.main-img img{
	max-width: 100%;
	width: 500px;
	height: auto;
}

.main-text{
	color: #E5EEDA;
}
.h1color{
	color: #E5EEDA;
	text-shadow: 0px 1px 1px black;
}

.bottom{
	padding: 20px 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1.5rem;
}

.footer{
	color: #4A4A4A;
	padding: 40px 0 0 0;
}

.footer-img{
	max-width: 100%;
	width: 30px;
}

.footer-f{
	background: #C2C2C2;
	width: 100%;
	text-align: center;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #83951C; /* Set a background color */
	box-shadow: 0 1px 2px #313131;
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

@media screen and (max-width: 575.98px){
	.combine{display: block;
	align-content: center;}
	.card{
		margin: 20px 100px;
	}
	h3 {
		margin-left: 80px;
	}
	.main{
	min-height: 20vh;
	display: block;
	align-items: center;
}


.main-text{
	padding: 0 !important;
	font-size: 12px;
}
.h1color{
	font-size: 24px !important;
}

	.footer{
	padding: 20px 0 0 0;
}
}