/* FOOTER */
footer.v2 > div {
  width: 95%;
  max-width: 1300px;
  margin: auto;
}
footer.v2 {
  background: #263644;
}
footer.v2 p {
  color: white;
}
/*Footer Topbar */
footer.v2 .top-flexbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
footer.v2 .logo-col {
  display: flex;
  justify-content: center;
  flex-grow: 0;
  margin-left: auto;
  margin-right: auto;
}
footer.v2 .logo {
  width: 200px;
}
footer.v2 .social-col {
  flex-grow: 1;
}
.social-flex {
  width: 100%;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
.social-flex p {
  margin-right: 1rem;
  display: none;
}
.social-flex a {
  border: 1px solid #1593FF;
  width:45px;
  height:45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: 0.1s ease-in-out;
}
.social-flex a:hover {
  background: #1593FF;
}
.social-flex svg {
  width: 24px;
  height: 24px;
}
/* Footer Main Area */
footer.v2 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer.v2 ul li a {
  color: #E4EFF7;
  text-decoration: none;
  padding: 0.3rem 0;
  display: inline-block;
  transition: 0.1s ease-in-out;
}
footer.v2 ul li a:hover {
  color: #fff;
}
footer.v2 .bottom-flexbox {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #697A88;
  border-bottom: 1px solid #697A88;
  padding: 2rem 0 1rem;
}
footer.v2 .bottom-flexbox .flex-column {
  flex: initial;
  width: 100%;
  padding-bottom: 1.5rem;
}
/* Footer Socket (Copyright Area) */
footer.v2 .socket {
  padding: 1rem 0;
}
footer.v2 .socket p {
  opacity: 0.7;
}


/* MEDIA QUERIES */
@media (min-width: 576px) {
  footer.v2 .top-flexbox .flex-column {
    flex: initial;
    width: 50%;
  }
  .social-flex {
    padding-top: 0;
    justify-content: flex-end;
  }
  footer.v2 .logo-col {
    justify-content: flex-start;
  }
  footer.v2 .bottom-flexbox .flex-column {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .social-flex p {
    display: inline-block;
  }
  footer.v2 .bottom-flexbox .flex-column {
    width: 33.33%;
  }
}

@media (min-width: 992px) {
  .social-flex a {
    width:50px;
    height:50px;
  }
}
@media (min-width: 1200px) {
  footer.v2 .bottom-flexbox .flex-column {
    width: 20%;
  }
}
