.contact-content-wrapper .contact-left .contact-list {
  display: flex;
  flex-direction: column;
}

.contact-content-wrapper .contact-left .contact-list .contact-item, .contact-content-wrapper {
  display: flex;
  align-items: center;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.contact-content-wrapper {
  justify-content: center;
  background-color: #FAFAFA;
  font-size: 32px;
  margin-bottom: 100px;
}
@media (max-width: 1680px) {
  .contact-content-wrapper {
    font-size: 24px;
  }
}
@media (max-width: 1240px) {
  .contact-content-wrapper {
    font-size: 22px;
  }
}
@media (max-width: 990px) {
  .contact-content-wrapper {
    font-size: 20px;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.contact-content-wrapper .contact-left {
  padding: 1.5625em 3.5em;
  flex: 1;
}
@media (max-width: 1680px) {
  .contact-content-wrapper .contact-left {
    padding: 1.5625em 1.875em;
  }
}
.contact-content-wrapper .contact-left .company-name {
  font-style: normal;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.5;
  color: #1C1C1C;
}
.contact-content-wrapper .contact-left .contact-list {
  margin-top: 1.5625em;
}
.contact-content-wrapper .contact-left .contact-list .contact-item {
  margin-bottom: 0.625em;
}
.contact-content-wrapper .contact-left .contact-list .contact-item .contact-icon {
  width: 1.3125em;
  height: 1.3125em;
  margin-right: 0.28125em;
}
.contact-content-wrapper .contact-left .contact-list .contact-item .contact-text {
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.8;
  color: #1C1C1C;
}
.contact-content-wrapper .contact-right {
  width: 44%;
}
@media (max-width: 990px) {
  .contact-content-wrapper .contact-right {
    width: 100%;
  }
}
.contact-content-wrapper .contact-right .contact-image-wrapper {
  width: 100%;
  aspect-ratio: 718/579;
  overflow: hidden;
}
.contact-content-wrapper .contact-right .contact-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-message {
  width: 100%;
  position: relative;
}
.section-message .form-container {
  font-size: 1.25em;
}
@media (max-width: 1240px) {
  .section-message .form-container {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .section-message .form-container {
    font-size: 14px;
  }
}
.section-message .form-container .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1em;
}
@media (max-width: 990px) {
  .section-message .form-container .form-grid {
    grid-template-columns: 1fr;
  }
}
.section-message .form-container .form-grid .form-group.full-width {
  grid-column: 1/-1;
}
.section-message .form-container .form-grid .form-group input, .section-message .form-container .form-grid .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 1em;
  padding: 0.65em 1.15em;
  background: transparent;
  color: #333;
  border: 1px solid #DADADA;
  border-radius: 0.5em;
  outline: none;
  transition: border-color 0.3s;
}
.section-message .form-container .form-grid .form-group input:focus, .section-message .form-container .form-grid .form-group textarea:focus {
  border-color: var(--header_active_color);
}
.section-message .form-container .form-grid .form-group textarea {
  height: 6em;
  resize: vertical;
}
.section-message .form-container .form-submit {
  margin-top: 1.4em;
  text-align: center;
}
.section-message .form-container .form-submit .submit-btn {
  width: 11.6em;
  height: 2.75em;
  font-size: 0.9em;
  border-radius: 3em;
  background: linear-gradient(90deg, #F4AE00 0%, #D84C21 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.section-message .form-container .form-submit .submit-btn:hover {
  opacity: 0.9;
}