body, h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: 'Roboto'!important;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-family: 'Roboto' !important;
}

.logo a {
  display: inline-block;
  line-height: 1;
  margin-top: 4px !important;
}

.qx-element-infinito-section-title .section-title {
 font-family: 'Roboto', Helvetica Neue, Arial, Sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #00496a !important;
}

h3.module-title {
    color: #ffffff !important;
}

.titlecolor {
    color: #ffffff;
}

.h4white {
    color: #ffffff;
}

#qx-blurb-7212023 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-7812234 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-38124345 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-991658 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-7212034353535 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-78122356 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-3812435 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-5316533 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-20248 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

#qx-blurb-89256 h4 {
  color: rgba(255, 255, 255, 1) !important;
  margin-top: 30px;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #00496a !important;
}


.t3-footer {
    background: #00496a !important;
    padding: 20px 0 0 !important;
}

/* forma begin */
 /* контейнер формы — шире на ~30% от стандартного (обычно 460px, делаем ~600px) */
        .form-wrapper {
            width: 100%;
            max-width: 600px;   /* стандарт был ~440–460, теперь на 30% больше */
        }

        /* все поля, кнопка, селект, textarea — одинаковой ширины (100% родителя) */
        input, select, textarea, button {
            width: 100%;
            font-family: 'Roboto' !important;
            font-size: 1rem;
            padding: 0.8rem 1rem;
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 0.9rem;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(2px);
            transition: 0.2s ease;
            outline: none;
            color: #0f172a;
        }

        /* кнопка отправки — меньше по высоте и визуально компактнее, но ширина та же 100% */
        button {
            background: #00496a;
            color: white;
            border: none;
            padding: 0.6rem 1rem;     /* уменьшенный вертикальный паддинг (кнопка ниже) */
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 2rem;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: 0.3px;
        }

        button:hover {
            background: #0f2a44;
            transform: translateY(-1px);
        }

        button:active {
            transform: translateY(0);
        }

        input:focus, select:focus, textarea:focus {
            border-color: #2c7da0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.1);
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            cursor: pointer;
        }

        textarea {
            resize: vertical;
            min-height: 95px;
        }

        .field-group {
            margin-bottom: 1rem;
        }

        /* очень лаконичная подсказка для телефона (не отвлекает) */
        .phone-hint {
            font-size: 0.65rem;
            color: rgba(0, 0, 0, 0.55);
            margin-top: 0.25rem;
            margin-left: 0.5rem;
            letter-spacing: 0.2px;
        }

        /* статус сообщение — на всю ширину, как поля */
        .status-msg {
            margin-top: 0.9rem;
            padding: 0.5rem 0.7rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            text-align: center;
            display: none;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0,0,0,0.05);
            width: 100%;
        }

        .status-success {
            color: #0a5e3a;
            background: rgba(224, 242, 233, 0.9);
        }

        .status-error {
            color: #b91c1c;
            background: rgba(254, 233, 230, 0.9);
        }

        .status-info {
            color: #1e40af;
            background: rgba(238, 242, 255, 0.9);
        }
        
        
@media screen and (min-width: 768px) {
  select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .inputbox {
    width: 100% !important;
  }
}        
/* forma end */

@media screen and (min-width: 768px) {
  .t3-sl {
    padding-bottom: 0px !important;
    padding-top: 10px !important;
    background: #00496a !important;
  }
  
  .t3-module {
    margin-bottom: 5px !important;
  }
  
  p {
  margin-bottom: 10px !important;
}
}

@media (min-width: 992px) {
  .col-md-4 {
    width: 20% !important;
  }
}

@media only all and (max-width: 767px) {
#dskheader {
    display: none !important;
}

#dskphone {
    display: none !important;
}

#dsksocial {
    display: none !important;
}
}


@media only all and (min-width: 768px) {
#mobheader {
    display: none !important;
}
    
}
