// ======section footer starts=======
.site-footer{
	background-color: #000c14;
	.footer-top{
		padding: 5% 0;
	}
	.ft-title{
		font-weight: 600;
		text-transform: uppercase;
		margin-bottom: 24px;
		color: #fff;
		font-size: 22px;
		@include breakpoint (wider)
		{
			font-size: 20px;
			margin-bottom: 20px;
		}
		@include breakpoint (small)
		{
			margin-bottom: 16px;
		}
		@include breakpoint (smaller)
		{
			font-size: 18px;
			margin-bottom: 10px;
		}
	}
}
.contact-det{
	li{
		margin-bottom: 16px;
		position: relative;
		padding-left: 26px;
		@include breakpoint(smaller)
		{
			margin-bottom: 10px;
		}
		i{
			position: absolute;
			top: 5px;
			left: 0;
			color: var(--primary);
		}
		span, a{
			color: #fff;
			display: block;
		}
		a{
			&:hover{
				color: var(--primary);
			}
		}
	}
}
.social-media{
	h5{
		color: #fff;
		font-weight: 600;
	}
	ul{
		li{
			display: inline-block;
			&:not(:last-child){
				margin-right: 6px;
			}
			i{
				height: 40px;
				line-height: 40px;
				width: 40px;
				text-align: center;
				border-radius: 4px;
				background-color: var(--tertiary);
				color: #fff;
				&:hover{
					background-color: var(--primary);
				}
			}
		}
	}
}
.contact-form{
	.form-row{
		margin: 0 -8px;
		.form-col{
			padding: 0 8px;
			input{
				height: 50px;
				@include breakpoint (smaller)
				{
					height: 44px;
				}
			}
			input, textarea{
				background-color: var(--secondary);
				border: none;
				color: #fff;
				border-radius: 4px;
				margin-bottom: 16px;
				@include breakpoint (smaller)
				{
					margin-bottom: 10px;
				}
				&::placeholder{
					color: #bbb;
					font-weight: 300;
				}
			}
			input[type=submit]{
				@include transition(.3s);
				&:hover{
					background-color: var(--primary);
					color: #fff;
				}
			}
		}
	}
}
.copyright{
	padding: 24px 1rem;
	border-top: 1px solid #232631;
	text-align: center;
	p{
		color: #fff;
		margin: 0;
	}
}
#scroll-top{
	position: fixed;
	bottom: 100px;
	right: 10px;
	z-index: 2;
	i{
		height: 40px;
		line-height: 40px;
		width: 40px;
		text-align: center;
		background-color: var(--primary);
		color: #fff;
		border-radius: 4px;
		@include breakpoint (smaller)
		{
			height: 36px;
			line-height: 36px;
			width: 36px;
		}
	}
}
// ======section footer ends=======
