*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --footer-text: #8e93c2;
    --footer-bg: #6d6c76;
    --footer-h4: #fff;
}

html {
    font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
}

.footer {
    background-color: var(--footer-bg);
    padding: 5rem 0;
    font-family: math;
    line-height: 1.4;
}

.footer-container {
    max-width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer-col {
    width: 25%;
    padding: 0 1.5rem;
}

.help {
    padding-left: 5rem; 
}

.footer-col h4 {
    font-size: 2rem; 
    color: var(--footer-h4);
    text-transform: capitalize;
    margin-bottom: 3.5rem; 
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    bottom: -1rem; 
    background-color: #E91E63;
    width: 5rem; 
    height: 0.2rem;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 1rem; 
}

.footer-col ul li a {
    color: var(--footer-text);
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFF;
    padding-left: 0.7rem;
}

.footer-col .social-links a {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    text-align: center;
    margin: 0 1rem 1rem 0;
    line-height: 5rem;
    transition: all 0.5s ease;
}

@media(max-width: 767px) {
    html {
        font-size: 9px;
    }
	.footer-col {
		width: 50%;
		margin-bottom: 3rem;
	}
}

@media(max-width: 574px) {
	.footer-col {
		width: 100%;
	}
    .help{
        padding: 0 1.5rem;
    }
}
.footer-col p {
    color: var(--footer-text);
    text-align: justify;
    font-size: 1.8rem;
}

.fa-brands, .fab {
    font-size: 2rem;
}

.social-links #facebook {
    background-color: rgb(1, 101, 225);
}

.social-links #instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #833ab4);
}

.social-links #twitter {
    background-color: #ffffff;
    color: black;
}

.social-links #linkedin {
    background-color: rgb(10, 102, 194);
}

.Newsletter {
    margin: 1rem;
}

#newsLatterEmail {
    width: 90%;
    padding: 1rem;
    margin: 1rem 0;
    border: 0.1rem solid #ccc; 
    border-radius: 0.4rem; 
    box-sizing: border-box;
}

.Newsletter button {
    padding: 0.8rem 1.5rem;
    margin: 1rem 0;
    border: none;
    background-color: #ff1361;
    color: white;
    cursor: pointer;
    border-radius: 0.4rem;
    transition: background-color 0.3s;
}

.Newsletter button:hover,
.newsletter button:focus {
    background: #ff1675 !important;
    border: 0.05rem solid rgba(255, 255, 255, 0.5) !important; 
    outline: none;
}

@media (min-width: 600px) {
    .Newsletter {
        flex-direction: row;
    }

    .Newsletter button {
        width: auto;
    }
}
@media (min-width: 900px) {
    #newsletterEmail {
        width: 60%;
    }
}
 
/* copyright start */
.copyright-bar {
    background-color: #f0f0f0; 
    padding: 1rem;
	display: flex;
	justify-content: space-around;
    text-align: center;
}
@media (max-width: 767px) {
	.copyright-bar {
		display: block;
	}
}

.copyright p {
    font-size: 2rem;
    margin: 0;
}
.copyright p a {
    text-decoration: none;
    color: #ff1361;
}

.copyright-page ul {
    list-style-type: none;
    padding: 0;
}

.copyright-page li {
    display: inline;
    margin-right: 2rem;
}

.copyright-page a {
    text-decoration: none;
    color: #333; 
    font-size: 1.5rem; 

}

/* copyright end */