.contact-container {
  height: 4000px;
  background-color: rgb(27, 36, 50);
}

.floating-container {
  position: fixed;
  display: flex;
  align-items: center;
  bottom: 70px;
  right: 0;
  transform: scale(0.7);
  z-index: 999;
}

.floating-contact {
  bottom: 10px;
  right: 50px;
  height: 128px;
  width: 128px;
  border-radius: 50%;
  border: 3px solid #e04622;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
  background-image: url("//img/demos/construction/logo-dark.png");
  background-size: contain;
  background-position-x: 1px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  color: white;
}

.floating-contact__phone {
  border-radius: 50%;
  right: -21px;
  bottom: 65px;
  position: absolute;
  height: 45px;
  width: 45px;
  background-color: #e04622;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.25));
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.floating-contact__close {
  border-radius: 50%;
  right: -15px;
  top: -15px;
  position: absolute;
  height: 45px;
  width: 45px;
  background-color: #e04622;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.25));
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  display: flex;
  opacity: 0;
}

.floating-contact__close.active {
  opacity: 1;
}

.floating-contact__phone.active,
.floating-contact__mail.active {
  opacity: 0;
}

.floating-contact__mail {
  border-radius: 50%;
  right: 5px;
  bottom: -5px;
  position: absolute;
  height: 65px;
  width: 65px;
  background-color: #e04622;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.25));
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.floating-buttons {
  background: transparent;
  height: 230px;
  width: 355px;
  margin-right: -300px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}

.floating-buttons.active {
  display: flex;
  opacity: 1;
  margin-right: -115px;
  pointer-events: auto;
}

.floating-call,
.floating-mail {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 40px;
  background: #021e31;
  color: #ffffff;
  line-height: 24px;
}

.floating-call {
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.floating-mail {
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.icon-circle {
  background-color: #e04622;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.floating-buttons__text {
  width: 105px;
}

@media (max-width: 1199px) {
  .header-logo .logo {
    top: 60px !important;
    left: 50px;
  }
}
