@import "./shared.css";

/* start 'footer' */

#contactus-box {
  background-color: var(--secondaryColor);
  padding-bottom: 50px;
  padding-top: 80px;
}

#contactus-box h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--textMainColor);
  display: inline-block;
  border-bottom: 3px solid var(--textActionColor);
  padding-bottom: 3px;
}
/*
#contactus-box h4::before {
  position: absolute;
  content: "";
  top: 25px;
  width: 50%;
  height: 3px;
  background: var(--mainColor);
}*/

/* start box-1 ------------------------*/
#contactus-box #box-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contactus-box #box-1 .logo {
  max-width: 100%;
  margin-bottom: 30px;
  margin-top: -9px;
}

#contactus-box #box-1 p {
  color: var(--textSecondaryColor);
  word-break: keep-all;
  hyphens: none;
  text-align: center;
}

#contactus-box #box-1 .Jahre25 {
  width: 90px;
}

/* start box-2 -------------------------*/
#contactus-box #box-2 .wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 15px;
}
#contactus-box #box-2 .wrapper i {
  margin-right: 15px;
  color: var(--textSecondaryColor);
}

#contactus-box #box-2 .wrapper div {
  display: flex;
  flex-direction: column;
}

#contactus-box #box-2 .wrapper div a,
#contactus-box #box-2 .wrapper a {
  color: var(--textSecondaryColor);
}

/* start box-3 -------------------------*/
#contactus-box #box-3 .time {
  color: var(--textSecondaryColor);
}

#contactus-box #box-3 .time p {
  position: relative;
  padding-left: 15px;
  margin-bottom: 7px;
}

#contactus-box #box-3 .time p::before {
  width: 5px;
  height: 5px;
  background-color: var(--textSecondaryColor);
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  content: "";
}

#contactus-box #box-3 .partners {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
}

#contactus-box #box-3 .partners .img1 {
  width: 150px;
  height: 60px;
  object-fit: contain;
  margin-right: 20px;
}

#contactus-box #box-3 .partners .img2 {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* start responsive edit (tablet) */
@media (min-width: 768px) and (max-width: 991px) {
  #contactus-box #box-1 {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* start responsive edit (mobile) */
@media screen and (max-width: 767px) {
  #contactus-box #box-3 .partners {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------------------------- */
/* start copyright part ---------------------*/
#copyright {
  padding-bottom: 15px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  background: var(--mainColor);
  color: white;
}

#copyright a:hover {
  color: white;
  text-decoration: underline;
}
/* start scroll to top button */
.scroll-to-top {
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 60px;
  padding-top: 9px;
  right: 5%;
  display: none;
  z-index: 99999;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  background: var(--mainColor);
  border: 2px solid white;
}

.scroll-to-top .scroll-icon {
  font-size: 30px;
  color: white;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  #contactus-box #box-2 {
    margin-top: 40px;
  }

  #contactus-box #box-3 {
    margin-top: 25px;
  }

  #copyright {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* end 'footer' */
