@font-face {
    font-family:Poppins-SemiBold;
    font-display: auto;
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf');
}
@font-face {
    font-family:Poppins-Medium;
    font-display: auto;
    src: url('../fonts/Poppins/Poppins-Medium.ttf');
}
* {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; */
    font-family: "Poppins";
}

footer, .footer * {
    /* display: flex;
    flex-direction: row;
    height: 13.5vw;
    padding: 1vw 12vw; */
    background-color: var(--sky-blue);
    color: var(--medium-purple);
    /* justify-content: space-between; */
    font-family: 'Poppins-Medium';
    position: relative;
    z-index: 98;
}

footer>* {
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}

footer>section>h2 {
    margin-top: 1vw;
    margin-bottom: 2vw;
}

footer>section>div,
footer>section>a {
    font-weight: bold;
    font-size: .7vw;
}

.footer-links {
    color: var(--dark)
}

footer>section>div>a>img {
    width: 4vw;
}

footer>:first-child {
    text-align: center;
}

a {
    text-decoration: none;
}

@media(max-width:1199px){
	.footer{
        font-size: 1.5vw;
    }
    .footer h3{
        font-size: calc(1rem + .6vw);
    }
}
@media(max-width:991px){
	.footer{
        font-size: 1.5vw;
    }
}
@media(max-width:767px){
    .footer{
        font-size: calc(.6rem + .6vw);
    }
}