#contact {
  padding-top: 195px;
  padding-bottom: 224px;
}

#contact .title h2 {
  margin-bottom: 18px;
}

#contact .title {
  margin-bottom: 88px;
}

#contact .body {
  width: 100%;
  gap: 0px 50px;
}

#contact .left {
  width: 55%;
  max-width: 800px;
  gap: 25px 0;
}

#contact .left .services .checkboxes-container {
  gap: 0 53px;
}

#contact .left .services p.sub-title {
  margin-bottom: 16px;
}

#contact .left .custom-checkbox {
  gap: 0 23px;
}

#contact .left .custom-checkbox input[type="checkbox"] {
  position: absolute;
  width: 31px;
  height: 33px;
  opacity: 0;
  cursor: pointer;
  z-index: 99;
}

#contact .left .custom-checkbox label {
  gap: 0px 10px;
  width: 30px;
}

#contact .left .custom-checkbox label .box {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 2px solid #707070;
  background-color: white;
  transition: all 0.15s;
}

#contact .left .custom-checkbox input:checked + .box {
  position: relative;
  background-color: var(--green);
  border: 2px solid var(--green);
}

#contact .left .custom-checkbox input:checked + .box svg {
  width: 20px;
  height: 20px;
}

#contact .left .custom-checkbox input:checked + .box svg path {
  fill: red;
}

#contact .left .custom-checkbox input:checked + .box::after {
  position: absolute;
  content: "✓";
  top: -1px;
  left: 6px;

  color: white;
  font-weight: 600;
  font-size: 20px;
}

#contact .left input,
#contact .left textarea {
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 25px 22px;
  width: 100%;
}

#contact .left input::placeholder,
#contact .left textarea::placeholder {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.9px;
}

#contact .input-contain {
  position: relative;
}

#contact .placeholder-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 3px solid transparent;
  background-color: transparent;
  display: flex;
  align-items: center;
  pointer-events: none;
}

#contact form .text {
  font-size: 18px;
  padding: 0px 22px;
  background-color: transparent;
  color: black;
  transform: translate(0);
  transition: transform 0.15s ease-out, font-size 0.15s ease-out,
    background-color 0.2s ease-out, color 0.15s ease-out;
}

#contact input,
#contact textarea .placeholder-text,
#contact textarea {
  font-size: 18px;
  padding: 0 22px;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: var(--green) !important;
}

#contact input:focus + .placeholder-text .text,
#contact textarea:focus + .placeholder-text .text {
  background-color: white;
  font-size: 14px;
  color: var(--green);
  border-color: var(--green);
}
#contact input + .placeholder-text .text-stick,
#contact textarea + .placeholder-text .text-stick {
  background-color: white;
  font-size: 14px;
  color: var(--green);
  border-color: var(--green);
}

#contact .placeholder-text[for="fmessage"] {
  align-items: flex-start;
}

#contact label[for="fmessage"] .text {
  padding: 25px 22px;
}

#contact input:focus + .placeholder-text .text {
  transform: translate(5%, -210%);
}

#contact textarea:focus + .placeholder-text .text {
  transform: translate(5%, -57%);
  padding: 0 22px !important;
}
#contact input + .placeholder-text .text-stick {
  transform: translate(5%, -210%);
}

#contact textarea + .placeholder-text .text-stick {
  transform: translate(5%, -57%);
  padding: 0 22px !important;
}

#contact form button {
  max-width: 249px;
  padding: 16px 0;
}

#contact .right {
  width: 37%;
  max-width: 444px;
}

#contact .right .general {
  margin-bottom: 4rem;
}

#contact .right .general .top {
  margin-bottom: 2rem;
}

#contact .right .general .top .left,
#contact .right .general .top .right {
  width: 50%;
}

#contact .right .item {
  display: flex;
  align-items: center;
  gap: 0 26px;
  width: auto;
}

#contact .right .item-container .item-title {
  margin-bottom: 26px;
}

#contact .right .forwarding,
#contact .right .custom-brokers {
  margin-bottom: 4rem;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 88px;
  > .contact-info-container {
    width: 45%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    grid-gap: 1rem;

    @media screen and (max-width: 1200px) {
      width: 100%;
    }

    @media screen and (max-width: 540px) {
      flex-direction: column;
      align-items: center;

      > .contact-info-element {
        gap: 5px !important;
      }
    }

    > .contact-info-element {
      display: flex;
      align-items: center;

      gap: 26px;
      /* width: calc(33.3333% - 10px); */
      width: max-content;

      > img {
        width: 32px;
      }
    }
  }
}

@media (max-width: 1200px) {
  #contact {
    padding-top: 151px;
    padding-bottom: 61px;
  }

  #contact .title {
    margin-bottom: 33px;
  }

  #contact .title h2 {
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 2.4px;
  }

  #contact .body {
    gap: 126px 0px;
  }

  #contact .body .left {
    width: 100%;
  }

  #contact .body .right:first-child {
    width: 90% !important;
    margin: auto;
  }

  #contact .right .general {
    margin-bottom: 58px;
  }

  #contact .right .forwarding,
  #contact .right .custom-brokers {
    margin-bottom: 39px;
  }

  #contact .left .services .checkboxes-container {
    gap: 12px;
  }

  #contact form button {
    padding: 14px 0;
    font-size: 16px;
  }

  #contact .right .top {
    gap: 33px;
  }
}
