/* Footer ------------------------ */
.footer{
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: rgba(93, 113, 221, 0.05);
	padding: 40px 0px;
}
		/* Footer Container */
		.footer_container{
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 70px;
			width: 1500px;
		}
				/* Logo */
				.footer_img{
					cursor: pointer;
				}
				/* Menu */
				.footer_nav_ul{
					display: flex;
					list-style-type: none; 
					gap: 60px;
				}
						/* a (links) */
						.footer_nav_a{
							text-decoration: none;
							color: black;
							font-weight: 400;
							font-size: 18px;
						}
						.footer_nav_a:active{
							color: #5D71DD;
							text-decoration: underline;
							text-underline-offset: 6px;
						}
						.footer_nav_a:hover{
							color: #5D71DD;
						}

				/* Oranization */
				.footer_organization{
					color: rgba(47, 34, 34, 1);
				}
/* end --------------------------- */

/*smartphones mobiles (portrait)*/
@media (min-width: 320px) and (max-width: 480px){
	/* Footer Container */
	.footer_container{
		width: 400px;
		gap: 50px;
	}
			/* Menu */
			.footer_nav_ul{
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				gap: 20px;
			}
}