/* Container */
.contact-section .content-wrapper{
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
/* Left side */
.contact-section .contact-left {
  flex: 1;
  max-width: 562px;
  padding-right: 40px;
}
.contact-section .contact-heading {
  color:var(--primary_color);
  letter-spacing: -0.64px;
}
.contact-section .contact-description {
  margin: 20px 0 70px 0;
}
.contact-section .contact-description p {
  letter-spacing: -0.16px;
}
.contact-section .contact-description p:last-child {
  margin: 0;
}
.contact-section .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.contact-section .contact-info-item,.contact-section .contact-info-item a{
  display: flex;
  align-items:self-start;
  gap:26px;
}

.contact-section .icon {
  fill: #f15125;
  margin-right: 12px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
/* Right side - Form */
.contact-section .contact-form {
  flex: 1;
  max-width: 563px;
  width: 100%;
  margin-left: auto;
}
.contact-section .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-info-item a {
  letter-spacing: -0.16px;
  color: var(--body_text_color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contact-section .contact-info-item a:hover {
  color: var(--primary_color);
}
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-section form .hs-form-field  > label {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: inline-block;
  margin-bottom: 15px;
}

.contact-section form .hs-form-field {
  margin-bottom: 28px;
}

.contact-section form .hs-form-field .hs-input {
  background-color: #FFFFFF;
  width: 100%;
  display: block;
  outline: none;
  padding: 15px 20px;
  border: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.contact-section form .hs-error-msg ,.contact-section form .hs-error-msgs{
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: inline-block;
  color: red;
}

.contact-section form ul {
  list-style: none;
  padding: 0;
  margin: 5px 5px;
}

.contact-section form .hs-form-field textarea {
  min-height: 129px;
}

.contact-section form  input.hs-button {
  width: 100%;
  display: inline-block;
  border: 1px solid var(--primary_color);
  padding: 16px 10px 15px;
  background-color: var(--primary_color);
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  white-space: normal;
  transition: background .2s, color .2s;
}
.contact-section form input.hs-button:hover {
  background-color: transparent;
  color: var(--primary_color);
}
.contact-section form ul.inputs-list > li > label {
  display: flex;
  align-items: center;
  position: relative;
  gap:15px; 
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.contact-section form ul.inputs-list input[type="checkbox"] {
  width: 18px;
  margin: 4px;
  height: 18px;
  opacity: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.contact-section form ul.inputs-list input[type="checkbox"] + span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 0;
  pointer-events: none;
}
.contact-section form ul.inputs-list input[type="checkbox"] + span:after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 10px;
  left: 9px;
  left: 10px;
  position: absolute;
  top: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
}
.contact-section form ul.inputs-list input[type="checkbox"]:checked ~ span::before{
  background-color:var(--primary_color);
}
.contact-section form ul.inputs-list input[type="checkbox"]:checked ~ span::after {
  display: block;
}
.contact-section form ul.inputs-list input[type=radio] {
  cursor: pointer;
  height: 18px;
  margin: 4px;
  opacity: 0;
  position: relative;
  width: 18px;
  z-index: 1;
}
.contact-section .content-wrapper.full-width .contact-left {
	max-width: 100%;
	padding: 0;
}
.contact-section form ul.inputs-list input[type=radio] + span:before {
  background-color: #fff;
  border-radius: 3px;
  content: "";
  display: block;
  height: 18px;
  left: 4px;
  pointer-events: none;
  position: absolute;
  top: 4px;
  width: 18px;
  z-index: 0;
  border-radius: 50%;
}
.contact-section form ul.inputs-list a {
  color: inherit;
  text-decoration: none;
}
.contact-section form ul.inputs-list input[type=radio] + span:after {content: "";display: block;height: 14px;left: 6px;pointer-events: none;position: absolute;top: 6px;width: 14px;z-index: 0;border-radius: 50%;background-color: var(--primary_color);display: none;}
.contact-section form ul.inputs-list input[type=radio]:checked~span:before{background-color: #fff;}
.contact-section form ul.inputs-list input[type=radio]:checked~span:after{display:block}
@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
@media(max-width:1600px){
  .contact-section .contact-form {
    margin-right: auto;
    margin-left: 0;
    padding-right: 6%;
  }
}
@media(max-width:1367px){
  .contact-section .contact-form {
    padding-right:12%;
  }
}
@media(max-width:991px){
  .contact-section .contact-form {
    padding-right:15%;
  }
}
@media(max-width:767px){
  .contact-section .content-wrapper {
    flex-direction: column;
  }
  .contact-section .contact-left,.contact-section .contact-form {
    max-width: 100%;
    padding: 0;
  }
  .contact-section .contact-left {
    margin-bottom: 30px;
  }
  .contact-section .contact-description {
    margin: 20px 0 35px;
  }
  .contact-section .contact-heading br {
    display: none;
  }
}