.mainFooter{
    background-color:#f7f7f7;
    width: 100%;
    /* height: 40vh; */
}


.footerFirst{
    /* border: 2px solid red; */
    width: 85%;
    padding: 25px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    text-align: center;
    margin: auto;
}

.footerinner1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footerTwo{
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    width: 85%;
    margin: auto;
}

.footerthree{
    padding: 20px 0px;
    text-align: center;
    font-size: 13px;
    color: #808182;;
}

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


/* scroll-down-circle css start  */

.scroll-down-circle {
	position: absolute;
	display: block;
	left: 3%;
	/* bottom: 100px; */
    top: 13%;
	width: 150px;
	height: 150px;
	z-index: 9;
}
.scroll-down-circle .sdc-icon {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	font-size: 16px;
	color: black;
	transform: translate(-50%, -50%);
}
.scroll-down-circle svg { 
	width: 100%; 
	animation: sdc-rotation 8s infinite linear;
}
.scroll-down-circle rect { 
	fill: black; 
}
.scroll-down-circle text { 
	font-size: 33px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 25px;
	fill: black;
	transition: fill .2s;
}
.scroll-down-circle:hover text { 
	fill: black; 
}
#page-header.ph-bg-image .scroll-down-circle text {
}

/* Scroll down circle animation */
@keyframes sdc-rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
/* scroll-down-circle css end  */