/** Shopify CDN: Minification failed

Line 296:0 Unexpected "{"

**/
.two-col-contact {
  border-bottom: 1px solid #D7D7D7;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.two-col-grid.reverse {
  direction: rtl;
}
.two-col-grid.reverse > * {
  direction: ltr;
}

.two-col-grid .icons-col{
  margin-left: 22em;
}

/* ICON LIST */
.icon-list {
  display: grid;
}

.icon-item {
  display: flex;
  gap: 16px;
  padding: 15px 0; 
  border-bottom: 1px solid #D7D7D7;
}

.icon-item img {
  width: 40px;
  height: 40px;
}

.icon-text p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.8;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #3F3F3F;
    color: #fff;
    transition: ease .3s;
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.social-icons a:hover {
    background: #FF6400 ;
}

/* CONTACT */
.contact-intro {
 color: #7F7F7F;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  border: 1px solid #e5e5e5;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
}

.contact-card .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 30px 45px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0;
  width: 230px;
  text-align: center;
  transition: .3s ease;
}

.contact-card .btn:hover {
  background: #FF6400 ;
}


.col-bg {
  background-image: var(--bg-desktop);
  background-size: var(--bg-size);
  background-position: var(--bg-position);
  background-repeat: no-repeat;
}


.icons-col .col-heading {
  margin-bottom: 15px;
}

.icons-col .icon-text {
  font-size: 18px;
}

.icons-col .icon-text p {
  margin-top: 20px;
}

.contact-card .icon-contact-card {
  margin: 20px 0;
}

@media (max-width: 1200px) {
  .two-col-grid {
    gap: 30px;
  }
  
  .two-col-grid .icons-col {
    margin-left: 18em;
  }
}


@media (max-width: 1024px) {

}



@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}


@media screen and (max-width: 435px) {
    .two-col-grid .icons-col{
    margin-left: 0;
    }

    .col-bg {
      background-image: var(--bg-mobile);
    }
}



/***Form and FAQ Section****/
/*
.two-col-section {
  padding: 60px 0;
}*/

.contact-form-faq {
  background: #F2F2F2;
}

.two-col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.two-col-wrapper.is-swapped {
  direction: rtl;
}

.two-col-wrapper.is-swapped > * {
  direction: ltr;
}

.column-heading {
  margin-bottom: 24px;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-trigger {
  width: 100%;
  padding: 35px 0;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.is-open .accordion-content {
  max-height: 500px;
}

/* Form */
.contact-form-col .contact-form__form .contact__fields {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.contact-form-col .contact-form__form .form-full-width-wrapper {
    margin-top: 20px;
}



.contact-form-col .form-field~.form-field {
  margin-top: 0;
}

.contact-form-col .contact__button button[type="submit"]{
  background:  #000;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  transition: background .3s, color .3s;
  padding: 10px 70px;
}

.contact-form-col .contact__button button[type="submit"]::before {
  background: #000;
}

.contact-form-col .contact__button button[type="submit"]:hover::before{
  background: #FF6400;
  color: #fff;
}

.field {
  margin-bottom: 16px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px;
}

@media (max-width: 768px) {
  .two-col-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 435px) {
  .contact-form-col {
    padding: 0;
    margin-top: 60px;
  }
}

.contact-form-col input[type="text"], 
.contact-form-col input[type="email"],
.contact-form-col input[type="tel"],
{
  border-radius: 20px;
  background-color: #fff;
  border: 0;
}

.contact-form-col textarea {
  resize: none;
  border-radius: 10px;
}

.contact-form-col input[type="text"]::placeholder,
.contact-form-col input[type="email"]::placeholder,
.contact-form-col input[type="tel"]::placeholder,
.contact-form-col textarea::placeholder {
  color: #222;
}

/*FAQ Col*/

.faq-btn-wrapper {
  margin-top: 35px;
}

.faq-col .faq-btn-wrapper .btn {
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 20px 40px;
  /*transition: .3s ease;*/
  
}

.faq-col .faq-btn-wrapper .btn::before {
  position: absolute;
  content: "";
  width: 0;
  inset-block: -.1rem;
  inset-inline-start: -.1rem;
  background-color: #FF6400;
  transition: width var(--animation-button);
  z-index: 0;
  border-radius: inherit;
}

.faq-col .faq-btn-wrapper .btn:hover {
  background: #FF6400;
  border: 1px solid #FF6400;
  color: #FFF;
}