/** Shopify CDN: Minification failed

Line 83:8 Expected identifier but found whitespace
Line 83:10 Unexpected "{"
Line 83:19 Expected ":"
Line 118:15 Expected identifier but found whitespace
Line 118:17 Unexpected "{"
Line 118:26 Expected ":"

**/
.contact-section {
  padding: 80px 0;
  background: #fff;
} 
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
} 
.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
} 
.form-field label {
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  font-size: 16px;
  color: #000;
}
.contact-section .button--primary{
    background-color: #5a5f9c !important;
    color: #fff !important;
    font-size: 18px;
    margin-top: 30px;
}
.contact-section .button--primary:hover{
    background: #E39FC9 !important;
    color: #000;
} 
.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  border-radius: 24px;
} 
.pp{
    margin-bottom: 34px;
} 
.contact-info p {
    font-size: 18px;
    color: #000;
    line-height: 1.3em;
} 
.contact-info p a{
    text-decoration: none;
    color: #000;
} 
.info-item {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
  gap: 20px;
}
.info-item img {
    width: 50px;
} 
.info-item svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  margin-top: 4px;
} 
.info-item h4 {
    margin: 0;
    font-size: 20px;
    color: #5a5f9c;
    font-weight: 600;
}
.highlight {
  color: {{ section.settings.accent_color }};
} 
.contact-form {
  flex: 2;
  min-width: 350px;
  outline-offset: -20px;
  padding: 40px;
  Background: #eceaf5;
  border-radius: 24px;
} 
.contact-form p {
  color: #000;
  font-size: 18px;
  margin-bottom: 25px;
} 
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
} 
#contact_form{
    border: none;
    padding: 0;
} 
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #5a5f9c;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 10px;
} 
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: {{ section.settings.accent_color }};
  outline: none;
} 
.send-btn {
  margin-top: 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Grenette Pro";
    color: #fff !important;
    background-color: #4E786C !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition-duration: 0.4s;
    &:hover{
        background-color: #111 !important;
        color: #fff !important;
    }
} 
.send-btn:hover {
  opacity: 0.9;
} 
/* Responsive */
@media (max-width: 1024px) {    
    .contact-info p {
        font-size: 16px;
        margin-top: 5px;
    }
    .contact-form p {
        font-size: 16px;
        margin-bottom: 22px;
    }
    .contact-form input, .contact-form textarea {
        padding: 10px 10px;
    }
    .info-item h4 {
        font-size: 18px;
    }
    .info-item img {
        width: 40px;
    }
    .contact-info,
    .contact-form {
        padding: 30px;
    }
  
}
@media (max-width: 991.98px) {
    .contact-container {
        gap: 20px;
    }
    .contact-info, .contact-form {
        padding: 20px;
    }
    .form-row {
        gap: 10px;
    }
    .info-item img {
        width: 36px;
    }
    .contact-section .button--primary {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    .contact-section {
        padding: 50px 0;
    }
    .contact-info {
        min-width: 100%;
    }
    .form-row {
        flex-wrap: wrap;
    }
}