.footer {
    background-color: #03214D;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-list-social {
    display: flex;
    flex-direction: initial;
    justify-content: flex-start;
    gap: 16px;
    list-style-type: none;
}

.footer-content-logo-content {
    display: flex;
    justify-content: space-between;
}

.footer-list__socialmedia-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #02142E;
    border-radius: 50%;
	transition: .3s ease-in-out;
}

.footer-list__socialmedia-links:hover a {
    background-color: var(--BlueNormal);
}


.footer-content {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-content-first-item {
    max-width: 285px;
}

.footer-content-item {
    max-width: 185px;
}

.footer-content-contact-item {
    max-width: 250px;
}

.footer-list__text_icon {
    display: flex;
    gap: 8px;
    align-items: center;
}

.link__logo-footer{
	display:flex;
	margin-bottom: 32px;
}

.footer-content-item__title {
	color: var(--BlueNormal);
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-content-item__subtitle {
	color: var(--GreyDark);
	font-size: 14px;
	margin-bottom: 8px;
	font-weight: 700;
	line-height: normal;
}

.footer-content-item__paragraph {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	line-height: 28px;
}

.footer-contact{
	display: flex;
	flex-direction: initial;
	gap: 8px;
}

.footer-list {
	list-style-type: none;
}

.footer-list__content {
	font-size: 14px;
	font-style: normal;
	line-height: 20px;
	margin: 0px 0px 12px 0px;
	display: flex;
	flex-direction: initial;
	gap: 8px;
}

.footer-list__content a {
	color: #fff;
	font-size: 14px;
	transition: .3s ease-in-out;
}

.footer-list__content_icon {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
}

.footer-list__content path{
    transition: .3s ease-in-out;
}

.footer-list__content a:hover {
	color: var(--LightGray);
	transition: .3s ease-in-out;
}

.footer-list__content a:hover path{
	fill: var(--BlueDark);
	transition: .3s ease-in-out;
}

.footer-content-item__link-map {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin: 16px 0px;
	padding: 16px 24px;
	border: 2px solid #fff;
	transition: .3s ease-in-out;
	display: flex;
	flex-direction: initial;
	gap: 8px;
	justify-content: center;
	max-width: 250px;
	fill: #fff;
}

.footer-content-item__link-map path{
	transition: .3s ease-in-out;
}

.footer-content-item__link-map:hover {
	border-color: var(--BlueNormal);
	background-color: var(--BlueNormal);
	transition: .3s ease-in-out;
	color: #fff!important;
}

.footer-content-item__link-map:hover path{
	fill: #fff!important;
}

.footer-social-icons {
	width: 180px;
	margin: 16px 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	gap: 8px;
}

.footer-social-icons__icon {
	background-color: #FFF;
	display: flex;
	border-radius: 50px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: .3s ease-in-out;
}


.footer-content-item iframe {
	height: 100%;
    min-height: 300px;
    width: 100%;
}

/* 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: 40px;
}

.footer-separator-flex {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-separator__paragraph {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.copyright-seals {
    width: 90%;
    display: flex;
    margin: auto;
    margin-top: 16px;
    margin-bottom: 40px;
    gap: 14px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-seals__image {
    width: 128px;
}

.copyright-icon-path {
    fill: #fff;
}

	.footer-content {
		display: flex;
		flex-wrap: wrap;
		gap: 24px;
		justify-content: space-between;
	}

	.fw5{
		font-weight: 500;
	}

/* MEDIAS */

@media only screen and (min-width: 350px) {
	.footer-content {
	    width: 90%;
	    max-width: 1300px;
	    margin: 0 auto;
	}
}

@media only screen and (min-width: 1200px) {
	.footer-content {
		grid-template-columns: 285px 126px 145px 245px 240px;
	}
	
	.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;
	}
}

