*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

:root{
    --heading-color: #ff1d4d;
    --fontawesome: "Font Awesome 5 Pro";
    --white: #ffffff;
    --black: #000;
    --para: #000;
    --bg:  rgba(255, 255, 255, 0.884);
}

p{
    margin: 0;
    padding: 0;
}
footer ul{
margin: 0;
padding: 0;
list-style: none;
}

.footer{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.779), rgba(3, 4, 28, 0.674)), url(../image/fotr-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.footer ul li{
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
}
.footer .upper{
  padding: 80px 0 20px 0;
}
.footer .inside-first .social-links ul{
	display: flex;
	gap: 20px;
}
.footer .inside-first .social-links .icon1 a i{
    color: #316FF6;
}

.footer .inside-first .social-links .icon2 a i{
    color: #E1306C;
}

.footer .inside-first .social-links i {
    height: 40px;
    width: 40px;
    font-size: 20px;
    color: var(--black);
    text-align: center;
    line-height: 38px;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgb(0, 0, 0, 0.2);
    transition: all .5s ease-in;
    background: var(--white);
}

.footer .inside-first .social-links i:hover {
    transform: translateY(5px);
    background: #efefef;
    box-shadow: 0px 0px 0px #d5d5d5,
        -1px -1px 10px #e2e2e2, inset 5px 5px 10px #b5b5b5,
        inset -5px -5px 5px #ffffff;
}

.footer .inside-first p{
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}
.footer .inside-first .image{
    width: 50%;
	padding: 5px 0px;
}

.footer h4{
	color: var(--white);
	margin-bottom: 40px;
	font-weight: 600;
	position: relative;
}

.footer h4::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 3px;
	width: 60px;
	border-radius: 100px;
	background-color: var(--heading-color);
}

.footer .inside-second{
	padding-left: 7%;
}
.footer .inside-second ul li a{
	color: var(--white);
    font-size: 18px;
}
.footer .inside-second ul li:not(:last-child){
   margin-bottom: 6px !important;
}


.footer ul li a:hover{
    color: var(--heading-color) !important;
    text-decoration: underline;
}

.footer .inside-third ul li a{
	color: var(--white);
    font-size: 18px;
}
.footer .inside-third ul li:not(:last-child){
   margin-bottom: 6px !important;
}
.footer .inside-fourth .content p{
    color: var(--white);
    font-size: 18px;
    margin-top:10px !important;
    margin-bottom:5px !important
}
.footer .inside-fourth .content a{
    color: var(--white);
    font-size: 18px;
}
.footer .inside-fourth .content2 a{
    color: var(--white);
    font-size: 18px;
}
.footer .bottom{
    border-bottom: 2px solid var(--white);
}
.footer .copyryt p{
    font-size: 18px;
    padding-top: 20px;
    color: var(--white);
    font-weight: 700;
}

@media(max-width:991px){
    .footer .inside-second{
        padding-left: 12px;
    }
}