@media screen and (max-width: 1920px) {
    :root {
    --little-text: 0.85rem;
    --regular-text: 1rem;
    --medium-text: 1.8rem;
    --big-text: 2.5rem;
    --little-space: 0.75rem;
    --regular-space: 1.25rem;
    --medium-space: 2rem;
    --big-space: 6rem;
    --header-height: 70px;
    --logo-width: 110px;
  }
  .item-big {
    height: 550px;
  }
  .item-medium {
    height: 400px;
  }
  .item-mini {
    height: 350px;
  }
}
@media screen and (max-width: 1450px) {
    :root {
        --little-text: 0.85rem;
        --regular-text: 1rem;
        --medium-text: 1.8rem;
        --big-text: 2.5rem;
        --little-space: 0.75rem;
        --regular-space: 1.25rem;
        --medium-space: 2rem;
        --big-space: 6rem;
        --header-height: 70px;
        --logo-width: 110px;
    }

    html, body {
        font-size: 16px;
    }

    .item-big {
        height: 550px;
    }

    .item-medium {
        height: 400px;
    }

    .item-mini {
        height: 350px;
    }

    .home-bar {
        flex-wrap: nowrap;
        flex-direction: column;
        gap: var(--little-space)

    }

        .home-bar .form-group {
            width: 100%;
            display: flex;
            justify-content: start;
            flex-direction: column;
            align-items: end;
        }

        .home-bar > div:last-child {
        }

        .home-bar > div:last-child {
            display: flex;
            margin-bottom: 0 !important;
            margin-top: var(--little-space) !important; 
            width: 100%;
            align-items: start;
        }

        .home-bar input.btn {
            width: 100%;
        }
}
@media screen and (max-width: 1199px) {
  :root {}
  html, body {
    font-size: 16px;
  }
  .hide-lg {
    display: none !important;
  }
  .align-center-lg {
    text-align: center !important;
  }
  .align-left-lg {
    text-align: left !important;
  }
  .m-top-lg-m {
    margin-top: var(--medium-space) !important;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --little-text: 0.75rem;
    --regular-text: 1rem;
    --medium-text: 1.5rem;
    --big-text: 2rem;
    --little-space: 0.75rem;
    --regular-space: 1.25rem;
    --medium-space: 1.8rem;
    --big-space: 4rem;
  }

    .footer-row.banner-row > div {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--regular-space);
    }

  html, body {
    font-size: 16px;
  }
  .hide-md {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }
  .align-center-md {
    text-align: center !important;
  }
  .align-left-md {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m {
    margin-top: var(--medium-space) !important;
  }
  .item-big {
    height: 450px;
  }
  .item-medium {
    height: 350px;
  }
  .item-mini {
    height: 350px;
  }
  /**hack col filter**/
  .col-filter {
    /*position: fixed;*/
    padding: 1.5rem;
    background-color: var(--grey-color);
    z-index: 1000000;
    top: calc(var(--header-height) + 30px);
    /*left: 2.5%;
    width: 95%;*/
    border-radius: 10px;
	border:1px solid var(--border-color);
    /*box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.3);*/
    /*transform: translate(0, -200%);*/
  }
  .item .btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --little-text: 0.75rem;
    --regular-text: 1rem;
    --medium-text: 1.25rem;
    --big-text: 2rem;
    --little-space: 0.75rem;
    --regular-space: 1.25rem;
    --medium-space: 1.8rem;
    --big-space: 3rem;
    --header-height: 50px;
    --logo-width: 90px;
  }
  html, body {
    font-size: 18px;
  }
  .hide-sm {
    display: none !important;
  }
  .align-center-sm {
    text-align: center !important;
  }
  .align-left-sm {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m {
    margin-top: var(--medium-space) !important;
  }
  footer .m-top-lg-m, footer .m-top-md-m, footer .m-top-sm-m {
    margin-top: var(--regular-space) !important;
  }
  .item-big {
    height: 350px;
  }
  .item-medium {
    height: 300px;
  }
  .item-mini {
    height: 280px;
  }
  .item-inside {
    padding: 1rem;
  }
}
@media screen and (max-width: 575px) {
  :root {
    --little-text: 0.75rem;
    --regular-text: 1rem;
    --medium-text: 1.25rem;
    --big-text: 2rem;
    --little-space: 0.75rem;
    --regular-space: 1.25rem;
    --medium-space: 1.8rem;
    --big-space: 3rem;
  }
  html, body {
    font-size: 16px;
  }
  .hide-xs {
    display: none !important;
  }
  .align-center-xs {
    text-align: center !important;
  }
  .align-left-xs {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m, .m-top-xs-m {
    margin-top: var(--medium-space) !important;
  }
  footer .m-top-lg-m, footer .m-top-md-m, footer .m-top-sm-m, footer .m-top-xs-m {
    margin-top: var(--regular-space) !important;
  }
}