.contact_section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 100px;
  background: var(--light-background);
}
.contact_section .head_sec {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_section .head_sec h3 {
  position: relative;
  font-size: 25px;
  color: var(--dark-color);
  font-weight: 600;
}
.contact_section .content_sec {
  position: relative;
  margin-top: 100px;
  display: flex;
  margin-top: 20px;
}
.contact_section .content_sec p {
  position: relative;
  font-size: 14px;
  color: var(--dark-color-1);
  font-weight: 500;
}
.contact_section .contact_info_sec {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.contact_section .contact_info_sec .right_sec {
  position: relative;
  width: 570px;
  display: flex;
  flex-direction: column;
}
.contact_section .contact_info_sec .right_sec .info_sec {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact_section .contact_info_sec .right_sec .info_sec .info_box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 12px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  box-shadow: 8px 10px 20px rgba(0,0,0,0.2),
              -4px -4px 10px rgba(153, 153, 153, 0.2);
}
.contact_section .contact_info_sec .right_sec .info_sec .info_box:nth-child(2) {
  margin: 20px 0;
}
.contact_section .contact_info_sec .right_sec .info_sec .info_box a {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--dark-color-1);
  background: var(--theme-light-color);
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
}
.contact_section .contact_info_sec .right_sec .info_sec .info_box p {
  position: relative;
  width: calc(100% - 40px);
  font-size: 15px;
  color: var(--dark-color-1);
  font-weight: 600;
  padding-left: 15px;
  cursor: pointer;
}
.contact_section .contact_info_sec .right_sec .map_sec {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.contact_section .contact_info_sec .right_sec .map_sec iframe {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  border-radius: 6px;
}
.contact_section .contact_info_sec .left_sec {
  position: relative;
  width: calc(100% - 600px);
  display: flex;
  justify-content: center;
  /* align-items: center; */
}
.contact_section .contact_info_sec .left_sec form {
  position: relative;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 35px 40px;
  border-radius: 8px;
  box-shadow: 8px 10px 20px rgba(0,0,0,0.2),
              -4px -4px 10px rgba(153, 153, 153, 0.2);
}
.contact_section .left_sec form .input_box {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.contact_section .left_sec form .input_box.halfWidth {
  width: 47.5%;
}
.contact_section .left_sec form .input_box.fullWidth {
  width: 100%;
}
.contact_section .left_sec form .input_box input {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 5px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  outline: none;
  border: none;
  background: transparent;
}
.contact_section .left_sec form .input_box textarea {
  position: relative;
  width: 100%;
  height: 106px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  outline: none;
  border: none;
  background: transparent;
  resize: none;
}
.contact_section .left_sec form .input_box span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  line-height: 45px;
  pointer-events: none;
  transition: all 0.6s ease-in-out;
}
.contact_section .left_sec form .input_box .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background: rgb(220, 220, 220);
}
.contact_section .left_sec form .input_box .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}
.contact_section .left_sec form .input_box input:focus ~ span,
.contact_section .left_sec form .input_box input:valid ~ span,
.contact_section .left_sec form .input_box textarea:focus ~ span,
.contact_section .left_sec form .input_box textarea:valid ~ span {
  top: -25px;
  font-size: 13px;
  color: var(--theme-color);
  transition: all 0.6s ease-in-out;
}
.contact_section .left_sec form .input_box input:focus ~ .line::after,
.contact_section .left_sec form .input_box input:valid ~ .line::after,
.contact_section .left_sec form .input_box textarea:focus ~ .line::after,
.contact_section .left_sec form .input_box textarea:valid ~ .line::after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}
.contact_section .left_sec form .form_btn {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.contact_section .left_sec form .form_btn button {
  position: relative;
  width: 250px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--light-color);
  font-weight: 500;
  border: none;
  border-radius: 5px;
  background: linear-gradient(to right, rgba(252, 138, 6, 1) 0%, rgba(252, 137, 6, 0.562) 100%);
  cursor: pointer;
}
.contact_section .left_sec form .form_btn button:hover {
  background: linear-gradient(to right, rgba(252, 137, 6, 0.562) 0%, rgba(252, 138, 6, 1) 100%);
}
