#contact-section {
  margin: 60px auto 0;
  height: fit-content;
}

.contact-container {
  position: relative;
  border-radius: 20px;
  transition: box-shadow 0.5s;

  & .contact-container-header {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--container-header-bg-color);
    opacity: .85;
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
    z-index: 1;
    
  }

  & .contact-container-main {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    border-radius: 20px;
    background-image: linear-gradient(145deg, var(--primary-color1), var(--secondary-color1) 60%);
    opacity: .9;

    
    & .contact-container-content {
      position: relative;
      top: 50px;
      height: calc(100% - 50px);
      padding: 20px;
      border-radius: 20px;
      
      & .verify-container-content {
        /* display: flex; */
        
        & p {
          font-size: .85em;
          margin-bottom: 35px;
        }

        /* & #verify-key-wrapper {
          border-top: 2px solid var(--light-color);
          
        } */

        & .verify-group {
          display: flex;
          margin-bottom: 40px;
          gap: 20px;

        

          & .verify-btn-group {
            min-width: calc( 30% - 20px );
            align-content: center;

            & button {
              width: 100%;
              height: 35px;
              margin-top: 5px;
              background-color: var(--primary-color1);
              color: var(--light-text-color);
              border-radius: 5px;
              border: none;
              cursor: pointer;
              transition: background-color 0.3s;

              &:hover {
                background-color: var(--primary-color2);
              }
            }
          }
        }
  
      }

      & .form-groups-wrapper {
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin-bottom: 20px;

        & .form-inputs-wrapper {
          width: 40%;
        }

        & .form-textarea-wrapper {
          width: 60%;
        }
      }
  
    }

  }
  
}

.contact-container-main:hover img {
  z-index: -1;
  opacity: .07;
}


.contact-message-wrapper {
  /* display: none; */
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;

}

.contact-message-wrapper-show {
  position: relative;
  top: 30px;
  margin: 0;
  padding: 15px 40px;
  opacity: .75;
  border-radius: 15px;
  text-align: center;
  color: var(--light-text-color);
}

.contact-message-ok {
  background-color: var(--ok-color);
}

.contact-message-error {
  background-color: var(--error-color);
}

/********* Message form *******************/

#verify-formular-wrapper .form-input-group {
  padding: 0;
}

#verify-formular-wrapper .form-btn-group {
  padding: 0;

}

.form-inputs-wrapper {
  width: 40%;
}

.form-textarea-wrapper {
  width: 60%;
}

textarea { 
  height: 246px;
  resize: none;
}

.contact-formular-active {
  z-index: -1;
  opacity: .1;
}

.contact-form-overlay-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}

/********* Information card *******************/

/** General **/

.company-information-card {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  height: 100%;
}


/** Left Column **/
.information-card-left-column {
  position: relative;
  background-color: var(--light-bg-color);
  padding: 50px 0 20px 20px;

  & img {
    width: 100%;
  }

  & span {
    position: relative;
    right: 0px;
  }
}

.contact-container-main:hover .information-card-left-column {
  opacity: .95;
}

.contact-container-main:hover .information-card-left-column img {
  z-index: 1;
  opacity: 1;
}

.company-logo-edge {
  position: absolute;
  height: 100%;
  width: 70px;
  top: 0;
  right: -70px;
  border-top: 110px solid transparent;
  border-right: 0px solid transparent;
  border-left: 70px solid var(--light-bg-color);
  border-bottom: 250px solid transparent;
} 

/** Left Column **/
.information-card-right-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;

  
  & .corp-info-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;

    & .corp-info-item-icon_svg {
      fill: var(--light-color);
      width: 20px;
      height: 20px;
    }
  }

  & div:nth-child(1) {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  & div:nth-child(2) {
    font-size: .9rem;
  }

  & div:nth-child(3) {
    font-size: .9rem;
  }
  
  & div:nth-child(4) {
    font-size: .9rem;
  }

  & div:nth-child(6) {
    font-size: .8rem;
  }

  & a:hover {
    color: var(--a-href-color2);
  }
}