*
{
	margin:0;
	padding:0;
}

body
{
	font-family: "Inter",sans-serif;
}
.new
{
	display:flex;
	justify-content:center;
	background-color:#64825e;
	padding:10px;
	color:#ffffff;
	width: 100%;
	position: fixed;
}

.new>a
{
	text-decoration:underline;
	color:#ffffff;
}

.nav>ul
{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	background-color: white;
}

.nav
{
	position:fixed;
	width: 100%;
	top: 38px;
}
.nav>ul>li>img
{
	width:150px;
}

nav>ul>li
{
	list-style:none;
	padding:20px;
}

.nav>ul>li>a
{
	text-decoration:none;
	color:#000000;
}

.free
{
	background-color:#64825e;
	height:40px;
	width:120px;
	color:#ffffff;
	border-radius: 50px;
	cursor: pointer;
	padding:10px 14px;
	border:0;
}

.banner
{
	overflow: hidden;
	padding-top:100px;
	height:800px;
	width: 100%;
	position: relative;
}

.carousel
{
	display: flex;
	width: 100%;
	height: 100%;
	animation: slideAnim 35s infinite;
}

.slide
{
	position:relative;
	width: 700%;
	flex: 0 0 100%;
	transition: transform 0.2s ease-in-out;
}

.slide img
{
	height:100%;
	width: 100%;
	object-fit:cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: perspective(800px) translateZ(0);
}

@keyframes slideAnim
{
	0%
	{
		transform: translateX(0);
	}
	12.5%
	{
		transform: translateX(-100%);
	}
	25%
	{
		transform: translateX(-200%);
	}
	37.5%
	{
		transform: translateX(-300%);
	}
	50%
	{
		transform: translateX(-400%);
	}
	62.5%
	{
		transform: translateX(-500%);
	}
	75%
	{
		transform: translateX(-600%);
	}
	87.5%
	{
		transform: translateX(-700%);
	}
	100%
	{
		transform: translateX(0);
	}
	
}

.caption
{
	position: absolute;
	bottom: 80px;
	left: 20px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 40px 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
}

.nav1
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.prev
{
	left:20px;
}

.next

{
	right: 20px;
}

.card_container h2 a
{
	text-decoration:none;
	color:black;
	padding: 10px;
}
.card_container
{
	max-width:100%;
	margin:auto;
}

.card_container h2
{
	font-size:1.6rem;
	margin: 10px 0 20px 10px;
	width:90%;
}

.card_row
{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	padding:5px;
}

.card
{
	flex: 1 1 230px;
	max-width: 230px;
	border-radius:15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease;
	
}

.card img:hover
{
	box-shadow: 2px 2px 10px grey;
	cursor: pointer;
}

.card img
{
	border-radius:15px;
	width:230px;
	height:355.78px;
	object-fit:cover;
}

.card h3
{
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	margin: 10px 12px 14px;
	color: #333;
}

.card h3:hover
{
	color:orange;
	cursor: pointer;
}

.more
{
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	width:100%;
	background-color: white;
}
.more button
{
	background-color:#b04c35;
	height:40px;
	width:80px;
	color:#ffffff;
	border-radius: 5px;
	cursor: pointer;
	padding:10px 14px;
	border:0;
}

.more button:hover
{
	border-radius: 50px;
}

.discover
{
	max-width:100%;
	margin:auto;
}

.dis_items
{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	padding:20px;
	background-color: #3a4432;
}

.item
{
	padding:20px;
}
.item img
{
	width:400px;
	height:419px;
	padding-right: 20px;
}

.item h2
{
	font-size: 1.4rem;
	padding-bottom: 40px;
}

.item ul
{
	padding: 20px;
	padding-top:80px;
}

.item ul li
{
	list-style:none;
	color:white;
	padding-bottom:10px;
}

.item button
{
	border-radius:20px;
	background-color:#b04c35;
	height:40px;
	width:100px;
	color:#ffffff;
	cursor: pointer;
	padding:10px 14px;
	border:0;
}

.video_container h2 a
{
	text-decoration:none;
	color:black;
	padding: 10px;
}
.video_container
{
	max-width:100%;
	margin:auto;
}

.video_container h2
{
	font-size:1.6rem;
	margin: 10px 0 20px 10px;
	width:90%;
}

.video_row
{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	padding:5px;
}

.video
{
	flex: 1 1 230px;
	max-width: 230px;
	border-radius:15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease;
	
}

.video img:hover
{
	box-shadow: 2px 2px 10px grey;
	cursor: pointer;
}

.video img
{
	border-radius:15px;
	width:230px;
	height:125px;
	object-fit:cover;
}

.video h3
{
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	margin: 10px 12px 14px;
	color: #333;
}

.video h3:hover
{
	color:orange;
	cursor: pointer;
}

.video p
{
	text-align:center;
	font-size: 0.8rem;
	font-size: 300;
	margin: 10px 12px 14px;
	color: grey;
}

.about
{
	max-width:100%;
	margin:auto;
}

.about_items
{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	padding:20px;
	background-color:#f2eae3;
}

.a_item
{
	padding:20px;
}
.a_item img
{
	width:256px;
	height:319px;
	padding-right: 20px;
}

.a_item h2
{
	font-size: 1.4rem;
	padding-bottom: 40px;
	color:black;
}

.a_item ul
{
	padding: 20px;
	padding-top:80px;
}

.a_item ul li
{
	list-style:none;
	color:black;
	padding-bottom:10px;
}

.a_item button
{
	border-radius:20px;
	background-color:#b04c35;
	height:40px;
	width:100px;
	color:#ffffff;
	cursor: pointer;
	padding:10px 14px;
	border:0;
}

.a_item ul li p
{
	width: 300px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  padding:40px;
}

.newsletter {
  flex: 1.2;
  min-width: 250px;
}

.newsletter h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.newsletter p {
  margin: 10px 0;
}

.subscribe-box {
  display: flex;
  margin-top: 10px;
}

.subscribe-box input {
  padding: 10px;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.subscribe-box button {
  background-color: #3b5d2f;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.subscribe-box button:hover {
  background-color: #4e7a41;
}

.newsletter small {
  display: block;
  margin-top: 10px;
  color: #777;
  font-size: 0.8rem;
}

.newsletter a {
  color: #3b5d2f;
  text-decoration: none;
}

.social-icons {
  margin-top: 15px;
}

.social-icons i {
  font-size: 18px;
  margin-right: 12px;
  color: #666;
  cursor: pointer;
}

.social-icons i:hover {
  color: #3b5d2f;
}

.footer-logo {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 90px;
}

.footer-links {
  flex: 1.5;
  display: flex;
  justify-content: space-between;
  min-width: 300px;
}

.column h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin: 6px 0;
}

.column a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.column a:hover {
  color: #3b5d2f;
}

.app-section {
  text-align: center;
  margin-top: 20px;
}

.app-buttons img {
  height: 40px;
  margin: 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}