/*
 * Divi Mobi First Adaptive Column System
 * Version 2.6.0
 *
 * This is the new semantic/future-facing layer used by the Divi Builder controls.
 * It does not remove, rename, or replace the original class sheet. Legacy classes
 * such as mobile-2-column and mobile-4-to-2-column remain fully supported.
 */

.et_pb_row[class*="dmf-phone-cols-"],
.et_pb_row[class*="dmf-tablet-cols-"],
.et_pb_row[class*="dmf-mobile-cols-"],
.et_pb_row[class*="dmf-desktop-cols-"],
.et_pb_row[class*="dmf-large-cols-"] {
  --dmf-columns: initial;
}

@media all and (max-width: 479px) {
  .et_pb_row[class*="dmf-phone-cols-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }

  .et_pb_row.dmf-phone-cols-1 > .et_pb_column { --dmf-columns: 1; }
  .et_pb_row.dmf-phone-cols-2 > .et_pb_column { --dmf-columns: 2; }
  .et_pb_row.dmf-phone-cols-3 > .et_pb_column { --dmf-columns: 3; }
  .et_pb_row.dmf-phone-cols-4 > .et_pb_column { --dmf-columns: 4; }
  .et_pb_row.dmf-phone-cols-5 > .et_pb_column { --dmf-columns: 5; }
  .et_pb_row.dmf-phone-cols-6 > .et_pb_column { --dmf-columns: 6; }

  .et_pb_row[class*="dmf-phone-cols-"] > .et_pb_column {
    width: calc(100% / var(--dmf-columns)) !important;
    max-width: calc(100% / var(--dmf-columns)) !important;
    flex: 0 0 calc(100% / var(--dmf-columns)) !important;
    margin-right: 0 !important;
    clear: none !important;
  }
}

@media all and (min-width: 480px) and (max-width: 980px) {
  .et_pb_row[class*="dmf-tablet-cols-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }

  .et_pb_row.dmf-tablet-cols-1 > .et_pb_column { --dmf-columns: 1; }
  .et_pb_row.dmf-tablet-cols-2 > .et_pb_column { --dmf-columns: 2; }
  .et_pb_row.dmf-tablet-cols-3 > .et_pb_column { --dmf-columns: 3; }
  .et_pb_row.dmf-tablet-cols-4 > .et_pb_column { --dmf-columns: 4; }
  .et_pb_row.dmf-tablet-cols-5 > .et_pb_column { --dmf-columns: 5; }
  .et_pb_row.dmf-tablet-cols-6 > .et_pb_column { --dmf-columns: 6; }

  .et_pb_row[class*="dmf-tablet-cols-"] > .et_pb_column {
    width: calc(100% / var(--dmf-columns)) !important;
    max-width: calc(100% / var(--dmf-columns)) !important;
    flex: 0 0 calc(100% / var(--dmf-columns)) !important;
    margin-right: 0 !important;
    clear: none !important;
  }
}

@media all and (max-width: 980px) {
  .et_pb_row[class*="dmf-mobile-cols-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }

  .et_pb_row.dmf-mobile-cols-1 > .et_pb_column { --dmf-columns: 1; }
  .et_pb_row.dmf-mobile-cols-2 > .et_pb_column { --dmf-columns: 2; }
  .et_pb_row.dmf-mobile-cols-3 > .et_pb_column { --dmf-columns: 3; }
  .et_pb_row.dmf-mobile-cols-4 > .et_pb_column { --dmf-columns: 4; }
  .et_pb_row.dmf-mobile-cols-5 > .et_pb_column { --dmf-columns: 5; }
  .et_pb_row.dmf-mobile-cols-6 > .et_pb_column { --dmf-columns: 6; }

  .et_pb_row[class*="dmf-mobile-cols-"] > .et_pb_column {
    width: calc(100% / var(--dmf-columns)) !important;
    max-width: calc(100% / var(--dmf-columns)) !important;
    flex: 0 0 calc(100% / var(--dmf-columns)) !important;
    margin-right: 0 !important;
    clear: none !important;
  }
}

@media all and (min-width: 981px) {
  .et_pb_row[class*="dmf-desktop-cols-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }

  .et_pb_row.dmf-desktop-cols-1 > .et_pb_column { --dmf-columns: 1; }
  .et_pb_row.dmf-desktop-cols-2 > .et_pb_column { --dmf-columns: 2; }
  .et_pb_row.dmf-desktop-cols-3 > .et_pb_column { --dmf-columns: 3; }
  .et_pb_row.dmf-desktop-cols-4 > .et_pb_column { --dmf-columns: 4; }
  .et_pb_row.dmf-desktop-cols-5 > .et_pb_column { --dmf-columns: 5; }
  .et_pb_row.dmf-desktop-cols-6 > .et_pb_column { --dmf-columns: 6; }

  .et_pb_row[class*="dmf-desktop-cols-"] > .et_pb_column {
    width: calc(100% / var(--dmf-columns)) !important;
    max-width: calc(100% / var(--dmf-columns)) !important;
    flex: 0 0 calc(100% / var(--dmf-columns)) !important;
    margin-right: 0 !important;
    clear: none !important;
  }
}

@media all and (min-width: 1400px) {
  .et_pb_row[class*="dmf-large-cols-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }

  .et_pb_row.dmf-large-cols-1 > .et_pb_column { --dmf-columns: 1; }
  .et_pb_row.dmf-large-cols-2 > .et_pb_column { --dmf-columns: 2; }
  .et_pb_row.dmf-large-cols-3 > .et_pb_column { --dmf-columns: 3; }
  .et_pb_row.dmf-large-cols-4 > .et_pb_column { --dmf-columns: 4; }
  .et_pb_row.dmf-large-cols-5 > .et_pb_column { --dmf-columns: 5; }
  .et_pb_row.dmf-large-cols-6 > .et_pb_column { --dmf-columns: 6; }

  .et_pb_row[class*="dmf-large-cols-"] > .et_pb_column {
    width: calc(100% / var(--dmf-columns)) !important;
    max-width: calc(100% / var(--dmf-columns)) !important;
    flex: 0 0 calc(100% / var(--dmf-columns)) !important;
    margin-right: 0 !important;
    clear: none !important;
  }
}

/* Divi Mobi First Flexible Pattern System - Version 2.28.0 */
/*
 * New flexible classes that do not depend on Divi native fraction column classes.
 * These use child column order and can reshape any regular Divi row.
 * Legacy classes remain untouched for backward compatibility.
 */
@media all and (max-width: 479px) {
  .et_pb_row[class*="dmf-phone-cols-"],
  .et_pb_row[class*="dmf-phone-pattern-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }
  .et_pb_row[class*="dmf-phone-cols-"] > .et_pb_column,
  .et_pb_row[class*="dmf-phone-pattern-"] > .et_pb_column {
    margin-right: 0 !important;
    clear: none !important;
    box-sizing: border-box;
  }
  .et_pb_row.dmf-phone-cols-1 > .et_pb_column {
    width: 100.000000% !important;
    max-width: 100.000000% !important;
    flex: 0 0 100.000000% !important;
  }
  .et_pb_row.dmf-phone-cols-2 > .et_pb_column {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-cols-3 > .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-cols-4 > .et_pb_column {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-cols-5 > .et_pb_column {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-cols-6 > .et_pb_column {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_2 > .et_pb_column:nth-child(2n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_2 > .et_pb_column:nth-child(2n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_3-2_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_3-2_3 > .et_pb_column:nth-child(2n+1) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_3-2_3 > .et_pb_column:nth-child(2n) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-2_3-1_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-2_3-1_3 > .et_pb_column:nth-child(2n+1) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-2_3-1_3 > .et_pb_column:nth-child(2n) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-3_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-3_4 > .et_pb_column:nth-child(2n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-3_4 > .et_pb_column:nth-child(2n) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-3_4-1_4 > .et_pb_column:nth-child(2n+1) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_4-1_4 > .et_pb_column:nth-child(2n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-4_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-4_5 > .et_pb_column:nth-child(2n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-4_5 > .et_pb_column:nth-child(2n) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-4_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-4_5-1_5 > .et_pb_column:nth-child(2n+1) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-4_5-1_5 > .et_pb_column:nth-child(2n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-2_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-2_5-3_5 > .et_pb_column:nth-child(2n+1) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-2_5-3_5 > .et_pb_column:nth-child(2n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-2_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-2_5 > .et_pb_column:nth-child(2n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-2_5 > .et_pb_column:nth-child(2n) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-5_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-5_6 > .et_pb_column:nth-child(2n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-5_6 > .et_pb_column:nth-child(2n) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-phone-pattern-5_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-5_6-1_6 > .et_pb_column:nth-child(2n+1) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-phone-pattern-5_6-1_6 > .et_pb_column:nth-child(2n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
}

@media all and (min-width: 480px) and (max-width: 980px) {
  .et_pb_row[class*="dmf-tablet-cols-"],
  .et_pb_row[class*="dmf-tablet-pattern-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }
  .et_pb_row[class*="dmf-tablet-cols-"] > .et_pb_column,
  .et_pb_row[class*="dmf-tablet-pattern-"] > .et_pb_column {
    margin-right: 0 !important;
    clear: none !important;
    box-sizing: border-box;
  }
  .et_pb_row.dmf-tablet-cols-1 > .et_pb_column {
    width: 100.000000% !important;
    max-width: 100.000000% !important;
    flex: 0 0 100.000000% !important;
  }
  .et_pb_row.dmf-tablet-cols-2 > .et_pb_column {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-cols-3 > .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-cols-4 > .et_pb_column {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-cols-5 > .et_pb_column {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-cols-6 > .et_pb_column {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_2 > .et_pb_column:nth-child(2n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_2 > .et_pb_column:nth-child(2n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_3-2_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_3-2_3 > .et_pb_column:nth-child(2n+1) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_3-2_3 > .et_pb_column:nth-child(2n) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-2_3-1_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-2_3-1_3 > .et_pb_column:nth-child(2n+1) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-2_3-1_3 > .et_pb_column:nth-child(2n) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-3_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-3_4 > .et_pb_column:nth-child(2n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-3_4 > .et_pb_column:nth-child(2n) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_4-1_4 > .et_pb_column:nth-child(2n+1) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_4-1_4 > .et_pb_column:nth-child(2n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-4_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-4_5 > .et_pb_column:nth-child(2n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-4_5 > .et_pb_column:nth-child(2n) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-4_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-4_5-1_5 > .et_pb_column:nth-child(2n+1) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-4_5-1_5 > .et_pb_column:nth-child(2n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-2_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-2_5-3_5 > .et_pb_column:nth-child(2n+1) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-2_5-3_5 > .et_pb_column:nth-child(2n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-2_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-2_5 > .et_pb_column:nth-child(2n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-2_5 > .et_pb_column:nth-child(2n) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-5_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-5_6 > .et_pb_column:nth-child(2n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-5_6 > .et_pb_column:nth-child(2n) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-tablet-pattern-5_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-5_6-1_6 > .et_pb_column:nth-child(2n+1) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-tablet-pattern-5_6-1_6 > .et_pb_column:nth-child(2n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
}

@media all and (max-width: 980px) {
  .et_pb_row[class*="dmf-mobile-cols-"],
  .et_pb_row[class*="dmf-mobile-pattern-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }
  .et_pb_row[class*="dmf-mobile-cols-"] > .et_pb_column,
  .et_pb_row[class*="dmf-mobile-pattern-"] > .et_pb_column {
    margin-right: 0 !important;
    clear: none !important;
    box-sizing: border-box;
  }
  .et_pb_row.dmf-mobile-cols-1 > .et_pb_column {
    width: 100.000000% !important;
    max-width: 100.000000% !important;
    flex: 0 0 100.000000% !important;
  }
  .et_pb_row.dmf-mobile-cols-2 > .et_pb_column {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-cols-3 > .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-mobile-cols-4 > .et_pb_column {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-cols-5 > .et_pb_column {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-cols-6 > .et_pb_column {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_2 > .et_pb_column:nth-child(2n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_2 > .et_pb_column:nth-child(2n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_3-2_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_3-2_3 > .et_pb_column:nth-child(2n+1) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_3-2_3 > .et_pb_column:nth-child(2n) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-2_3-1_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-2_3-1_3 > .et_pb_column:nth-child(2n+1) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-2_3-1_3 > .et_pb_column:nth-child(2n) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-3_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-3_4 > .et_pb_column:nth-child(2n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-3_4 > .et_pb_column:nth-child(2n) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_4-1_4 > .et_pb_column:nth-child(2n+1) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_4-1_4 > .et_pb_column:nth-child(2n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-4_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-4_5 > .et_pb_column:nth-child(2n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-4_5 > .et_pb_column:nth-child(2n) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-4_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-4_5-1_5 > .et_pb_column:nth-child(2n+1) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-4_5-1_5 > .et_pb_column:nth-child(2n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-2_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-2_5-3_5 > .et_pb_column:nth-child(2n+1) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-2_5-3_5 > .et_pb_column:nth-child(2n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-2_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-2_5 > .et_pb_column:nth-child(2n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-2_5 > .et_pb_column:nth-child(2n) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-5_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-5_6 > .et_pb_column:nth-child(2n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-5_6 > .et_pb_column:nth-child(2n) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-mobile-pattern-5_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-5_6-1_6 > .et_pb_column:nth-child(2n+1) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-mobile-pattern-5_6-1_6 > .et_pb_column:nth-child(2n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_2-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_4-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-1_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-3_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-1_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_6-1_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-1_6-1_6-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-mobile-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
}

@media all and (min-width: 480px) {
  .et_pb_row[class*="dmf-desktab-cols-"],
  .et_pb_row[class*="dmf-desktab-pattern-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }
  .et_pb_row[class*="dmf-desktab-cols-"] > .et_pb_column,
  .et_pb_row[class*="dmf-desktab-pattern-"] > .et_pb_column {
    margin-right: 0 !important;
    clear: none !important;
    box-sizing: border-box;
  }
  .et_pb_row.dmf-desktab-cols-1 > .et_pb_column {
    width: 100.000000% !important;
    max-width: 100.000000% !important;
    flex: 0 0 100.000000% !important;
  }
  .et_pb_row.dmf-desktab-cols-2 > .et_pb_column {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-cols-3 > .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktab-cols-4 > .et_pb_column {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-cols-5 > .et_pb_column {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-cols-6 > .et_pb_column {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_2 > .et_pb_column:nth-child(2n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_2 > .et_pb_column:nth-child(2n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_3-2_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_3-2_3 > .et_pb_column:nth-child(2n+1) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_3-2_3 > .et_pb_column:nth-child(2n) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-2_3-1_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-2_3-1_3 > .et_pb_column:nth-child(2n+1) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-2_3-1_3 > .et_pb_column:nth-child(2n) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-3_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-3_4 > .et_pb_column:nth-child(2n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-3_4 > .et_pb_column:nth-child(2n) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_4-1_4 > .et_pb_column:nth-child(2n+1) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_4-1_4 > .et_pb_column:nth-child(2n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-4_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-4_5 > .et_pb_column:nth-child(2n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-4_5 > .et_pb_column:nth-child(2n) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-4_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-4_5-1_5 > .et_pb_column:nth-child(2n+1) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-4_5-1_5 > .et_pb_column:nth-child(2n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-2_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-2_5-3_5 > .et_pb_column:nth-child(2n+1) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-2_5-3_5 > .et_pb_column:nth-child(2n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-2_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-2_5 > .et_pb_column:nth-child(2n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-2_5 > .et_pb_column:nth-child(2n) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-5_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-5_6 > .et_pb_column:nth-child(2n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-5_6 > .et_pb_column:nth-child(2n) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-desktab-pattern-5_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-5_6-1_6 > .et_pb_column:nth-child(2n+1) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-desktab-pattern-5_6-1_6 > .et_pb_column:nth-child(2n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_2-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_4-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-1_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-3_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-1_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_6-1_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-1_6-1_6-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktab-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
}

@media all and (min-width: 981px) {
  .et_pb_row[class*="dmf-desktop-cols-"],
  .et_pb_row[class*="dmf-desktop-pattern-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }
  .et_pb_row[class*="dmf-desktop-cols-"] > .et_pb_column,
  .et_pb_row[class*="dmf-desktop-pattern-"] > .et_pb_column {
    margin-right: 0 !important;
    clear: none !important;
    box-sizing: border-box;
  }
  .et_pb_row.dmf-desktop-cols-1 > .et_pb_column {
    width: 100.000000% !important;
    max-width: 100.000000% !important;
    flex: 0 0 100.000000% !important;
  }
  .et_pb_row.dmf-desktop-cols-2 > .et_pb_column {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-cols-3 > .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-cols-4 > .et_pb_column {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-cols-5 > .et_pb_column {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-cols-6 > .et_pb_column {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_2 > .et_pb_column:nth-child(2n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_2 > .et_pb_column:nth-child(2n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_3-2_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_3-2_3 > .et_pb_column:nth-child(2n+1) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_3-2_3 > .et_pb_column:nth-child(2n) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-2_3-1_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-2_3-1_3 > .et_pb_column:nth-child(2n+1) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-2_3-1_3 > .et_pb_column:nth-child(2n) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-3_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-3_4 > .et_pb_column:nth-child(2n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-3_4 > .et_pb_column:nth-child(2n) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_4-1_4 > .et_pb_column:nth-child(2n+1) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_4-1_4 > .et_pb_column:nth-child(2n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-4_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-4_5 > .et_pb_column:nth-child(2n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-4_5 > .et_pb_column:nth-child(2n) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-4_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-4_5-1_5 > .et_pb_column:nth-child(2n+1) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-4_5-1_5 > .et_pb_column:nth-child(2n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-2_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-2_5-3_5 > .et_pb_column:nth-child(2n+1) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-2_5-3_5 > .et_pb_column:nth-child(2n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-2_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-2_5 > .et_pb_column:nth-child(2n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-2_5 > .et_pb_column:nth-child(2n) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-5_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-5_6 > .et_pb_column:nth-child(2n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-5_6 > .et_pb_column:nth-child(2n) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-desktop-pattern-5_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-5_6-1_6 > .et_pb_column:nth-child(2n+1) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-desktop-pattern-5_6-1_6 > .et_pb_column:nth-child(2n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
}

@media all and (min-width: 1400px) {
  .et_pb_row[class*="dmf-large-cols-"],
  .et_pb_row[class*="dmf-large-pattern-"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
  }
  .et_pb_row[class*="dmf-large-cols-"] > .et_pb_column,
  .et_pb_row[class*="dmf-large-pattern-"] > .et_pb_column {
    margin-right: 0 !important;
    clear: none !important;
    box-sizing: border-box;
  }
  .et_pb_row.dmf-large-cols-1 > .et_pb_column {
    width: 100.000000% !important;
    max-width: 100.000000% !important;
    flex: 0 0 100.000000% !important;
  }
  .et_pb_row.dmf-large-cols-2 > .et_pb_column {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-cols-3 > .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-large-cols-4 > .et_pb_column {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-cols-5 > .et_pb_column {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-cols-6 > .et_pb_column {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_2 > .et_pb_column:nth-child(2n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_2 > .et_pb_column:nth-child(2n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_3-2_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_3-2_3 > .et_pb_column:nth-child(2n+1) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-large-pattern-1_3-2_3 > .et_pb_column:nth-child(2n) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-2_3-1_3 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-2_3-1_3 > .et_pb_column:nth-child(2n+1) {
    width: 66.666667% !important;
    max-width: 66.666667% !important;
    flex: 0 0 66.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-2_3-1_3 > .et_pb_column:nth-child(2n) {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-3_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-3_4 > .et_pb_column:nth-child(2n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-3_4 > .et_pb_column:nth-child(2n) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-3_4-1_4 > .et_pb_column:nth-child(2n+1) {
    width: 75.000000% !important;
    max-width: 75.000000% !important;
    flex: 0 0 75.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_4-1_4 > .et_pb_column:nth-child(2n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-4_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-4_5 > .et_pb_column:nth-child(2n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-4_5 > .et_pb_column:nth-child(2n) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-4_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-4_5-1_5 > .et_pb_column:nth-child(2n+1) {
    width: 80.000000% !important;
    max-width: 80.000000% !important;
    flex: 0 0 80.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-4_5-1_5 > .et_pb_column:nth-child(2n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-2_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-2_5-3_5 > .et_pb_column:nth-child(2n+1) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-2_5-3_5 > .et_pb_column:nth-child(2n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-2_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-2_5 > .et_pb_column:nth-child(2n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-2_5 > .et_pb_column:nth-child(2n) {
    width: 40.000000% !important;
    max-width: 40.000000% !important;
    flex: 0 0 40.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-5_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-5_6 > .et_pb_column:nth-child(2n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-5_6 > .et_pb_column:nth-child(2n) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-large-pattern-5_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-5_6-1_6 > .et_pb_column:nth-child(2n+1) {
    width: 83.333333% !important;
    max-width: 83.333333% !important;
    flex: 0 0 83.333333% !important;
  }
  .et_pb_row.dmf-large-pattern-5_6-1_6 > .et_pb_column:nth-child(2n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_4-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_4-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_2-1_4 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n+2) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_2-1_4 > .et_pb_column:nth-child(3n) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_4-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+1) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n+2) {
    width: 25.000000% !important;
    max-width: 25.000000% !important;
    flex: 0 0 25.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_4-1_4-1_2 > .et_pb_column:nth-child(3n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-1_5-3_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-1_5-3_5 > .et_pb_column:nth-child(3n) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-3_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_5-3_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-1_5-1_5 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+1) {
    width: 60.000000% !important;
    max-width: 60.000000% !important;
    flex: 0 0 60.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n+2) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-3_5-1_5-1_5 > .et_pb_column:nth-child(3n) {
    width: 20.000000% !important;
    max-width: 20.000000% !important;
    flex: 0 0 20.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_6-1_6-1_6 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+1) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-child(4n) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-1_6-1_6-1_2 > .et_pb_column {
    max-width: none !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+1) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+2) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n+3) {
    width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
  }
  .et_pb_row.dmf-large-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-child(4n) {
    width: 50.000000% !important;
    max-width: 50.000000% !important;
    flex: 0 0 50.000000% !important;
  }
}



/* Divi Mobi First Last Row Behavior System - Version 2.33.0 */
/* These helper classes control incomplete flex rows. They do not create missing columns or move modules between columns. */
@media all and (max-width: 479px) {
  .et_pb_row.dmf-phone-last-center { justify-content: center !important; }
  .et_pb_row.dmf-phone-last-right { justify-content: flex-end !important; }
  .et_pb_row.dmf-phone-last-stretch > .et_pb_column { flex-grow: 1 !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-cols-2 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-cols-2 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-cols-3 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-cols-3 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-cols-4 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-cols-4 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-cols-5 > .et_pb_column:last-child:nth-child(5n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-cols-5 > .et_pb_column:last-child:nth-child(5n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-cols-6 > .et_pb_column:last-child:nth-child(6n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-cols-6 > .et_pb_column:last-child:nth-child(6n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_2-1_2 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_2-1_2 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_3-2_3 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_3-2_3 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-2_3-1_3 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-2_3-1_3 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_4-3_4 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_4-3_4 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-3_4-1_4 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-3_4-1_4 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_5-4_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_5-4_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-4_5-1_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-4_5-1_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-2_5-3_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-2_5-3_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-3_5-2_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-3_5-2_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_6-5_6 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_6-5_6 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-5_6-1_6 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-5_6-1_6 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-phone-single-full.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-phone-single-center.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
}
@media all and (min-width: 480px) and (max-width: 980px) {
  .et_pb_row.dmf-tablet-last-center { justify-content: center !important; }
  .et_pb_row.dmf-tablet-last-right { justify-content: flex-end !important; }
  .et_pb_row.dmf-tablet-last-stretch > .et_pb_column { flex-grow: 1 !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-cols-2 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-cols-2 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-cols-3 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-cols-3 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-cols-4 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-cols-4 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-cols-5 > .et_pb_column:last-child:nth-child(5n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-cols-5 > .et_pb_column:last-child:nth-child(5n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-cols-6 > .et_pb_column:last-child:nth-child(6n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-cols-6 > .et_pb_column:last-child:nth-child(6n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_2-1_2 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_2-1_2 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_3-2_3 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_3-2_3 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-2_3-1_3 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-2_3-1_3 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_4-3_4 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_4-3_4 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-3_4-1_4 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-3_4-1_4 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_5-4_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_5-4_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-4_5-1_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-4_5-1_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-2_5-3_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-2_5-3_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-3_5-2_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-3_5-2_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_6-5_6 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_6-5_6 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-5_6-1_6 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-5_6-1_6 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-tablet-single-full.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-tablet-single-center.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
}
@media all and (min-width: 981px) {
  .et_pb_row.dmf-desktop-last-center { justify-content: center !important; }
  .et_pb_row.dmf-desktop-last-right { justify-content: flex-end !important; }
  .et_pb_row.dmf-desktop-last-stretch > .et_pb_column { flex-grow: 1 !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-cols-2 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-cols-2 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-cols-3 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-cols-3 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-cols-4 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-cols-4 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-cols-5 > .et_pb_column:last-child:nth-child(5n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-cols-5 > .et_pb_column:last-child:nth-child(5n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-cols-6 > .et_pb_column:last-child:nth-child(6n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-cols-6 > .et_pb_column:last-child:nth-child(6n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_2-1_2 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_2-1_2 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_3-2_3 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_3-2_3 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-2_3-1_3 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-2_3-1_3 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_4-3_4 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_4-3_4 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-3_4-1_4 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-3_4-1_4 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_5-4_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_5-4_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-4_5-1_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-4_5-1_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-2_5-3_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-2_5-3_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-3_5-2_5 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-3_5-2_5 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_6-5_6 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_6-5_6 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-5_6-1_6 > .et_pb_column:last-child:nth-child(2n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-5_6-1_6 > .et_pb_column:last-child:nth-child(2n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:last-child:nth-child(3n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
  .et_pb_row.dmf-desktop-single-full.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:last-child:nth-child(4n+1) { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .et_pb_row.dmf-desktop-single-center.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:last-child:nth-child(4n+1) { margin-left: auto !important; margin-right: auto !important; }
}



/* Divi Mobi First Last Row Stretch Fix - Version 2.36.0 */
/* Stretch incomplete row now resizes only the leftover columns so they fill the final flex line evenly. */
/* Example: a 3-slot layout with 4 columns becomes 3 columns on row one, then the fourth column stretches full width on row two. */
@media all and (max-width: 479px) {
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-2 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-3 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-3 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-3 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-4 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-4 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-4 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(1):nth-child(5n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(2):nth-child(5n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(2):nth-child(5n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(1):nth-child(6n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(2):nth-child(6n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(2):nth-child(6n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 20% !important;
    max-width: 20% !important;
    flex: 0 0 20% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_2 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_3-2_3 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_4-3_4 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_5-4_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-1_6-5_6 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-2_3-1_3 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-2_5-3_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-3_4-1_4 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-3_5-2_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-4_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-phone-last-stretch.dmf-phone-pattern-5_6-1_6 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}
@media all and (min-width: 480px) and (max-width: 980px) {
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-2 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-3 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-3 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-3 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-4 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-4 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-4 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(1):nth-child(5n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(2):nth-child(5n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(2):nth-child(5n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(1):nth-child(6n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(2):nth-child(6n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(2):nth-child(6n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 20% !important;
    max-width: 20% !important;
    flex: 0 0 20% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_2 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_3-2_3 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_4-3_4 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_5-4_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-1_6-5_6 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-2_3-1_3 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-2_5-3_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-3_4-1_4 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-3_5-2_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-4_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-tablet-last-stretch.dmf-tablet-pattern-5_6-1_6 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}
@media all and (min-width: 981px) {
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-2 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-3 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-3 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-3 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-4 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-4 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-4 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-4 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(1):nth-child(5n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(2):nth-child(5n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(2):nth-child(5n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(3):nth-child(5n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-5 > .et_pb_column:nth-last-child(4):nth-child(5n+1) + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(1):nth-child(6n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(2):nth-child(6n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(2):nth-child(6n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(3):nth-child(6n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(4):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-cols-6 > .et_pb_column:nth-last-child(5):nth-child(6n+1) + .et_pb_column + .et_pb_column + .et_pb_column + .et_pb_column {
    width: 20% !important;
    max-width: 20% !important;
    flex: 0 0 20% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_2 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_4-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_2-1_6-1_6-1_6 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_3-2_3 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-1_2-1_4 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-1_4-1_2 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_4-3_4 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-1_5-3_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-3_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_5-4_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(1):nth-child(4n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(2):nth-child(4n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(2):nth-child(4n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column,
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-1_6-1_6-1_2 > .et_pb_column:nth-last-child(3):nth-child(4n+1) + .et_pb_column + .et_pb_column {
    width: 33.333333% !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-1_6-5_6 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-2_3-1_3 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-2_5-3_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-3_4-1_4 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(3n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1),
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-3_5-1_5-1_5 > .et_pb_column:nth-last-child(2):nth-child(3n+1) + .et_pb_column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-3_5-2_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-4_5-1_5 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .et_pb_row.dmf-desktop-last-stretch.dmf-desktop-pattern-5_6-1_6 > .et_pb_column:nth-last-child(1):nth-child(2n+1) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}
