.footer {
	padding: 36px 0px;
	background-color: #6A6B6D;
}

.footer-content {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-content-item__title {
	color: #06c0da;
	font-size: 18px;
	font-weight: bold;
	line-height: 32px;
	letter-spacing: 1.2px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.footer-content-item__paragraph {
	color: #FFF;
    font-size: 16px;
    text-align: left;
    line-height: 32px;
    letter-spacing: 1.2px; 
}

.footer-list {
	list-style-type: none;
}

.footer-list__content {
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0.42px;
	margin: 0px 0px 16px 0px;
}

.footer-list__content a {
	color: #FFF;
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
	transition: .3s ease-in-out;
}

.footer-list__content a:hover {
	color: #06c0da;
	transition: .3s ease-in-out;
}

.footer-list__content svg {
    fill: #FFF;
    transition: .3s ease-in-out;
}

.footer-list__content a:hover svg {
    fill: #06c0da;
    transition: .3s ease-in-out;
}

.footer-content-item__link-map {
	color: #FFF;
    font-size: 16px;
    text-align: left;
    line-height: 32px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 16px 0px;
    display: inline-block;
    transition: .3s ease-in-out;
}

.footer-content-item__link-map:hover {
	color: #06c0da;
 	transition: .3s ease-in-out;
}


.footer-social-icons {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.footer-social-icons__icon {
	background-color: #FFF;
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in-out;
}

.footer-social-icons__icon:hover {
	background-color: #06c0da;
	transition: .3s ease-in-out;
}

.footer-social-icons__icon:hover svg {
	fill: #FFF;
	transition: .3s ease-in-out;
}

.footer-social-icons__icon svg {
	fill: #06c0da;
	transition: .3s ease-in-out;
}

.footer-social-icons__icon svg:hover {
	fill: #FFF;
	transition: .3s ease-in-out;
}

/* FOOTER SEPARATOR */

.footer-separator {
	width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 36px;
}

.footer-separator hr {
	background-color: #FFF;
    height: 2px;
    margin-bottom: 28px;
}

.footer-separator-flex {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-separator__paragraph {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;    
    margin-bottom: 16px;
    letter-spacing: 0.42px; 
}

.copyright-seals {
    width: 100px;
    display: flex;
    margin: 0 auto;
    margin-top: 14px;
	gap: 14px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-seals__icon svg {
    fill: #FFF;
}

.copyright-seals__image {
    width: 128px;
}

/* MEDIAS */

@media only screen and (min-width: 600px) {
	.footer-content {
		display: flex;
    	flex-wrap: wrap;
    	row-gap: 16px;
	}

	.footer-content-item {
		width: 45%;
	}
}

@media only screen and (min-width: 800px) {
	.footer-content-item {
		width: 33%;
	}
}

@media only screen and (min-width: 1100px) {
	.footer-content { 
		row-gap: unset;
	}

	.footer-content-item {
		width: 25%;
	}
}

@media only screen and (min-width: 1200px) {
	.footer-separator-flex {
		display: flex;
    	flex-direction: row;
    	justify-content: space-between;
    	align-items: center;
	}	
	
	.footer-separator__paragraph {
		margin-bottom: unset;
	}
	
	.copyright-seals {
		width: unset;
		flex-wrap: unset;
		margin: unset;
	}
}