:root {
  --main-color: #6ca7cf;
}

footer {
  margin-top: 140px;
  width: 100%;
}

footer .foot_container {
  background-color: var(--main-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

footer .foot_container .top {
  width: 90%;
  max-width: 1920px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

footer .foot_container .top .topLeft {
  width: 15%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 3em;
}

.topLeft .logoFooter {
  width: 100%;
  max-width: 190px;
}

.topLeft .logoFooter img {
  width: 100%;
  max-width: 190px;
}

.phoneFooter {
  margin-top: 3em;
  margin-bottom: 1em;
}

.phoneFooter a,
.mailFooter a,
.phoneFooter a:visited,
.mailFooter a:visited {
  color: white;
  font-size: 1em;
  font-weight: 400;
  padding-right: 1em;
  border-right: solid rgba(255, 255, 255, 0);
  transition: 0.5s;
}

.phoneFooter a:hover,
.mailFooter a:hover {
  border-right: solid white;
  transition: 0.5s;
}

.phoneFooter span,
.mailFooter span {
  color: white;
  font-size: 1.4em;
  font-weight: 100;
  padding-right: 0.5em;
}

footer .foot_container .top .topRight {
  width: 85%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  padding-left: 160px;
  padding-top: 40px;
}

.intro,
.legal,
.msinvsFooter {
  width: 100%;
}

.footMenuHead {
  color: white;
  font-size: 1.2em;
}

.topRight div ul {
  list-style: none;
  margin-left: 0.5em;
  margin-top: 0.5em;
}

.topRight div ul li {
  padding-right: 1em;

  padding-left: 0.5em;

  border-left: solid rgba(255, 255, 255, 0);
  transition: 0.5s;
}

.topRight div ul li:hover {
  border-left: solid white;
  transition: 0.5s;
}

.topRight div ul li a,
.topRight div ul li a:visited {
  display: block;
  width: 100%;
  color: white;
  font-weight: 200;
}

footer .footText {
  width: 90%;
  max-width: 1920px;
  margin-top: 50px;
  margin-bottom: 2em;
}

footer .footText p {
  color: white;
  font-weight: 300;
  font-size: 1em;
  text-align: justify;
  margin-bottom: 1em;
}

footer .copy {
  text-align: center;
  color: #000000;
  background-color: #d1e4f0;
  font-size: 1em;
  width: 100%;
  padding: 1em;
}

@media screen and (max-width: 900px) {
  footer .foot_container .top .topLeft {
    width: 15%;
    min-width: 150px;
  }

  footer .foot_container .top .topRight {
    flex-direction: column;
    padding-left: 50px;
  }

  .topRight div ul {
    list-style: none;
    margin-left: 0.5em;
    margin-bottom: 1.5em;
  }
}