@import url(https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap);


*{
    font-family: 'PT Sans Narrow',sans-serif;
    margin: 0;
    padding: 0;
    
  }

:root {
    --background: #e9eef2;
    --color1: #fff;
    --color-2: #fff;
    --color-3: #fff;
    --transition: all 0.25s ease 0s
}

footer {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--color);
    width: 100%;
}

@media screen and (max-width: 768px) {
    footer {
        font-size:15px
    }
}

@media screen and (max-width: 465px) {
    footer {
        font-size:14px
    }
}



footer .container {
    max-width: 1110px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

.copyright {
  padding: 2rem 0 0 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-3);
  text-align: center;
  border-top: 1px solid var(--color-3);
}

.footer-nav{
    padding: 1rem 0
}

.footer-nav .col {
  max-width: 300px;
}

p.site-decription {
  color: var(--color-3);
  font-size: 1rem;
  font-weight: 400;
}

.social-medias a {
  color: var(--color-2);
  width: 2rem;
  height: 2em;
  border: 2px solid var(--color-2);
  border-radius: 50%;
  text-decoration: none;
}
.social-medias a:hover {
  background: var(--bgcolor);
  color: var(--color);
}
.social-medias svg {
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
}

.flex{
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-start{
  align-items: flex-start;
}

.flex-jc-start{
  justify-content: flex-start;
}

.flex-around{
  justify-content: space-around;
}

.flex-column{
  flex-direction: column;
}

.flex-g-1{
  gap: 1rem;
}

.col{
  flex: 1;
}

.col-list ul li{
  list-style: none;
}

.col-list ul li a{
  text-decoration: none;
  color: var(--color-3);
  transition: var(--transition);
  line-height: 2em;
  font-size: 1.3em !important;
}

.col-list ul li a:hover,
.col-list ul li a:focus{
  color: var(--color1);
  text-decoration: underline
}


@media screen and (max-width: 1100px){
  .footer-nav{
    flex-direction: column
  }
}