/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

 em {
  font-style: italic;
  color: #4A9FD4;
}

.bg-hero__title {
    color: #ffffff;
}

.cs-img-wrap {
  box-shadow: 
    0 1px 2px rgba(27, 42, 59, 0.04),
    0 4px 8px rgba(27, 42, 59, 0.06),
    0 12px 24px rgba(27, 42, 59, 0.08),
    0 24px 48px rgba(27, 42, 59, 0.06);
}


.fw-row {
  display: grid;
  grid-template-columns: 48px 1fr 2fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
  transition: background .2s;
}



.fw-row:last-child {
  border-bottom: none;
}

@keyframes fwFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fw-row {
  opacity: 0;
}

.fw-row.fw-visible {
  animation: fwFadeUp .6s ease forwards;
}

.fw-row:nth-child(1) { animation-delay: .1s; }
.fw-row:nth-child(2) { animation-delay: .3s; }
.fw-row:nth-child(3) { animation-delay: .5s; }
.fw-row:nth-child(4) { animation-delay: .7s; }

.fw-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: rgba(74,159,212,0.4);
  line-height: 1;
  padding-top: 0;
  align-self: center;
}

.fw-label {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.fw-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #7A93A8;
}

.fw-desc strong {
  color: #C8D6E0;
  font-weight: 400;
}

.sn-section {
  background: #fff;
}

.sn-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.sn-item {
  text-align: center;
}

.sn-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #1C2B38;
  line-height: 1;
  margin-bottom: 10px;
}

.sn-num span {
  color: #1A6FA3;
  font-size: 40px;
}

.sn-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A93A8;
}

@media (max-width: 768px) {
  .sn-section { padding: 48px 24px; }
  .sn-inner { gap: 40px; }
  .sn-num { font-size: 40px; }
  .sn-divider { height: 40px; }
}

ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

 li::marker {
    color: #1A6FA3;
}

.gallery-item {
  overflow: hidden;
  
}

.gallery-item img {
  transition: transform .4s ease;
  display: block;
  width: 100%;
}

.gallery-item img:hover {
  transform: scale(1.20);
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 2px;

    & b {
        color: #1A6FA3;
    }
}

.w-separator.width_50 {
    margin: 0 !important;
}


.cf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cf7-field {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 32px;
}

.cf7-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a5e6d;
  display: block;
  transition: color .2s;
}
.cf7-field:focus-within .cf7-label {
  color: #1A6FA3;
}

.cf7-form .wpcf7-form-control.wpcf7-text,
.cf7-form .wpcf7-form-control.wpcf7-email,
.cf7-form .wpcf7-form-control.wpcf7-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1C2B38;
  background: transparent;
  border: none;
  border-bottom: 2px solid #D1DCE6;
  border-radius: 0;
  padding: 10px 0 12px;
  outline: none;
  width: 100%;
  box-shadow: none;
  transition: border-color .25s;
}

.cf7-form .wpcf7-form-control.wpcf7-text::placeholder,
.cf7-form .wpcf7-form-control.wpcf7-email::placeholder,
.cf7-form .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #9aaab7;
  font-weight: 300;
}

.cf7-form .wpcf7-form-control.wpcf7-text:focus,
.cf7-form .wpcf7-form-control.wpcf7-email:focus,
.cf7-form .wpcf7-form-control.wpcf7-textarea:focus {
  border-bottom-color: #1A6FA3;
}

.cf7-form .wpcf7-form-control.wpcf7-textarea {
  resize: none;
  min-height: 100px;
}

.cf7-form span.wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

.cf7-form span.wpcf7-form-control-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #1A6FA3;
  transition: width .3s ease;
  pointer-events: none;
}

.cf7-form br {
  display: none;
}
.cf7-form .wpcf7-not-valid-tip {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #E24B4A;
  margin-top: 4px;
}
.cf7-form .wpcf7-form-control.wpcf7-not-valid {
  border-bottom-color: #E24B4A;
}

@media (max-width: 1024px) {
  .cf7-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}