.contact-container {
  position: absolute;
  z-index: 1;
  transition: transform 0.4s;
  height: calc(100% - 30px);
  width: calc(100% - 30px);
  background-color: yellow;
  transform: translateX(100%);
}

.contact-container-triggered {
  transform: translateX(calc(0px + 30px));
}

.contact-left {
  vertical-align: top;
  width: 30px;
  height: 100%;
  /* background-color: lightseagreen; */
  background-color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.contact-left:hover {
  cursor: pointer;
}

.contact-left-text {
  width: 20px;
  padding: 0 5px;
  margin-top: 30px;
  word-break: break-all;
  /* font-weight: 400; */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 20px;
  line-height: 25px;
}

.contact-right {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 30px);
  height: 100%;
  background-color: lightpink;
  position: relative;
}

.contact-content {
  height: 100%;
  width: 100%;
  position: relative;
}

.contact-content-left-container {
  width: 50%;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-content-left-text {
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .contact-content-left-container {
    width: 100%;
  }
}

.contact-content-left-socials {
  display: flex;
  justify-content: center;
}

.contact-content-left-socials-item {
  display: inline-block;
  width: 20px;
  height: 23px;
  margin-right: 20px;
  cursor: pointer;
}

.contact-content-left-socials-item a {
  transition: color 0.3s;
  color: #000;
  text-decoration: none;
}

.contact-content-left-socials-item:visited,
.contact-content-left-socials-item:active,
.contact-content-left-socials-item:focus {
  color: #000;
  text-decoration: none;
}

.contact-content-left-socials-linkedin:hover a {
  color: #0e76a8;
}

.contact-content-left-socials-github:hover a {
  color: #231e1b;
}

.contact-content-left-socials-soundcloud:hover a {
  color: #ff7700;
}

.contact-content-right-container {
  width: 50%;
  height: 100%;
  vertical-align: top;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
.contact-content-right-container {
    width: 100%;
 }
}

.contact-content-right-form-container {
  width: 70%;
}

.contact-content-form-input {
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}

.contact-content-form-subject-input {
  color: #000;
}

.contact-content-form-email-input {
  margin-top: 20px;
}

.contact-content-form-content-input {
  margin-top: 20px;
}

.contact-content-form-input::placeholder {
  color: #000;
}

.contact-content-form-input-separator {
  height: 1px;
  width: 100%;
  background-color: #fff;
}

.contact-content-form-button-container {
  display: inline-block;
  z-index: 0;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.contact-content-form-button-container:before {
  transition: all 0.3s;
  display: block;
  content: '';
  position: absolute;
  z-index: -1;
  top: -10%;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}

.contact-content-form-button-container:hover:before {
  top: 50%;
}

.contact-content-form-button {
  font-size: 14px;
  color: #000;
  transition: all 0.3s;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.contact-content-form-error {
  transition: all 0.3s;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  opacity: 0;
  margin-top: 20px;
}

.contact-content-form-error-show {
  opacity: 1;
}

.contact-content-copyright {
  color: #000;
  /* text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7); */
  font-size: 12px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(calc(-50% - 40px), -150%);
}
