/** Shopify CDN: Minification failed

Line 242:2 Expected ":"
Line 247:2 Expected ":"
Line 253:2 Expected ":"

**/
.contact .checkbox__input {
  -webkit-appearance: none;
  appearance: none;
  width: 24px !important;
  height: 24px;
  border-radius: 2px;
  padding: 2px;
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  border: 1px solid var(--color-background-secondary-lightest);
}
 
.contact .checkbox__label {
  letter-spacing: 0;
  line-height: 160%;
}
 
.page-width--narrow {
  max-width: unset;
}
 
.flex-column {
  display: flex;
  flex-direction: column;
}
 
.flex-row {
  display: flex;
  flex-direction: row;
}
 
.contact-us-form-heading {
  font-family: var(--primary-font-body-family);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 2.4rem;
  color: var(--color-brand-secondary);
}
 
.field-input-height {
  height: 48px;
  font-weight: 400;
  font-size: 15px;
}
 
.flex-row-reverse {
  flex-direction: row-reverse;
}
 
.justify-center {
  justify-content: center;
}
 
.align-center {
  align-items: center;
}
 
.plr-5 {
  padding: 0 5.4rem;
}
 
.mt-3 {
  margin: 3rem 5rem 0 0;
}
 
.plr-10 {
  padding: 0 10rem;
}
 
 
.field-body-weight {
  color: #333333;
  font-size: 10px;
  font-weight: 400;
}
 
.dropdown-arrow {
  position: absolute;
  right: 20px;
  top: -2px;
  padding: 8px 5.25px 8px 4.75px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #191919;
}
 
.contact .field__input {
  appearance: none;
  background: transparent;
  background-color: var(--color-typography-inverse);
  border: 1px solid var(--color-background-secondary-lightest);
  width: 100%;
  padding: 12px 20px;
  color: #191919;
  border-radius: 2px;
  box-sizing: border-box;
}
 
.contact .field__input:focus {
  font-family: var(--primary-font-body-family);
  font-weight: 400;
  font-size: 15px;
}
 
.contact .field__label {
  top: 1.25rem;
}
 
.field__input-m0 {
  margin: 0;
}
 
.contact .field__input option {
  padding: 0.5rem;
  line-height: 1.5;
}
 
.contact label {
  color: var(--color-brand-secondary);
}
 
.choice-field:after {
  display: none;
}
 
.checkbox__label {
  color: var(--color-brand-secondary);
  font-family: var(--primary-font-body-family);
  font-weight: 400;
  font-size: 12px;
}
 
.contact-page__checkbox-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.field.field-mb-0.choice-field.no-border.checkbox-margin {
  height: 24px;
  margin-bottom: unset;
}
 
.field.field-mb-0.choice-field.no-border.checkbox-margin.checkbox-2 {
  margin-bottom: 24px;
}
 
a {
  color: #b300a4e0;
}
 
.form-link {
  color: var(--color-brand-primary);
}
 
.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
 
.contact-form-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
 
.contact .contact-form-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
 
.contact .contact-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 3rem;
  margin-left: 5rem;
}
 
.contact-image-block {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  height: 43.0rem;
}
 
.contact-image {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
}
 
.contact-image-overlay {
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 66.2%;
  color: #fff;
  text-align: center;
  margin-left: 50px;
  margin-bottom: 50px;
}
 
.submit_button {
  height: 50px;
  width: 489px;
  border-radius: 4px;
  font-weight: 400;
  font-family: var(--primary-font-body-family);
  font-size: 14px;
  transition: background-color 0.3s ease-in-out;
}

.button-arrow {
    /* position: relative;
    left: 1.2rem; */
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.button-text {
  position: relative;
  right: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

/* Adding animation with alternate direction to return to original state */
.submit_button.animate {
  animation: buttonColorPulse 1s alternate;
}

/* Adding animation with alternate direction to return to original state */
.submit_button.animate .button-text {
  animation: slideRight 0.3s ease-in-out alternate;
    /* animation: 1s ease-in-out 0.3s slideRight; */
}

/* Adding animation with alternate direction to return to original state */
.submit_button.animate .button-arrow {
  animation: showArrow 0.3s alternate;
}

/* .submit_button .button-text{
  animation: slideRight 0.3s ease-in-out backwards;
} */
.submit_button.animate {
  animation: buttonColorPulse 1s forwards;
}

.submit_button.animate .button-text {
  animation: slideRight 0.5s ease-in-out forwards;
  /* animation: 5s linear alternate slideRight;*/
}

.submit_button.animate .button-arrow {
  animation: showArrow 0.3s forwards;
  animation-delay: .2s;
}
@keyframes slideLeft {
  from { transform: translateX(15px); }
  to { transform: translateX(0); }
}

@keyframes hideArrow {
  from { opacity: 1; left: 195px; }
  to { opacity: 0; left: 195px; }
}

.submit_button.animate-reverse .button-text {
  animation: slideLeft 0.5s ease-in-out forwards;
}

.submit_button.animate-reverse .button-arrow {
  animation: hideArrow 0.3s forwards;
}

@keyframes buttonColorPulse {
  0% { background-color: var(--button-bg, #000); }
  100% { background-color: var(--button-bg, #000); }
}

@keyframes slideRight {
  from { transform: translateX(0); }
  to { transform: translateX(15px); }
}

@keyframes showArrow {
  from { opacity: 0; left: 195px; }
  to { opacity: 1; left: 195px; }
}
 
.contact-txt-mobile {
  display: none;
}
 
.contact-image-title {
  margin: 0 0rem 0;
  text-align: left;
  color: var(--color-typography-inverse);
}
 
.contact-image-overlay .contact-image-subtitle {
  margin: 0.8rem 0rem 0rem;
  text-align: left;
  color: var(--color-typography-inverse);
}
 
 
.contact-txt p {
  text-align: left;
  line-height: var(--line-height-3xl);
  color: var(--color-brand-secondary);
  font-weight: 400;
  font-family: var(--primary-font-body-family);
}
 
.field .body1 {
  color: var(--color-brand-secondary);
}
 
.contact__button {
  display: flex;
  justify-content: flex-start;
}
 
.submit_button:hover {
  background-color: var(--color-cta-primary-hover);
}
 
 
.field.field-mb-0.text-area-input {
  height: 12rem;
}
 
.text-area--contact {
  height: 100%;
}
 
.contact .checkbox__input:checked {
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}
 
.checkbox__input:checked::after {  
  content: '';  
  position: absolute;  
  left: 2.84px;  
  top: 4.66px;  
  width: 14.66px;  
  height: 7.17px;  
  border: solid #FFFFFF;  
  border-width: 0 2px 2px 0;  
  transform: scaleX(-1) rotate(45deg);  
  pointer-events: none;
}
 
.field--label_contact-form {
  font-size: 1.5rem;
}

.contact__fields .field__input:not(:placeholder-shown) + .field__label,
.contact__fields .field__input:focus + .field__label,
.contact__fields .text-area:not(:placeholder-shown) + .field__label,
.contact__fields .text-area:focus + .field__label {
  font-size: 1rem;
  color: var(--color-brand-secondary-light);
  line-height: 100%;
  font-weight: 500;
}
 
.contact-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
 
.contact-form-width-warpper {
  align-items: flex-start;
}
 
.contact .field__input:not(:placeholder-shown) {
  padding: 18.5px 20px 5.5px 20px;
}
 
.tot-dropdown-country {
  width: 95%;
}

.country-select.country-selected + .country-wrapper .tot-dropdown-country .country_lable  {
  position: absolute;
    top: calc(var(--inputs-border-width) - 1rem);
    left: calc(var(--inputs-border-width));
}

.contact-txt {
  padding: 52px 50px 32px 50px;
  padding-left: 105px;
  max-width: 1440px;
  margin: auto;
}
 
.country-select {
  font-size: 16px;
  transition: font-size 0.3s ease;
  padding: 22px 15px 8px 20px;
}
 
.country-selected+.country-wrapper label {
  font-size: 1rem;
  color: var(--color-brand-secondary-light);
}

.mobile_only_form_button{
  display: none;
}

.custom-pre-footer .container .pre-footer-txt .pre-footer-subheading a{
  color: var(  --color-brand-secondary);
  text-decoration:none;
  position: relative;
}
 
.custom-pre-footer .container .pre-footer-txt .pre-footer-subheading a::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(  --color-brand-secondary);;
  position: absolute;
  left: 0;
  bottom: 1px;;
}

@media screen and (min-width: 1441px ) {
  .contact-form-width-warpper {
  align-items: flex-start;
  max-width: 1440px;
  margin: auto;
  padding: unset;
}
}
@media screen and (min-width: 992px) {
  .border.registered-office-add-column {
    border: 1px solid #D9D9D9;
    padding: 30px;
    background-color: #FCFCFC;
    border-radius: 4px;
  }
}
 
@media screen and (max-width: 991px) {
  .contact-image-title {
    width: 300px;
    height: 30px;
  }
 
  .plr-1_5 {
    padding: 0 1.6rem;
  }
 
  .dropdown-arrow {
    margin-left: 250px;
  }
 
  .contact {
    width: 100%;
    padding: 0;
  }
 
  .border {
    padding: 0;
    border: none;
  }
 
  .contact-form-container {
    padding: 1rem;
  }
 
  .contact-form-title {
    font-size: 1.5rem;
  }
 
  .contact-form-subtitle {
    font-size: 0.875rem;
  }
 
  .contact-txt {
    padding-top: 0 !important;
    display: none;
  }
 
  .contact-txt-mobile {
    display: flex;
    padding: 32px 16px 32px 16px;
    border-bottom: 1px solid #D9D9D9;
    justify-content: center;
    color: #191919;
    text-align: center;
  }
  .contact-txt-mobile a {
    text-decoration: none;
    color: inherit;
  }
  .contact-images {
    gap: 1.6rem;
    width: 100%;
    padding-inline: 16px;
  }
 
  .contact-image {
    width: 100%;
    height: 24.4rem;
 
  }
 
  .contact-image-block {
    width: 100%;
    margin-left: 0;
    height: auto;
  }
 
  .contact-image-overlay {
    padding: 0;
    font-size: 0.875rem;
    width: 300px;
    margin: 0;
    height: 126px;
    margin: 0 0 2rem 2rem;
  }
 
  .flex {
    flex-direction: column;
  }
 
  .contact-us-main-page {
    padding-inline: 1.6rem;
    padding-bottom: 1.6rem;
  }
 
  .flex-row {
    flex-direction: column;
  }
 
  .flex-col-reverse {
    flex-direction: column-reverse;
    padding: unset;
  }
 
  #ContactForm {
    padding-inline: 16px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 33px;
  }
 
  .border-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 10px;
  }
 
  .registered-office-add-colum {
    padding-top: 3.2rem;
  }
 
  hr {
    margin: 0;
  }
 
  .contact-us-form-heading {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    background-color: #FCFCFC;
  }
 
  .contact-us-form-heading + form{
    background-color: #FCFCFC;
  }
  .submit_button {
    width: 100%;
  }
 
 
  .title.title-wrapper--no-top-margin.inline-richtexts.scroll-trigger.animate--slide-in.body-1.contact-us-form-heading {
    padding: 16px 16px 24px 16px;
    display: flex;
    text-align: left;
    margin-bottom: 0;
  }
 
  .title,
  .title-wrapper-with-link {
    margin: 0rem 0 0rem;
  }
 
  .contact-us-form-heading {
    margin-bottom: 0;
  }

  .mobile_only_form_button{
    display: block;
  }

  .contact__fields .field__input:not(:placeholder-shown) + .field__label,
  .contact__fields .field__input:focus + .field__label,
  .contact__fields .text-area:not(:placeholder-shown) + .field__label,
  .contact__fields .text-area:focus + .field__label {
    line-height: 100%;
  }
}
 
@media screen and (max-width: 320px) {
  .contact-image-title {
    margin-left: 0;
  }
 
  .contact-image-overlay .contact-image-subtitle {
    margin-left: 0;
  }
}