footer {
  color: #cecece;
  background: #0f0f0f;
  position: relative;
}

footer #goToTopBtn {
  opacity: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 3px solid #0e0e0e;
  background: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  right: 40px;
  bottom: 40px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-filter: drop-shadow(0 10px 10px rgba(14, 14, 14, 0.685));
          filter: drop-shadow(0 10px 10px rgba(14, 14, 14, 0.685));
}

footer #goToTopBtn svg {
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

footer #goToTopBtn:hover {
  background: white;
  color: black;
  border: 3px solid #eeeeee;
}

footer #goToTopBtn:hover svg {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

footer .footerContainer {
  padding: 8% 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  letter-spacing: 0.9px;
}

@media (max-width: 800px) {
  footer .footerContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 12% 6%;
  }
}

footer .footerContainer .leftRow {
  -webkit-box-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
}

@media (max-width: 800px) {
  footer .footerContainer .leftRow {
    margin-top: 50px;
  }
}

footer .footerContainer .leftRow .footInfoRow {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
}

footer .footerContainer .leftRow .footInfoRow :nth-child(1) {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footerContainer .leftRow .footInfoRow :nth-child(1) svg {
  height: 18px;
  width: 18px;
}

footer .footerContainer .leftRow .footInfoRow .footAdress {
  display: block;
  width: 60%;
  line-height: 25px;
}

@media (max-width: 800px) {
  footer .footerContainer .leftRow .footInfoRow .footAdress {
    width: 100%;
  }
}

footer .footerContainer .leftRow .socialIcons {
  margin-top: 40px;
  padding-left: 35px;
}

footer .footerContainer .leftRow .socialIcons a {
  margin-right: 10px;
}

footer .footerContainer .leftRow .socialIcons a svg {
  width: 25px;
  height: 25px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

footer .footerContainer .leftRow .socialIcons a:hover svg {
  color: #cecece;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

footer .footerContainer .rightRow {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 800px) {
  footer .footerContainer .rightRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

footer .footerContainer .rightRow a {
  color: #cecece;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

@media (max-width: 800px) {
  footer .footerContainer .rightRow a {
    font-size: 0.85rem;
  }
}

footer .footerContainer .rightRow a:hover {
  color: white;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

footer .footerBtm {
  text-align: center;
  padding: 25px 0;
  letter-spacing: 1.2px;
  font-weight: 300;
}

@media (max-width: 800px) {
  footer .footerBtm {
    background: #080808;
  }
}
/*# sourceMappingURL=footer.css.map */