/* contact section styles start */
:root {
  --black: #1d1d1d;
  --white: #ffffff;
  --error-message-color: red;
  --contact-bg-color: #f1f1f1;
}

.contact-section {
  padding-top: 60px;
  padding-bottom: 45px;
  color: var(--black);
  background: url("../images/contact-form-bg.webp") 0 0 no-repeat;
  background-size: contain;
  overflow-x: hidden;
  position: relative;
}
@media(max-width: 767.98px) {
  .contact-section {
    padding-top: 45px;
  }
}

.contact-section .areas-list {
  margin-bottom: 7px;
}
.contact-section .container > .row .col-6 {
  max-width: 48%;
}
.contact-section:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--contact-bg-color);
  z-index: 1;
}
.contact-section .container {
  position: relative;
  z-index: 2;
  --bs-gutter-x: 35px;
}

@media (max-width: 1200px) {
  .contact-section .container {
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .contact-section .container {
    max-width: 100%;
    --bs-gutter-x: 30px;
  }
}
.contact-section .row {
  --bs-gutter-x: 35px;
}
@media (max-width: 768px) {
  .contact-section .row {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 992px) {
  .contact-section {
    background-size: auto;
  }
}
.contact-section .block-header h1 {
  color: var(--black);
  font-size: 50px;
  line-height: 1;
  font-weight: 300;
}
.contact-section .block-header h1 span {
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-section .block-header h1 {
    padding-top: 0px;
    font-size: 40px;
  }
}
.contact-section .block-subheader {
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .contact-section .block-subheader br {
    display: none;
  }
}


.form {
  font-size: 14px;
  line-height: 22px;
  max-width: 755px;
  width: 100%;
}
.form .button {
  background: none;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  padding: 19px 27px;
  font-size: 16px;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .button i {
  margin-left: 19px;
  font-size: 12px;
}
.form .button:hover, .form .button:focus {
  background: var(--white);
  color: var(--black);
}
.form .button:hover:after, .form .button:focus:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='6px' height='10px'%3E%3Cpath fill='%231d1d1d' d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z'/%3E%3C/svg%3E");
}
.form .button:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='6px' height='10px'%3E%3Cpath fill='%23fff' d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z'/%3E%3C/svg%3E");
  width: 6px;
  height: 16px;
  display: block;
  margin-left: 20px;
}
.form .error {
  color: var(--error-message-color);
}

.form-header h2 {
  text-align: left;
}
.form-header h2 span {
  font-weight: 600;
}
@media (max-width: 768px) {
  .form-header h2 {
    margin-bottom: 15px;
  }
}

.form-group label {
  margin-bottom: 7px;
}

.form-control {
  height: 50px;
  font-size: 14px;
  line-height: 22px;
  background: var(--gray-bg);
}

textarea.form-control {
  height: 143px;
  font-size: 14px;
  line-height: 22px;
}

.contact-panes {
  margin-top: 76px;
}
@media (max-width: 991px) {
  .contact-panes .col-12 {
    margin-bottom: 35px;
  }

  .contact-section h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact-panes .col-12 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .contact-panes {
    margin-top: 47px;
  }
}

.contact-pane {
  background: var(--white);
  color: var(--black);
  padding: 38px 40px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 10px;
  height: 100%;
}
@media (max-width: 1140px) {
  .contact-pane {
    padding: 22px 19px;
  }
}
.contact-pane .pane-icon {
  height: 50px;
}
.contact-pane .pane-icon svg path {
  fill: var(--black);
}
.contact-pane .pane-header {
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}
.contact-pane .pane-header span {
  font-weight: 600;
}
.contact-pane .pane-body {
  padding-top: 4px;
}
.contact-pane .pane-body a {
  color: var(--black);
  text-decoration: none;
}
.contact-pane .pane-body strong {
  font-weight: 600;
}
.contact-pane .pane-body .big {
  font-size: 20px;
}
.contact-pane .pane-body .big strong {
  font-weight: 700;
}
.contact-pane .pane-body .socials {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 42px);
  grid-template-rows: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-pane .pane-body .socials li a {
  display: block;
  background: var(--black);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--white);
}

.custom-checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.custom-checkbox-group label {
  line-height: 22px;
  margin-bottom: 0;
}

.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 20px;
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ced4da;
}
.checkmark.error {
  background-color: var(--error-message-color);
}

.custom-checkbox input:checked ~ .checkmark, .custom-checkbox input:checked {
  background-color: #fff !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==") 2px 2px no-repeat;
  -webkit-animation: checkbox 0.3s linear;
          animation: checkbox 0.3s linear;
}

@-webkit-keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 20px;
  }
}

@keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 20px;
  }
}
/* contact section styles end */
