.footercontacto {
    background-color: #D9D9D9;
    padding: 0 30px;
}
.footer-logo-social{
    display: flex;
    justify-content: space-between;
    padding: 30px 0 20px;
	align-items: flex-end;
}
.footer-logo {
    width: 174px;
}
.footer-logo img {
	width: 100%;
	height: auto;
}
.footer-social a {
	display: inline-block;
	text-decoration: none;
	transition: .2s ease;
}
.footer-social a:hover {
	opacity: .5;
}
.footer-divider {
	height: 1px;
	background: rgba(0,0,0,.3);
}
.footer-nav {
	display: flex;
	gap:60px;
	padding: 30px 0;
}
.footer-contacto, .footer-enlaces {
	width: 100%;
}
.footer-contacto {
	min-width: 400px;
}
.footer-nav .title {
	font-weight: bold;
}
.footer-nav .title, .footer-nav .information{
	margin-bottom: 15px;
}
.footer-nav .information{
	display: flex;
	column-gap: 10px;
	align-items: center;
}
.footer-nav .information .footer-icon{
	width: 20px;
}
.footer-nav .information .footer-text{
	width: 100%;
}
.footercontacto a {
	color: #000;
	text-decoration: none;
}

.footercontacto a:hover {
	color: #DB501C;
}
.footercontacto a.ti-america-button, .footercontacto a.ti-america-button:hover {
	color: white;
}

.footercontacto a.contact-btn {
	display: inline-block;
	background-color: #DB501C;
	color: white;
	text-decoration: none;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	transition: .2s;
}

.footercontacto a.contact-btn:hover {
	background-color: black;
}
.footer-enlaces ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-enlaces ul li{
	margin: 0 0 5px;
}
.footer-enlaces ul ul{
	margin: 5px 0 0 30px;
}
.footer-enlaces ul ul li{
	position: relative;
}
.footer-enlaces ul ul li:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 2px;
	left: -10px;
	top: 12px;
	background: black;
}

.copyright {
    background-color: #DB501C;
	padding: 30px;
	color: white;
 }
.copyright .wrapper {
	display: flex;
	width: 100%;
	align-items: baseline;
	justify-content: space-between;
	gap:50px;
}
.copyright .footer-links {
	display: flex;
	align-items: stretch;
	width: auto;
	gap:20px;
}
.copyright .footer-links a{
	display: block;
	font-weight: 500;
	text-decoration: none;
	font-size: 20px;
	color:#fff;
	text-align: center;
}
.footer-links-divider {
	width: 1px;
	height: auto;
	background: rgba(255,255,255,.2);
}


/*modal styles*/
.modal-header, .modal-body, .modal-footer {
	padding: 20px 30px;
}
.modal-body {
	color: black;
}
.modal-body .wrapper {
	max-width: 1000px;
}
h2.header-boxed {
    font-size: 40px;
    background: #EF672C;
    font-weight: 900;
    display: inline-block;
    padding: 10px 20px;
    line-height: 1em;
    margin-bottom: 1em;
    color: #fff;
}
.modal-body h3 {
	font-size: 23px;
	font-weight: bold;
}
.modal-body ol li {
	margin-bottom: .5em;
}
.modal-body p a {
	display: inline-block;
	background: #DB501C;
	color: white;
}
.decoration-bottom{
    text-align: right;
    padding: 50px 0;
}
.modal-body ul {
	list-style: none;
}
.modal-body ul li {
	position: relative;
}
.modal-body ul li:before {
	content: '';
	position: absolute;
	left: -16px;
	top: 16px;
	width: 2px;
	height: 2px;
	background: black;
}

@media (max-width:760px) {
	.footer-nav, .copyright .wrapper, .copyright .footer-links{
		flex-direction: column;
		gap: 30px;
	}
	.footer-contacto {
		min-width:0;
	}
	.copyright .footer-links{
		width: 100%;
		gap: 10px;
	}
	.copyright .wrapper a {
		text-align: left;
	}
	.footer-links-divider {
		width: auto;
		height: 1px;
	}
	.decoration-bottom{
		padding: 20px 0;
	}
	.decoration-bottom img{
		width: 160px;
	}
}





