button {
  background: none;
  border: none;
  cursor: pointer;
}
input,
textarea {
  outline: none;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  box-shadow: none;
  resize: none;
  font-size: 24px;
  font-weight: 400;
  height: 3rem;
  width: 100%;
  color: black;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.contactForm {
  display: flex;
  padding: 3.5rem 5%;
  gap: 15%;
}
.contactFormHeader {
  font-size: 3rem;
  font-weight: 700;
}
.form {
  margin-top: 4.75rem;
}
#surname {
  margin-left: 20px;
}
#numberArea {
  width: 20%;
}
#number {
  width: 79%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 190px;
}
.contactFormMessageSend {
  height: 181px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contactForRead {
  display: flex;
  flex-direction: row;
  gap: 30%;
  align-items: center;
  margin-top: 2rem;
}
.h-captcha {
  margin-top: 2rem;
}
.contactForReadBox {
  width: 23px;
  height: 23px;
  border: 2px solid #f92937;
}
.contactFormImg img{
    width:100%;
}
.container {
  cursor: pointer;
}
.container input {
  display: none;
}

.container svg {
  overflow: visible;
}

.path {
  fill: none;
  stroke: black;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.container input:checked ~ svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

.container input {
  display: none;
}

.container svg {
  overflow: visible;
}

.path {
  fill: none;
  stroke: #f92937;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.container input:checked ~ svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

.contactForReadText {
  font-size: 12px;
  font-weight: 400;
}
.contactForReadText span {
  text-decoration: underline;
}
.contactFormSend {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px solid black;
  margin-top: 2rem;
}
.contactInfoBox {
    padding: 10rem 0;
}
.contactInfoContainer {
  background-color: #e8e8e8;
}
.contactInfoContainerContainer {
    padding: 0 5%;
}
.contactInfoTexts {
  display: flex;
  flex-direction: row;
  padding: 2rem 0;
  gap: 10%;
}
.contactInfoHeader {
  width: 15rem;
  font-size: 3rem;
  font-weight: 700;
}
.contactInfoText {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: start;
}
.dropdown {
  position: relative;
  display: inline-block;
  width: 12rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.dropdown-content {
  position: absolute;
  min-width: 160px;
  z-index: 1;
  opacity: 0;
  top: 0;
  transition: 300ms, opacity 0.3s ease;
}

.dropdown-content.above {
  bottom: 100%;
  padding-bottom: 0.5rem;
  transform-origin: bottom;
}

.dropdown-content.below {
  bottom: 100%;
  padding-top: 0.5rem;
  transform-origin: bottom;
}

.dropdown-content label {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: #5a5f63;
}

.dropdown-content label:hover {
  border-bottom: 2px #f92937 solid;
}

.dropdown-content input[type="radio"] {
  display: none;
}

.dropdown:hover .dropdown-content.above {
  opacity: 1;
  top: -50px;
}
.dropdown:hover .dropdown-content.below {
  opacity: 1;
  top: 50px;
}

#dropdownButton {
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  position: relative;
}

#dropdownButton::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #f92937;
  animation: moveBorder 2s linear infinite;
}
.contactFormDropdownGroup {
  display: none;
}
@keyframes moveBorder {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media screen and (max-width: 660px) {
  .contactFormRadioGroup > *:first-child {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
  }
  .contactFormDropdownGroup {
    display: block;
    padding: 1rem 0;
  }

  .radiolabel {
    padding-right: 1rem;
    font-size: 1.5rem;
  }
  .contactFormContainer {
    display: block;
    padding: 3rem 8%;
  }
  .contactForm {
    width: auto;
    padding: 0;
    margin: 0;
    display: block;
  }
  .dropdown {
    display: none;
  }
  .form {
    margin: 0;
    display: block;
  }
  input,
  textarea {
    width: 100%;
  }
  .contactFormGroup {
    font-size: 1.5rem;
  }
  .contactFormGroup p {
    padding: 1rem 0;
  }
  .contactFormGroup label {
    color: #393939;
  }
  .radiolabel {
    display: inline-flex;
  }
  .radio {
    height: auto;
  }
  #numberArea {
    width: 13%;
  }
  #number {
    width: 85%;
    padding: 0;
  }
  .contactForRead {
    justify-content: unset;
  }
  .contactForReadText {
    padding-left: 9%;
    font-size: 0.864rem;
  }
  .contactInfoBox {
    height: auto;
    width: auto;
  }
  .contactInfoContainer {
    height: auto;
    display: block;
    padding: 3rem 8%;
  }
  .contactInfoContainerContainer {
    width: auto;
    height: auto;
    margin: 0;
    display: block;
  }
  .contactInfoTextBox {
    height: auto;
    display: block;
  }
  .contactInfoTexts {
    display: block;
    height: auto;
  }
  .contactInfoHeader {
    width: auto;
  }
  .contactInfoText {
    width: auto;
    padding: 2rem 0;
  }
  iframe {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 1190px){
    .contactFormImg{
        display:none;
    }
}
