/**
 * TelecomRoute Footer
 *
 * @package TelecomRoute_Pro
 */

/* ==========================================================
   FOOTER
========================================================== */

.tr-footer {
	background: #081b33;
	color: #d7e3f3;
	padding-top:80px;
}

.tr-footer a {
	color: #d7e3f3;
	text-decoration: none;
	transition: color .25s ease;
}

.tr-footer a:hover {
	color: #00b4ff;
}

.tr-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tr-footer-title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
}

/* ==========================================================
   COMPANY INFO
========================================================== */

.tr-footer-company__details {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tr-footer-company__details li {
	margin-bottom: 18px;
	line-height: 1.8;
}

.tr-footer-company__details strong {
	display: block;
	margin-bottom: 4px;
	color: #ffffff;
	font-weight: 600;
}

/* ==========================================================
   FOOTER MENU
========================================================== */

.tr-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tr-footer-menu li {
	margin-bottom: 14px;
}

.tr-footer-menu a {
	display: inline-block;
}

/* ==========================================================
   BUSINESS HOURS
========================================================== */

.tr-footer-hours {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tr-footer-hours li {
	margin-bottom: 18px;
	line-height: 1.8;
}

.tr-footer-hours strong {
	display: block;
	margin-bottom: 4px;
	color: #ffffff;
	font-weight: 600;
}

.tr-footer-hours span {
	color: #c4d5ea;
	font-size: 15px;
}

/* ==========================================================
   SOCIAL ICONS
========================================================== */

.tr-footer-company__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.tr-footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.08);
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease;
}

.tr-footer-social-link svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.tr-footer-social-link:hover {
	background: #00b4ff;
	border-color: #00b4ff;
	color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,180,255,.35);
}

.tr-footer-social-link:focus-visible {
	outline: 2px solid #00b4ff;
	outline-offset: 3px;
}

/* ==========================================================
   COPYRIGHT
========================================================== */

.tr-footer__bottom {
	padding: 25px 0;
}

.tr-footer-copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 15px;
	color: #b8cbe2;
}

.tr-footer-copyright__right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.tr-footer-separator {
	opacity: .5;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

	.tr-footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

	.tr-footer {
		padding-top: 50px;
	}

	.tr-footer__top {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.tr-footer-company__social {
		justify-content: center;
	}

	.tr-footer-copyright {
		flex-direction: column;
		text-align: center;
	}

	.tr-footer-copyright__right {
		justify-content: center;
	}

}