/***    13. Footer Ticker Css     ***/
/************************************/

.footer-ticker{
	position: relative;
	padding: 40px 0;
	border-width: 1px 0 1px 0;
	border-style: solid;
	border-color: var(--divider-color);
}

.footer-ticker:after,
.footer-ticker:before{
	content: '';
	position: absolute;
	width: 200px;
	height: 100%;
	top: 0;
	bottom: 0;
	background: linear-gradient(90deg, var(--white-color) 40%, #FFFFFF00 100%);
	z-index: 1;
}

.footer-ticker:before{
	background: linear-gradient(270deg, var(--white-color) 40%, #FFFFFF00 100%);
	right: 0;
	left: auto;
}

.scrolling-ticker{
	position: relative;
}

.scrolling-ticker-box{
	--gap: 30px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content span{
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
	font-size: 80px;
	font-weight: 700;
	line-height: 1.3em;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.schedule-now-btn{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.scrolling-ticker .schedule-now-btn a{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.4s ease-in-out;
}

.scrolling-ticker .schedule-now-btn a:hover{
	background: var(--primary-color);
}

/************************************/
/***      	14. Footer Css   	  ***/
/************************************/

.main-footer{
	background: var(--primary-color);
	padding: 80px 0 0;
}

.footer-header{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-header .section-title{
	margin-bottom: 0;
}

.footer-contact-btn{
	text-align: end;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img {
    max-height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.about-footer-content{
	margin-bottom: 20px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--white-color);
}

.footer-social-links ul li a i{
	font-size: 16px;
	color: var(--white-color);
}

.footer-links h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child{ 
	margin-bottom: 0;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li a{
	color: inherit;
}

.footer-contact-item{
	display: flex;
	margin-bottom: 20px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	margin-right: 10px;
}

.footer-contact-item .icon-box img{
	max-width: 20px;
}

.footer-contact-content{
	width: calc(100% - 30px);
}

.footer-contact-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-latest-news-form .form-group{
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
	overflow: hidden;
}

.footer-latest-news-form .form-group .form-control{
	width: 85%;
	border: none;
	border-radius: 0;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	padding: 14px 10px 14px 0;
	box-shadow: none;
}

.footer-latest-news-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-latest-news-form .latestnews-btn{
	background: transparent;
	width: 15%;
	border: none;
	padding: 0;
	text-align: right;
}

.footer-latest-news-form .latestnews-btn img{
	max-width: 24px;
}

.footer-copyright{
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 40px 0;
	margin-top: 60px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
