iframe {
    width: 100%;
}

@media (min-width: 1024px) {
  /* styles for desktop devices */
  .futuredemo {
 display: flex;
 flex-direction: column;
 align-items: left;
 color: #000000;
 font-size: 28px;
 font-family: 'Oswald',Arial,sans-serif;
 line-height: 1.1;
 font-weight: 700;
 letter-spacing: 1px;
 background-position: center center;
 border-color: transparent;
 border-style: solid;
}
}

@media (max-width: 767px) {
  /* styles for mobile devices */
   .futuredemo {
 display: flex;
 flex-direction: column;
 align-items: left;
 color: #000000;
 font-size: 16px;
 font-family: 'Oswald',Arial,sans-serif;
 line-height: 1.1;
 font-weight: 700;
 letter-spacing: 1px;
 background-position: center center;
 border-color: transparent;
 border-style: solid;
}
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* styles for iPad devices */
    .futuredemo {
 display: flex;
 flex-direction: column;
 align-items: left;
 color: #000000;
 font-size: 24px;
 font-family: 'Oswald',Arial,sans-serif;
 line-height: 1.1;
 font-weight: 700;
 letter-spacing: 1px;
 background-position: center center;
 border-color: transparent;
 border-style: solid;
}
}

/* Кнопки для передачи UTM меток */

    .utm-button {
        width: 260px;
        height: 60px;
        background-color: #03AD0E;
        color: white !important;
        font-family: 'TildaSans', sans-serif;
        font-weight: bold;
        font-size: 22px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-transform: uppercase;
        text-decoration: none;
        transition: background-color 0.3s ease;
        margin: 10px auto;
    }

    .utm-button:hover {
        background-color: #028B0B;
    }
