
body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
}

a {
	color: #20733e;
}

h1 {
  font-family: "Noto Serif Display", serif;
  font-weight:  400;

    font-style: normal;
    
    letter-spacing: 0em;
    line-height: 1.2em;
    paragraph-spacing: 40px;
}

.desktop-menu {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);

	gap: 12px;
	background-color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
	border-radius: 16px 16px 0px 0px;
	z-index: 9;
		}
		
.menu-item {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
.menu-item:last-child {
    color: white;
    text-decoration: none;
    background-color: #21733E;
    padding: 10px 15px;
     border-radius: 8px;
}

.menu-item:hover {
    background-color: #555;
    border-radius: 5px;
}


.content {
	display: flex;
	overflow: hidden;

}

.content__img_container {

    overflow: auto;
		
     z-index: 0;
    
}

.content__img {

    border-top-right-radius: 180px;
        overflow: hidden;
        height: 100vh;
        position: fixed;
        width: 50%;
 
}

.content__img img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center center;
    object-fit: cover;
}



.content__text {
	display: flex; 
	flex-direction: column;
	justify-content: center;
	padding: 120px 80px 40px 40px;
	margin-bottom: 80px;
	flex: 1;
	width: 50%;
    margin-left: 50%;

	}
	
/* Menu container */
.mobile-nav {
	display: none; 
}


.menu-container {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0); 

    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
}

/* Hamburger icon */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    padding-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger .bar {
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Menu links */
.menu {
    display: none;
    list-style: none;
    padding: 0;
}

.menu ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.menu ul li a {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 18px;
}

.menu ul li a:hover {
    background-color: #575757;
}

/* Show menu when clicked */
.menu.show {
    display: block;
    position: absolute;
    top: 40px;
    right: 10px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Animation to transform hamburger to close icon */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
     transform-origin: 0 5px;
   
   
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: 5px 0;
}

.menu-container.active {
    background-color: rgba(255, 255, 255, 1);
    }



@media (max-width: 809px) {
	
	.mobile-nav {
	display: block;
}


.desktop-menu {
	width: 97vw;
	
}

.menu-item {
	display: none;
}

.menu-item:last-child {
    display: block;
    width: auto;
	text-align: center;
	width:100%;
    }

	
	.content {
		flex-direction: column;
	}
	
	.content__img {
        position: relative;
        width: 100%;
        height: auto;
        
}
	
	
	.content__text {
		padding: 20px;
	width: auto;
	margin-left: 0;
 	}
}