/* ================== Header ================== */
#header {
	/*position: fixed;*/
	top: 0;
	left: 0;
	width: 100%;
	padding: 1px 20px;

	margin-bottom: 0rem;
    background-color: transparent;
    transition: background-color 0.8s ease;
	z-index: 120;
}

#header.scrolled {
	background-color: var(--font-clr-dark-grey);
} 

#header.scrolled .hamburger {
	background: var(--font-clr-white);
}

#header.scrolled .hamburger::before {
	background: var(--font-clr-white);
}

#header.scrolled .hamburger::after {
	background: var(--font-clr-white);
}

.btn-free {
	margin-left: 1rem;
}

/* =============== Navigation =============== */
.container-nav {
	margin: 0 auto;
    height: max-content;

	padding: 10px;
	height: 110px;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.logo-container {
	width: 95px;
	height: 95px;	
}

.logo {
	width: 95px;
	height: 95px;
	border-radius: 50px;
}

.main-nav {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	
	background: var(--font-clr-white);
	position: absolute;
	top: 110px;
	right: 0;
	height: 0;
	width: 500px;
	overflow: hidden;
	transition: all ease-in-out 250ms;	
	
	z-index: 150;
}

.main-nav li {
	padding: 0;
	font-size: 2rem;
	border-bottom: 3px solid var(--font-clr-dark-grey);
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
    
}

.main-nav li:first-child {
	border-top: 3px solid var(--font-clr-dark-grey);
}

.main-nav a {
    text-decoration: none;
    text-transform: uppercase;
    color:  var(--font-clr-dark-grey);
	font-size: 1.1em;
	font-weight: bold;
}

.main-nav a:hover {
	color: var(--font-clr-light);
}

.main-nav.is-open {
	height: 400px;
}

.right-orientation {
    display: flex;
	flex-direction: row;
	justify-content: space-around;
	text-align: center;
}



/* =================== Hamburger Menu ============= */
.nav-toggle {
	display: block;
	padding: 1rem;

	z-index: 160;

	cursor: pointer;
}

.hamburger, .hamburger::before, .hamburger::after {
	content: '';
	display: block;
	width: 2.5em;
	height: 3px;
	background: var(--font-clr-dark-grey);
	
	
	transition: all ease-in-out 250ms;
}

.hamburger::before {
	transform: translateY(-6px);
}

.hamburger::after {
	transform: translateY(3px);
}

.hamburger.is-open {
	transform: rotate(45deg);
}

.hamburger.is-open::after {
	transform: rotate(-90deg) translateX(3px);
	
}

.hamburger.is-open::before {
	opacity: 0;
}

.main-nav .active {
	color: var(--font-clr-white);
}

/* ============ Small screens nav ============== */

@media(min-width: 850px) {
	#header {
		position: fixed;
	}
}



@media(max-width: 850px) {
	.main-nav {
		background: var(--font-clr-grey);
		position: fixed;
		top: 0;
		width: 100%;
		overflow: hidden;
		
		transition: all ease-in-out 250ms;	
		
		z-index: 150;

		flex-direction: column;
		justify-content: space-around;
		text-align: center;
		
	}

	.main-nav.is-open {
		height: 100vh;
	}

	.main-nav li {
		padding: 0;
		font-size: 2em;
		border-bottom: 3px solid var(--font-clr-white);
		flex: 1 1 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.main-nav a {
		color: var(--font-clr-white);
		padding: 2.5em 3.5em;
		font-size: 1.2em;
	}

	.main-nav a:hover {
		color: var(--font-clr-light-gray);
	}
	
}

@media(max-height: 500px) {
	.main-nav a {
		padding: .3em 0;
	}
}




@media(min-width: 850px) {
	.flex-col-1-3 {
		max-width: 33%;
	}
}

@media(max-width:850px) {
	.container_ss {
		flex-direction: column;
	}

	.header {
		background-color: transparent;
		position: absolute;
	}	

}



/* =============== Footer =============== */
.footer {
	padding-top: 1rem;
	width: 100%;
	height: max-content;
	background: white;
	
	text-align: left;
	margin-top: auto;
}

footer h4, 
footer p, 
footer span, i,
footer a {
	color: var(--font-clr-dark-grey);

}

footer a {
	text-decoration: none;
	line-height: 1.5rem;
}

.footer-title-social {
	margin-bottom: 1em;
}

.footer-title-email {
	margin-bottom: 1.6em;
}

.subscribe-form {
	padding-bottom: 2em;
}


#mc-embedded-subscribe {
	display: inline-block;
	margin: 0;
}

.response {
	color: white;
}

.links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.social-links {
	display: flex;
	font-size: 3rem;
	justify-content: space-around;
	max-width: 400px;
	margin: 0 auto;
}

.social-links li {
	padding: 0 1rem 0;
}


.spam-comment {
	font-size: 14px;
	padding: 1.2rem 0;
	margin: 0 auto;
}

.copyright {
	padding: 0.6rem 0;
	margin: 0 auto;
	font-size: 14px;
	text-align: center;
}

.footer-title {
	padding: 0.5em;
}



.footer-row {
	display: flex;
	flex-direction: row;
}

.social {
	padding: 0 1rem;
}

ul {
	list-style-type: none; /* Remove bullets */
	padding: 0;
	margin: 0;
}
ul li a {
	text-decoration: none; /* Remove underline (optional) */
}