/**
 * Author: Shadow Themes
 * Author URL: https://shadow-themes.com
 */

/* TABLET: Landscape 
   ================= */
@media only screen and (max-width: 1200px) {

  /* === PSWP === */
  .pswp__button,
  .pswp__ui--fit .pswp__top-bar button.pswp__button {
    width: 48px;
    height: 48px;
  }

  /* === Grid === */
  .stg-row>div[class*='bringer-t-grid'],
  [class*='bringer-t-grid'] {
    display: grid;
    grid-column-gap: var(--stg-gap);
    grid-row-gap: var(--stg-gap);
  }

  .bringer-t-grid-1col {
    grid-template-columns: repeat(1, 1fr);
  }

  .bringer-t-grid-2cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .bringer-t-grid-3cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .bringer-t-grid-4cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .bringer-t-grid-5cols {
    grid-template-columns: repeat(5, 1fr);
  }

  .bringer-t-grid-6cols {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Fullwidth Sections */
  section.t-is-fullwidth {
    max-width: 100svw;
    --bringer-fw-spacing: calc(0.5 * (100vw - var(--stg-container-width)));
    margin-left: calc(-1 * var(--bringer-fw-spacing));
    margin-right: calc(-1 * var(--bringer-fw-spacing));
    padding-left: var(--bringer-fw-spacing);
    padding-right: var(--bringer-fw-spacing);
  }

  section.t-is-fullwidth.t-is-stretched {
    padding-left: 0;
    padding-right: 0;
  }

  section.t-is-fullwidth.t-is-stretched>.t-is-boxed {
    --bringer-fw-spacing: calc(0.5 * (100vw - var(--stg-container-width)));
    padding-left: var(--bringer-fw-spacing);
    padding-right: var(--bringer-fw-spacing);
  }

  /* Sections Spacing */
  section[data-tp-padding="none"] {
    padding-top: 0;
    padding-bottom: 0;
  }

  section[data-tp-padding="top"] {
    padding-bottom: 0;
  }

  section[data-tp-padding="bottom"] {
    padding-top: 0;
  }

  section[data-tp-padding="small"] {
    padding: calc(0.5 * var(--bringer-section-gap)) 0;
  }

  /* === CTA BLOCKS === */
  .bringer-masked-cta .bringer-masked-content {
    max-width: 30%;
  }

  .bringer-masked-cta .bringer-cta-title {
    max-width: 80%;
  }

  .stg-cta-with-image {
    --this-spacing: var(--stg-large-gap);
  }

  [class*='stg-col-']>div.bringer-offset-image {
    width: calc(100% - var(--this-offset) - var(--this-spacing));
  }

  /* === CONTACTS PAGE === */
  .bringer-framed-socials a {
    width: 36px;
    height: 36px;
  }

  iframe.bringer-google-map {
    max-height: 309px;
  }

  /* === PORTFOLIO === */
  .bringer-slider-nav.on-sides {
    top: calc(50% - 36px)
  }

  .bringer-slider-nav.on-sides a {
    width: 48px;
    height: 72px;
  }

  .bringer-next-post.bringer-icon-link .bringer-icon-wrap {
    width: 128px;
    height: 128px;
  }

  .bringer-next-post .bringer-icon {
    width: 36px;
    height: 36px;
  }

  /* === PSWP === */
  button.pswp__button.pswp__button--close,
  .pswp__top-bar button.pswp__button,
  .pswp__ui--fit .pswp__top-bar button.pswp__button {
    right: var(--stg-small-gap);
    top: var(--stg-small-gap);
    position: absolute;
  }
}

/* MOBILE MENU
   =========== */
@media only screen and (max-width: 960px) {

  .bringer-active-menu-ind,
  .bringer-header-inner {
    display: none;
  }

  .bringer-mobile-header-inner {
    display: flex;
    min-height: 44px;
    justify-content: space-between;
    align-items: center;
    padding: var(--bringer-header-spacing) var(--stg-gap);
    width: 100%;
  }

  .bringer-mobile-menu-toggler {
    width: 44px;
    height: 44px;
    background: var(--bringer-s-accent);
    transition: background-color 0.3s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
  }

  .bringer-mobile-menu-toggler::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: block;
    border: 1px solid var(--bringer-s-accented-text);
    opacity: 0.15;
    border-radius: inherit;
    transition: opacity 0.3s;
    will-change: opacity;
    z-index: 1;
  }

  .bringer-mobile-menu-toggler i {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 3;
  }

  .bringer-mobile-menu-toggler span {
    background: var(--bringer-s-accented-text);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    display: block;
    position: absolute;
    left: 11px;
    transform-origin: 0 50%;
    transition: transform 0.3s, background-color 0.3s;
    will-change: transform;
    z-index: 5;
  }

  .bringer-mobile-menu-toggler span:nth-child(1) {
    top: calc(50% - 7px);
  }

  .bringer-mobile-menu-toggler span:nth-child(2) {
    top: calc(50% - 1px);
    transform-origin: 50% 50%;
  }

  .bringer-mobile-menu-toggler span:nth-child(3) {
    top: calc(50% + 5px);
    transform: scale(0.667, 1);
  }

  /* Menu Toggler close state */
  .show-menu .bringer-mobile-menu-toggler {
    background: transparent;
  }

  .show-menu .bringer-mobile-menu-toggler::before {
    opacity: 1;
  }

  .show-menu .bringer-mobile-menu-toggler span:nth-child(1) {
    transform: rotate(45deg) scale(1.35, 1) translate(-1px, -2px);
    background-color: var(--bringer-s-heading);
  }

  .show-menu .bringer-mobile-menu-toggler span:nth-child(2) {
    transform: scale(0, 1);
    background-color: var(--bringer-s-heading);
  }

  .show-menu .bringer-mobile-menu-toggler span:nth-child(3) {
    transform: rotate(-45deg) scale(1.35, 1) translate(-1px, 2px);
    background-color: var(--bringer-s-heading);
  }

  /* Mobile Menu Container */
  .bringer-mobile-nav {
    display: block;
  }

  .show-menu .bringer-mobile-nav {
    transform: translate(0);
    pointer-events: all;
  }

  body.show-menu.is-unloading .bringer-mobile-nav {
    transform: translateX(100%);
    pointer-events: none;
  }

  .bringer-mobile-nav::-webkit-scrollbar {
    width: 0;
  }

  .bringer-mobile-nav::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, transparent, var(--bringer-s-border));
    ;
  }

  .bringer-mobile-nav::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 25%, var(--bringer-s-body-bg) 100%);
  }

  /* Mobile Menu */
  .bringer-mobile-menu {
    padding: var(--stg-large-gap);
    margin: 0;
    position: relative;
    z-index: 5;
  }

  .bringer-mobile-menu>li.current-menu-parent>a::before,
  .bringer-mobile-menu>li.current-menu-item>a::before,
  .bringer-mobile-menu>li.current-menu-ancestor>a::before,
  .bringer-mobile-menu .sub-menu>li.current-menu-parent>a::before,
  .bringer-mobile-menu .sub-menu>li.current-menu-item>a::before,
  .bringer-mobile-menu .sub-menu>li.current-menu-ancestor>a::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--stg-large-gap));
    top: 50%;
    display: block;
    width: var(--stg-gap);
    height: 2px;
    border-radius: 0 2px 2px 0;
    background: var(--bringer-s-heading);
  }

  .bringer-mobile-menu .sub-menu>li.current-menu-parent>a::before,
  .bringer-mobile-menu .sub-menu>li.current-menu-item>a::before,
  .bringer-mobile-menu .sub-menu>li.current-menu-ancestor>a::before {
    opacity: 1;
    width: var(--stg-small-gap);
    left: calc(-1 * var(--stg-gap) + 2px);
    transform: translateY(-1px);
  }

  .bringer-mobile-menu a {
    color: var(--bringer-c-menu);
    display: block;
    position: relative;
    padding: 16px 0;
  }

  .bringer-mobile-menu .sub-menu {
    padding-left: var(--stg-gap);
    position: relative;
    display: none;
  }

  .bringer-mobile-menu .sub-menu a {
    padding: 12px 0;
  }

  .bringer-mobile-menu .sub-menu::before {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--bringer-s-heading);
    opacity: 0.15;
    border-radius: 2px;
  }

  .bringer-mobile-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--bringer-t-menu-ff);
    font-weight: var(--bringer-t-menu-fw);
    font-size: var(--bringer-t-menu-fs);
    line-height: var(--bringer-t-menu-lh);
    position: relative;
  }

  .bringer-mobile-menu ul.sub-menu li {
    font-family: var(--bringer-t-submenu-ff);
    font-weight: var(--bringer-t-submenu-fw);
    font-size: var(--bringer-t-submenu-fs);
    line-height: var(--bringer-t-submenu-lh);
  }

  .bringer-mobile-menu li.current-menu-parent>a,
  .bringer-mobile-menu li.current-menu-item>a,
  .bringer-mobile-menu li.current-menu-ancestor>a {
    color: var(--bringer-c-menu-active);
  }

  .bringer-mobile-menu li.menu-item-has-children>a::after {
    content: '';
    width: var(--bringer-t-menu-fs);
    height: var(--bringer-t-menu-fs);
    background: var(--bringer-c-menu);
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    vertical-align: middle;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--icon-chevron-down);
    mask-image: var(--icon-chevron-down);
    transform: translateY(-1px) rotate(-90deg);
    position: absolute;
    right: -24px;
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
  }

  .bringer-mobile-menu li.current-menu-parent.menu-item-has-children>a::after,
  .bringer-mobile-menu li.current-menu-item.menu-item-has-children>a::after,
  .bringer-mobile-menu li.current-menu-ancestor.menu-item-has-children>a::after {
    background: var(--bringer-c-menu-active);
  }

  .bringer-mobile-menu li.menu-item-has-children>a.is-active::after {
    transform: translateY(-1px) rotate(0deg);
  }

  /* Divider */
  ul.bringer-mobile-menu li.bringer-menu-divider {
    position: relative;
    padding: 12px 0;
    height: 1px;
    pointer-events: none;
  }

  ul.bringer-mobile-menu li.bringer-menu-divider::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: var(--bringer-s-heading);
    position: absolute;
    left: 0;
    top: 12px;
    opacity: 0.1;
  }

  /* Overlay */
  .bringer-mobile-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 86;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    will-change: opacity;
    background: var(--bringer-s-nav);
  }

  .show-menu .bringer-mobile-menu-overlay {
    pointer-events: all;
    opacity: 0.5;
  }
}

/* MOBILE GRID
   =========== */
@media only screen and (max-width: 960px) {
  .bringer-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: var(--stg-gap);
    grid-auto-flow: row;
  }
  
  .Cliend-grid img{
    width: 180px;
  }

  .bringer-bento-grid .is-medium {
    overflow: hidden;
  }

  /* Type 01 */
  .bringer-bento-grid .is-large:first-child {
    grid-area: 1 / 1 / 3 / 3;
  }

  .bringer-bento-grid .is-medium:nth-child(2) {
    grid-area: 3 / 1 / 4 / 3;
  }

  /* Type 02 */
  .bringer-bento-grid .is-medium:last-child {
    grid-area: 4 / 1 / 5 / 3;
  }

  /* Type 03 */
  .bringer-bento-grid .is-medium:first-child {
    grid-area: 1 / 1 / 2 / 3;
  }

  .bringer-bento-grid .is-large:last-child {
    grid-area: 3 / 1 / 5 / 3;
  }

  /* Type 04 */
  .bringer-bento-grid .is-medium:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
  }

}

/* TABLET: Portrait Only
   ===================== */
@media only screen and (min-width: 740px) and (max-width: 960px) {
  .bringer-large-text.bringer-tp-normal-text {
    font-size: var(--bringer-t-content-fs);
    line-height: var(--bringer-t-content-lh);
    letter-spacing: var(--bringer-t-content-ls);
    font-weight: var(--bringer-t-content-fw);
  }

  /* Fullwidth Sections */
  section.tp-is-fullwidth {
    max-width: 100svw;
    --bringer-fw-spacing: calc(0.5 * (100vw - var(--stg-container-width)));
    margin-left: calc(-1 * var(--bringer-fw-spacing));
    margin-right: calc(-1 * var(--bringer-fw-spacing));
    padding-left: var(--bringer-fw-spacing);
    padding-right: var(--bringer-fw-spacing);
  }

  section.tp-is-fullwidth.tp-is-stretched {
    padding-left: 0;
    padding-right: 0;
  }

  section.tp-is-fullwidth.tp-is-stretched>.tp-is-boxed {
    --bringer-fw-spacing: calc(0.5 * (100vw - var(--stg-container-width)));
    padding-left: var(--bringer-fw-spacing);
    padding-right: var(--bringer-fw-spacing);
  }

  /* Grid Portfolio */
  .bringer-tp-centered-last-item.bringer-tp-grid-2cols>div:nth-child(odd):last-child {
    transform: translateX(calc(50% + 0.5 * var(--stg-gap)));
  }

  /* Icon Boxes */
  .bringer-icon-box .bringer-box-icon {
    width: 48px;
    height: 48px;
  }

  .bringer-icon-box i {
    width: 24px;
    height: 24px;
  }

  .bringer-icon-box h4 {
    padding-right: calc(48px + var(--stg-small-gap));
  }
}

/* TABLET: Portrait
   ================ */
@media only screen and (max-width: 960px) {

  /* === Grid === */
  .stg-row>div[class*='bringer-tp-grid'],
  [class*='bringer-tp-grid'] {
    display: grid;
    grid-column-gap: var(--stg-gap);
    grid-row-gap: var(--stg-gap);
  }

  .product-gird-box .product-row-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .bringer-mobile-header-inner .bringer-logo p{
    color: #3a6b74 !important;
  }

  .bringer-mobile-header-inner .bringer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .bringer-tp-grid-1col {
    grid-template-columns: repeat(1, 1fr);
  }

  .bringer-tp-grid-2cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .bringer-tp-grid-3cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .bringer-tp-grid-4cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .bringer-tp-grid-5cols {
    grid-template-columns: repeat(5, 1fr);
  }

  .bringer-tp-grid-6cols {
    grid-template-columns: repeat(6, 1fr);
  }

  .bringer-tp-stretch-last-item.bringer-tp-grid-2cols>div:nth-child(odd):last-child {
    grid-column: 1 / -1;
  }

  .bringer-tp-stretch-last-item.bringer-tp-grid-2cols>div:nth-child(odd):last-child.stg-aspect-square,
  .bringer-tp-stretch-last-item.bringer-tp-grid-2cols>div:nth-child(odd):last-child .stg-aspect-square {
    aspect-ratio: 2/1;
  }

  /* Sections Spacing */
  section[data-tp-padding="none"] {
    padding-top: 0;
    padding-bottom: 0;
  }

  section[data-tp-padding="top"] {
    padding-bottom: 0;
  }

  section[data-tp-padding="bottom"] {
    padding-top: 0;
  }

  section[data-tp-padding="small"] {
    padding: calc(0.5 * var(--bringer-section-gap)) 0;
  }

  /* === Home Hero Sections === */
  /* Type 01 */
  .bringer-hero-type01 h1.bringer-page-title {
    font-size: var(--bringer-t-h2-fs);
    letter-spacing: var(--bringer-t-h2-ls);
    line-height: var(--bringer-t-h2-lh);
  }

  .bringer-hero-type01 .bringer-masked-content {
    width: 80px;
    height: 80px;
  }

  .bringer-hero-type01 .bringer-masked-content a.bringer-square-button {
    width: 68px;
    height: 68px;
  }

  .bringer-hero-type01 .bringer-masked-content a span {
    width: 24px;
    height: 24px;
  }

  /* Type 02 */
  .bringer-hero-type02>.stg-row>.stg-col-6:first-child {
    position: relative;
    z-index: 5;
  }

  .bringer-hero-type02 .bringer-page-title {
    padding: 0;
    margin-bottom: var(--stg-gap);
  }

  .bringer-hero-type02 .stg-row.stg-no-gap>div.stg-tp-offset-6 {
    margin: -70% 0 0 50%;
    position: relative;
    z-index: 3;
  }

  .bringer-hero-type02 .stg-col-4>img {
    margin-left: var(--stg-gap);
  }

  /* Type 03 */
  .bringer-hero-type03 .bringer-hero-title-wrap {
    flex-direction: column;
  }

  .bringer-hero-type03 .bringer-hero-title-wrap h1.bringer-page-title {
    max-width: 100%;
    margin-bottom: var(--stg-gap);
  }

  .bringer-hero-type03 .bringer-hero-title-wrap>div {
    max-width: 45%;
    align-self: flex-end;
  }

  .bringer-hero-type03 .bringer-hero-media-content {
    max-width: 45%;
  }

  .bringer-hero-type03 .bringer-tags-list {
    max-width: 50%;
  }

  /* Type 04 */
  .bringer-hero-type04 .bringer-large-text {
    max-width: 100%;
  }

  .bringer-hero-type04 .bringer-hero-info-line {
    margin-bottom: var(--stg-large-gap);
  }

  /* Type 07 */
  .bringer-hero-type07 .bringer-page-title {
    font-size: var(--bringer-t-h2-fs);
    letter-spacing: var(--bringer-t-h2-ls);
    line-height: var(--bringer-t-h2-lh);
    padding: 0;
  }

  .bringer-hero-type07 .bringer-hero-social-proof {
    margin-top: calc(var(--stg-gap) + var(--stg-xs-gap));
  }

  .bringer-hero-type07 .bringer-hero-social-proof a,
  .bringer-hero-type07 .bringer-hero-social-proof img {
    width: 64px;
    height: 64px;
  }

  .bringer-hero-type07 .bringer-hero-social-proof a span {
    display: none;
  }

  .bringer-hero-type07 .bringer-hero-social-proof>div {
    flex-wrap: wrap;
  }

  .bringer-hero-type07 .bringer-large-text {
    font-size: var(--bringer-t-content-fs);
    line-height: var(--bringer-t-content-lh);
    letter-spacing: var(--bringer-t-content-ls);
  }

  /* Type 08 */
  .bringer-hero-form {
    padding: 0;
  }

  .bringer-hero-type08 h1 {
    padding: 0;
  }

  .bringer-hero-type08 .stg-row>div.stg-tp-col-12 p {
    max-width: 80%;
    margin: 0 10% var(--stg-gap) 10%;
  }

  /* === CTA Sections === */
  .bringer-masked-cta .bringer-masked-content {
    max-width: 50%;
  }

  .bringer-masked-cta .bringer-cta-title {
    font-size: var(--bringer-t-h2-fs);
    letter-spacing: var(--bringer-t-h2-ls);
    line-height: var(--bringer-t-h2-lh);
    max-width: 100%;
    margin: var(--stg-large-gap) 0;
  }

  .bringer-masked-cta input {
    font-size: var(--bringer-t-h4-fs);
    letter-spacing: var(--bringer-t-h4-ls);
  }

  .bringer-masked-cta button {
    padding: var(--stg-gap);
  }

  .bringer-masked-cta button span {
    width: 28px;
    height: 28px;
  }

  .stg-cta-with-image {
    padding: 0;
  }

  .bringer-cta-form-title {
    font-size: var(--bringer-t-h2-fs);
    letter-spacing: var(--bringer-t-h2-ls);
    line-height: var(--bringer-t-h2-lh);
  }

  .bringer-cta-text {
    padding: var(--stg-large-gap) 0;
  }

  div[class*='stg-col']:has(.bringer-offset-image) {
    margin-top: calc(2 * var(--stg-large-gap));
    margin-bottom: calc(-1 * var(--stg-large-gap));
  }

  [class*='stg-col-']:first-child>div.bringer-offset-image,
  [class*='stg-col-']>div.bringer-offset-image {
    border-radius: 0 var(--bringer-large-br) 0 0;
  }

  [class*='stg-col-']:last-child>div.bringer-offset-image {
    border-radius: var(--bringer-large-br) 0 0 0;
  }

  /* === Elements === */
  .bringer-section-title p.is-short {
    max-width: calc(0.8 * var(--stg-container-width));
  }

  .bringer-masked-content {
    max-width: 50%;
  }

  .bringer-grid-cta .bringer-masked-content {
    max-width: 33.33%;
  }

  iframe.bringer-google-map {
    aspect-ratio: 1/1;
    height: auto;
    max-height: unset;
  }

  /* List with Preview */
  .bringer-list-with-preview {
    flex-direction: column;
  }

  .bringer-lwp-media {
    display: none;
  }

  .bringer-list-with-preview>div.bringer-lwp-roster {
    width: 100%;
  }

  .bringer-lwp-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--stg-gap);
  }

  .bringer-lwp-item>img {
    display: block;
    min-width: 64px;
    max-width: 64px;
    border-radius: calc(1.5 * var(--bringer-xs-br));
  }

  .bringer-lwp-item h5 {
    min-width: calc(50% - 64px - 2 * var(--stg-gap));
  }

  .bringer-lwp-item-content {
    width: 100%;
  }

  .bringer-lwp-roster .align-right:nth-child(odd) {
    text-align: left;
  }

  /* List with Details */
  .bringer-detailed-list-title {
    min-width: calc(25% - var(--stg-gap));
    max-width: calc(25% - var(--stg-gap));
  }

  .bringer-detailed-list-description {
    min-width: calc(75% - 2 * var(--stg-gap) - 64px);
    max-width: calc(75% - 2 * var(--stg-gap) - 64px);
  }

  .bringer-detailed-list-button {
    width: 64px;
    height: 64px;
  }

  /* Slider */
  .bringer-slider-nav.bringer-masked-content {
    width: 128px;
    height: 64px;
  }

  .bringer-slider-nav.bringer-masked-content a {
    width: 56px;
    height: 56px;
    margin: 8px 0 0 8px;
  }

  .bringer-slider-nav.on-sides a span.bringer-icon {
    width: 20px;
    height: 20px;
  }

  /* FAQ */
  .bringer-toggles-item--title h4 {
    font-size: var(--bringer-t-h6-fs);
    letter-spacing: var(--bringer-t-h6-ls);
    line-height: var(--bringer-t-h6-lh);
  }

  .bringer-toggles-item--title i.bringer-icon {
    transform: rotate(-90deg) translate(-3px, 0px);
  }

  .is-active .bringer-toggles-item--title .bringer-icon {
    transform: rotate(0deg) translate(0, 8px);
  }

  /* === Portfolio === */
  .bringer-infinite-list-title h2 {
    font-size: var(--bringer-t-h3-fs);
    letter-spacing: var(--bringer-t-h3-ls);
    line-height: var(--bringer-t-h3-lh);
  }

  .bringer-fullscreen-page .bringer-slider img,
  .bringer-fullscreen-page .bringer-slider video {
    height: calc(100svh - var(--st-header-height) - var(--st-footer-height));
    width: auto;
  }

  .bringer-column-item .bringer-masked-content {
    max-width: 85%;
  }

  .bringer-column-item h4 {
    font-size: var(--bringer-t-h5-fs);
    letter-spacing: var(--bringer-t-h5-ls);
    line-height: var(--bringer-t-h5-lh);
  }

  .bringer-column-item-title span {
    margin-bottom: 4px;
  }

  .bringer-column-item-content .bringer-icon-wrap {
    width: 64px;
    height: 64px;
  }

  .bringer-column-item .bringer-icon {
    width: 16px;
    height: 16px;
  }

  .bringer-next-post h2 {
    font-size: var(--bringer-t-h2-fs);
    letter-spacing: var(--bringer-t-h2-ls);
    line-height: var(--bringer-t-h2-lh);
  }

  .bringer-next-post .bringer-icon {
    width: 24px;
    height: 24px;
  }

  .bringer-next-post.bringer-icon-link .bringer-icon-wrap {
    width: 96px;
    height: 96px;
  }

  .bringer-next-post .bringer-icon-wrap::before {
    border-width: 2px;
  }

  /* === Footer === */
  .bringer-footer-widgets div[class*='stg-tp-col']:has(.bringer-info-widget) {
    padding: 0 calc(0.2 * var(--stg-container-width)) 0 0;
  }

  .bringer-info-widget .bringer-label {
    margin-bottom: 8px;
  }
}

/* MOBILE PHONES
   ============= */
@media only screen and (max-width: 739px) {
  .bringer-mobile-nav::after {
    background: linear-gradient(180deg, transparent 0%, var(--bringer-s-body-bg) 100%);
    opacity: 0.85;
  }
  
  .bringer-portfolio-card-image img{
    height: 152px;
  }

  section.is-fullwidth {
    margin-left: calc(-1 * var(--stg-gap));
    margin-right: calc(-1 * var(--stg-gap));
    padding-left: var(--stg-gap);
    padding-right: var(--stg-gap);
  }

  section.is-fullwidth.is-stretched>.is-boxed {
    padding-left: var(--stg-gap);
    padding-right: var(--stg-gap);
  }

  /* === Mobile Menu === */
  .bringer-mobile-nav {
    max-width: 100%;
  }

  .bringer-mobile-header-inner {
    padding: var(--bringer-header-spacing) var(--stg-gap);
  }

  /* === Grid === */
  .bringer-grid-1col,
  .bringer-grid-2cols,
  .bringer-grid-3cols,
  .bringer-grid-4cols,
  .bringer-grid-5cols,
  .bringer-grid-6cols {
    grid-template-columns: repeat(1, 1fr);
  }

  .stg-row>div[class*='bringer-m-grid'],
  [class*='bringer-m-grid'] {
    display: grid;
    grid-column-gap: var(--stg-gap);
    grid-row-gap: var(--stg-gap);
  }

  .bringer-m-grid-1col {
    grid-template-columns: repeat(1, 1fr);
  }

  .bringer-m-grid-2cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .bringer-m-grid-3cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .bringer-m-grid-4cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .bringer-m-grid-5cols {
    grid-template-columns: repeat(5, 1fr);
  }

  .bringer-m-grid-6cols {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Fullwidth Sections */
  section.m-is-fullwidth {
    max-width: 100svw;
    --bringer-fw-spacing: calc(0.5 * (100vw - var(--stg-container-width)));
    margin-left: calc(-1 * var(--bringer-fw-spacing));
    margin-right: calc(-1 * var(--bringer-fw-spacing));
    padding-left: var(--bringer-fw-spacing);
    padding-right: var(--bringer-fw-spacing);
  }

  section.m-is-fullwidth.m-is-stretched {
    padding-left: 0;
    padding-right: 0;
  }

  section.m-is-fullwidth.m-is-stretched>.m-is-boxed {
    --bringer-fw-spacing: calc(0.5 * (100vw - var(--stg-container-width)));
    padding-left: var(--bringer-fw-spacing);
    padding-right: var(--bringer-fw-spacing);
  }

  /* Sections Spacing */
  section[data-tp-padding="none"] {
    padding-top: 0;
    padding-bottom: 0;
  }

  section[data-tp-padding="top"] {
    padding-bottom: 0;
  }

  section[data-tp-padding="bottom"] {
    padding-top: 0;
  }

  section[data-tp-padding="small"] {
    padding: calc(0.5 * var(--bringer-section-gap)) 0;
  }

  /* === Home Hero Sections === */
  .bringer-hero-info-line {
    font-size: var(--bringer-t-meta-fs);
  }

  /* Type 01 */
  .bringer-hero-type01 .bringer-hero-social-proof {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--stg-gap);
  }

  .bringer-hero-type01 .bringer-hero-social-proof>p {
    text-align: left;
  }

  .bringer-hero-type01 .bringer-hero-social-proof>div {
    margin: 0 0 0 28px;
  }

  .bringer-hero-type01 .bringer-masked-block {
    --masked-inner-radius: var(--bringer-default-br);
    --masked-border-radius: var(--bringer-small-br);
  }

  .bringer-hero-type01 .bringer-masked-content a.bringer-square-button {
    width: 44px;
    height: 44px;
    border-radius: var(--bringer-small-br);
  }

  .bringer-hero-type01 .bringer-masked-content a span {
    width: 16px;
    height: 16px;
  }

  .bringer-hero-type01 .bringer-masked-content {
    width: 56px;
    height: 56px;
  }

  .bringer-hero-type01 .bringer-masked-content.at-bottom-right .bringer-square-button {
    margin: var(--stg-small-gap) 0 0 var(--stg-small-gap);
  }

  .bringer-hero-type01 .bringer-masked-media img {
    border-radius: var(--bringer-small-br);
  }

  /* Type 02 */
  .stg-row.bringer-hero02-row {
    width: 100%;
  }

  .bringer-hero-type02 .stg-col-4>img {
    margin-left: 0;
  }

  .bringer-hero-type02 .stg-row.stg-no-gap>div.stg-tp-offset-6 {
    margin: 0;
    position: absolute;
    right: 0;
    top: calc(-0.25 * var(--stg-gap));
    width: calc(50% - 0.5 * var(--stg-gap));
  }

  .stg-row.bringer-hero02-row {
    padding-bottom: 0;
  }

  /* Type 03 */
  .bringer-hero-type03 .bringer-hero-title-wrap h1.bringer-page-title {
    margin-bottom: 0;
  }

  .bringer-hero-type03 .bringer-tags-list,
  .bringer-hero-type03 .bringer-hero-media-content {
    position: static;
  }

  .bringer-hero-type03 .bringer-tags-list {
    max-width: 100%;
  }

  .bringer-hero-type03 .bringer-hero-media-content {
    margin: var(--stg-gap) 0;
    max-width: 80%;
    margin-left: 10%;
  }

  .bringer-hero-type03 .bringer-hero-title-wrap>div {
    max-width: 50%;
    margin: 0 25%;
  }

  .bringer-hero-type03 .bringer-masked-content.at-top-right>div {
    padding: 0;
  }

  .bringer-hero-type03 .bringer-tags-list {
    justify-content: center;
  }

  /* Type 05 */
  .bringer-hero-type05 a.bringer-square-button span.bringer-icon {
    width: 32px;
    height: 32px;
  }

  /* Type 06 */
  .bringer-hero-type06 .bringer-masked-content.at-bottom-right {
    width: 88px;
    height: 88px;
  }

  .bringer-hero-type06 .bringer-masked-content.at-bottom-right a.bringer-square-button {
    margin: var(--stg-small-gap) 0 0 var(--stg-small-gap);
  }

  .bringer-hero-type06 .bringer-square-button {
    width: calc(100% - var(--stg-small-gap));
    height: calc(100% - var(--stg-small-gap));
  }

  .bringer-hero-type06 .is-large .bringer-bento-hero-media p {
    max-width: calc(100% - 88px - var(--stg-small-gap));
  }

  /* Type 07 */
  .bringer-hero-type07 .bringer-hero-social-proof>div {
    justify-content: center;
  }

  /* Type 08 */
  .bringer-hero-type08 .stg-row>div.stg-tp-col-12 p {
    max-width: 100%;
    margin: 0 0 var(--stg-gap) 0;
  }

  .bringer-hero-form {
    padding-bottom: 0;
  }

  /* === Elements === */
  .bringer-page-title.is-large {
    font-size: var(--bringer-t-h1-fs);
    line-height: var(--bringer-t-h1-lh);
  }

  .bringer-section-title p.is-short {
    max-width: calc(0.9 * var(--stg-container-width));
  }

  .bringer-image-box:not(:last-child) {
    margin: unset;
  }

  .bringer-bento-grid:not(.bringer-grid-cta) .is-small .bringer-square-button {
    width: 48px;
    height: 48px;
  }

  .bringer-bento-grid:not(.bringer-grid-cta) .is-small .bringer-square-button .bringer-icon {
    width: 16px;
    height: 16px;
  }

  .bringer-member-contacts .bringer-socials-list a {
    width: 48px;
    height: 48px;
  }

  .bringer-member-contacts .bringer-socials-list a i {
    width: 24px;
    height: 24px;
  }

  .bringer-icon-link .bringer-icon-wrap {
    width: 64px;
    height: 64px;
  }

  .bringer-tp-stretch-last-item.bringer-tp-grid-2cols>div:nth-child(odd):last-child.stg-aspect-square,
  .bringer-tp-stretch-last-item.bringer-tp-grid-2cols>div:nth-child(odd):last-child .stg-aspect-square {
    aspect-ratio: 1/1;
  }

  .bringer-masked-content[class*='stg-m-top-'],
  .bringer-masked-content[class*='stg-m-bottom-'] {
    position: static;
    max-width: 100%;
    padding: 0;
  }

  .bringer-masked-content[class*='stg-m-top-']>div,
  .bringer-masked-content[class*='stg-m-bottom-']>div {
    padding: 0;
  }

  /* List with Preview */
  .bringer-lwp-item {
    flex-direction: column;
    contain: paint;
  }

  .bringer-lwp-item h5 {
    width: 100%;
  }

  .bringer-lwp-item:not(.is-active) a {
    pointer-events: none;
  }

  .bringer-lwp-item>img {
    display: none;
  }

  /* FAQ */
  .bringer-toggles-item--title sup {
    display: none;
  }

  .bringer-toggles-item--title h4 {
    font-size: var(--bringer-t-h6-fs);
    letter-spacing: var(--bringer-t-h6-ls);
    line-height: var(--bringer-t-h6-lh);
    padding-right: 0;
  }

  .bringer-toggles-item--title i.bringer-icon {
    display: none;
  }

  /* Detailed List */
  .bringer-detailed-list li {
    align-items: center;
  }

  .bringer-detailed-list-title {
    min-width: calc(100% - 2 * var(--stg-gap) - 48px);
    max-width: calc(100% - 2 * var(--stg-gap) - 48px);
  }

  .bringer-detailed-list-description {
    display: none;
  }

  .bringer-detailed-list-button {
    width: 48px;
    height: 48px;
  }

  .bringer-detailed-list-button span.bringer-icon {
    width: 16px;
    height: 16px;
  }

  /* Slider */
  .bringer-slider-nav.bringer-masked-content a {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .bringer-slider-nav.bringer-masked-content a::before {
    border-width: 1px;
  }

  .bringer-slider-nav.bringer-masked-content span.bringer-icon {
    width: 12px;
    height: 12px;
  }

  .bringer-slider-nav.bringer-masked-content {
    width: 100px;
    height: 52px;
  }

  .bringer-list-with-preview>div.bringer-lwp-roster {
    grid-template-columns: repeat(1, 1fr);
  }

  /* === CTA === */
  .bringer-masked-cta .bringer-masked-content {
    display: none;
  }

  .bringer-masked-cta .bringer-cta-form {
    padding: var(--stg-gap);
    flex-direction: column;
    gap: var(--stg-small-gap);
  }

  .bringer-masked-cta .bringer-cta-title {
    margin: 0 0 var(--stg-gap) 0;
  }

  .bringer-masked-cta .bringer-cta-form-button {
    width: 100%;
  }

  .bringer-masked-cta button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .bringer-masked-cta input {
    font-size: var(--bringer-t-h6-fs);
    letter-spacing: var(--bringer-t-h5-ls);
  }

  .bringer-grid-cta .bringer-square-button span {
    width: 48px;
    height: 48px;
  }

  .bringer-bento-grid {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, minmax(auto, calc(50% - 0.5 * var(--stg-gap))));
    grid-template-rows: repeat(4, auto);
  }

  .bringer-bento-grid .is-large {
    min-height: var(--stg-container-width);
  }

  .bringer-grid-cta .is-medium {
    aspect-ratio: 2;
  }

  .bringer-bento-grid .is-small:has(.bringer-meta-list) {
    max-height: fit-content;
  }

  /* === Portfolio === */
  /* Infinite List */
  .bringer-infinite-list-item .bringer-meta {
    margin-bottom: 4px;
  }

  .bringer-infinite-list-title h2 {
    font-size: var(--bringer-t-h6-fs);
    letter-spacing: var(--bringer-t-h6-ls);
    line-height: var(--bringer-t-h6-lh);
  }

  .bringer-infinite-list-icon {
    width: 48px;
    height: 48px;
  }

  .bringer-infinite-list-icon .bringer-icon {
    width: 16px;
    height: 16px;
  }

  .bringer-infinite-list-preview {
    width: 64px;
    height: 64px;
    top: calc(50% - 32px);
  }

  .bringer-infinite-list-item {
    padding-left: calc(64px + var(--stg-gap));
  }

  /* Slider */
  .bringer-slider-nav.on-sides a {
    height: 64px;
  }

  .bringer-slider-nav.on-sides {
    top: calc(50% - 32px);
  }

  .bringer-slider-nav.on-sides a.bringer-slider-prev span.bringer-icon {
    transform: translateX(-4px);
  }

  .bringer-slider-nav.on-sides a.bringer-slider-next span.bringer-icon {
    transform: translateX(4px);
  }

  .bringer-slider .bringer-slide-content-inner {
    padding: calc(1.5 * var(--stg-small-gap)) calc(1.5 * var(--stg-gap));
  }

  .bringer-slider .bringer-slide-content-inner h4 {
    font-size: var(--bringer-t-h5-fs);
    letter-spacing: var(--bringer-t-h5-ls);
    line-height: var(--bringer-t-h5-lh);
  }

  /* Column */
  .bringer-column-item.bringer-masked-block {
    --masked-inner-radius: var(--bringer-default-br)
  }

  .bringer-column-item h4 {
    font-size: var(--bringer-t-h6-fs);
    letter-spacing: var(--bringer-t-h6-ls);
    line-height: var(--bringer-t-h6-lh);
  }

  .bringer-column-item-content .bringer-icon-wrap {
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .bringer-column-item .bringer-masked-content {
    max-width: calc(100% - var(--stg-gap));
  }

  /* Posts */
  .bringer-hero-info-line .bringer-meta {
    display: flex;
    flex-direction: column;
  }

  .bringer-next-post.bringer-icon-link .bringer-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--bringer-default-br);
  }

  .bringer-next-post .bringer-icon {
    width: 20px;
    height: 20px;
  }

  .bringer-bento-grid>div>ul.bringer-meta-list .bringer-meta {
    margin-bottom: -2px;
  }

  /* === Footer === */
  .bringer-footer-widgets div[class*='stg-tp-col']:has(.bringer-info-widget) {
    padding: 0;
  }

  .bringer-menu-widget {
    font-size: 12px;
  }
}


@media (min-width:992px) {
  .col-lg {
    flex: 1 0 0%
  }

  .row-cols-lg-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-lg-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-lg-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-lg-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .row-cols-lg-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-lg-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-lg-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-lg-0 {
    margin-left: 0
  }

  .offset-lg-1 {
    margin-left: 8.33333333%
  }

  .offset-lg-2 {
    margin-left: 16.66666667%
  }

  .offset-lg-3 {
    margin-left: 25%
  }

  .offset-lg-4 {
    margin-left: 33.33333333%
  }

  .offset-lg-5 {
    margin-left: 41.66666667%
  }

  .offset-lg-6 {
    margin-left: 50%
  }

  .offset-lg-7 {
    margin-left: 58.33333333%
  }

  .offset-lg-8 {
    margin-left: 66.66666667%
  }

  .offset-lg-9 {
    margin-left: 75%
  }

  .offset-lg-10 {
    margin-left: 83.33333333%
  }

  .offset-lg-11 {
    margin-left: 91.66666667%
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem
  }
}


@media (min-width:576px) {
  .col-sm {
    flex: 1 0 0%
  }

  .row-cols-sm-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-sm-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-sm-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-sm-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .row-cols-sm-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-sm-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-sm-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-sm-0 {
    margin-left: 0
  }

  .offset-sm-1 {
    margin-left: 8.33333333%
  }

  .offset-sm-2 {
    margin-left: 16.66666667%
  }

  .offset-sm-3 {
    margin-left: 25%
  }

  .offset-sm-4 {
    margin-left: 33.33333333%
  }

  .offset-sm-5 {
    margin-left: 41.66666667%
  }

  .offset-sm-6 {
    margin-left: 50%
  }

  .offset-sm-7 {
    margin-left: 58.33333333%
  }

  .offset-sm-8 {
    margin-left: 66.66666667%
  }

  .offset-sm-9 {
    margin-left: 75%
  }

  .offset-sm-10 {
    margin-left: 83.33333333%
  }

  .offset-sm-11 {
    margin-left: 91.66666667%
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem
  }
}

@media (min-width:768px) {
  .col-md {
    flex: 1 0 0%
  }

  .row-cols-md-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-md-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-md-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .row-cols-md-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-md-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-md-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-md-0 {
    margin-left: 0
  }

  .offset-md-1 {
    margin-left: 8.33333333%
  }

  .offset-md-2 {
    margin-left: 16.66666667%
  }

  .offset-md-3 {
    margin-left: 25%
  }

  .offset-md-4 {
    margin-left: 33.33333333%
  }

  .offset-md-5 {
    margin-left: 41.66666667%
  }

  .offset-md-6 {
    margin-left: 50%
  }

  .offset-md-7 {
    margin-left: 58.33333333%
  }

  .offset-md-8 {
    margin-left: 66.66666667%
  }

  .offset-md-9 {
    margin-left: 75%
  }

  .offset-md-10 {
    margin-left: 83.33333333%
  }

  .offset-md-11 {
    margin-left: 91.66666667%
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem
  }
}

@media (min-width:1200px) {
  .col-xl {
    flex: 1 0 0%
  }

  .row-cols-xl-auto>* {
    flex: 0 0 auto;
    width: auto
  }

  .row-cols-xl-1>* {
    flex: 0 0 auto;
    width: 100%
  }

  .row-cols-xl-2>* {
    flex: 0 0 auto;
    width: 50%
  }

  .row-cols-xl-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .row-cols-xl-4>* {
    flex: 0 0 auto;
    width: 25%
  }

  .row-cols-xl-5>* {
    flex: 0 0 auto;
    width: 20%
  }

  .row-cols-xl-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%
  }

  .offset-xl-0 {
    margin-left: 0
  }

  .offset-xl-1 {
    margin-left: 8.33333333%
  }

  .offset-xl-2 {
    margin-left: 16.66666667%
  }

  .offset-xl-3 {
    margin-left: 25%
  }

  .offset-xl-4 {
    margin-left: 33.33333333%
  }

  .offset-xl-5 {
    margin-left: 41.66666667%
  }

  .offset-xl-6 {
    margin-left: 50%
  }

  .offset-xl-7 {
    margin-left: 58.33333333%
  }

  .offset-xl-8 {
    margin-left: 66.66666667%
  }

  .offset-xl-9 {
    margin-left: 75%
  }

  .offset-xl-10 {
    margin-left: 83.33333333%
  }

  .offset-xl-11 {
    margin-left: 91.66666667%
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem
  }
}

/* Responsive Padding-Bottom Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .pb-md-5px {
    padding-bottom: 5px !important;
  }

  .pb-md-10px {
    padding-bottom: 10px !important;
  }

  .pb-md-15px {
    padding-bottom: 15px !important;
  }

  .pb-md-20px {
    padding-bottom: 20px !important;
  }

  .pb-md-25px {
    padding-bottom: 25px !important;
  }

  .pb-md-30px {
    padding-bottom: 30px !important;
  }

  .pb-md-35px {
    padding-bottom: 35px !important;
  }

  .pb-md-40px {
    padding-bottom: 40px !important;
  }

  .pb-md-45px {
    padding-bottom: 45px !important;
  }

  .pb-md-50px {
    padding-bottom: 50px !important;
  }

  .pb-md-55px {
    padding-bottom: 55px !important;
  }

  .pb-md-60px {
    padding-bottom: 60px !important;
  }

  .pb-md-65px {
    padding-bottom: 65px !important;
  }

  .pb-md-70px {
    padding-bottom: 70px !important;
  }

  .pb-md-75px {
    padding-bottom: 75px !important;
  }

  .pb-md-80px {
    padding-bottom: 80px !important;
  }

  .pb-md-85px {
    padding-bottom: 85px !important;
  }

  .pb-md-90px {
    padding-bottom: 90px !important;
  }

  .pb-md-95px {
    padding-bottom: 95px !important;
  }

  .pb-md-100px {
    padding-bottom: 100px !important;
  }

  .pb-md-105px {
    padding-bottom: 105px !important;
  }

  .pb-md-110px {
    padding-bottom: 110px !important;
  }

  .pb-md-115px {
    padding-bottom: 115px !important;
  }

  .pb-md-120px {
    padding-bottom: 120px !important;
  }

  .pb-md-125px {
    padding-bottom: 125px !important;
  }

  .pb-md-130px {
    padding-bottom: 130px !important;
  }
}

/* Responsive Padding-Left Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .pl-md-5px {
    padding-left: 5px !important;
  }

  .pl-md-10px {
    padding-left: 10px !important;
  }

  .pl-md-15px {
    padding-left: 15px !important;
  }

  .pl-md-20px {
    padding-left: 20px !important;
  }

  .pl-md-25px {
    padding-left: 25px !important;
  }

  .pl-md-30px {
    padding-left: 30px !important;
  }

  .pl-md-35px {
    padding-left: 35px !important;
  }

  .pl-md-40px {
    padding-left: 40px !important;
  }

  .pl-md-45px {
    padding-left: 45px !important;
  }

  .pl-md-50px {
    padding-left: 50px !important;
  }

  .pl-md-55px {
    padding-left: 55px !important;
  }

  .pl-md-60px {
    padding-left: 60px !important;
  }

  .pl-md-65px {
    padding-left: 65px !important;
  }

  .pl-md-70px {
    padding-left: 70px !important;
  }

  .pl-md-75px {
    padding-left: 75px !important;
  }

  .pl-md-80px {
    padding-left: 80px !important;
  }

  .pl-md-85px {
    padding-left: 85px !important;
  }

  .pl-md-90px {
    padding-left: 90px !important;
  }

  .pl-md-95px {
    padding-left: 95px !important;
  }

  .pl-md-100px {
    padding-left: 100px !important;
  }

  .pl-md-105px {
    padding-left: 105px !important;
  }

  .pl-md-110px {
    padding-left: 110px !important;
  }

  .pl-md-115px {
    padding-left: 115px !important;
  }

  .pl-md-120px {
    padding-left: 120px !important;
  }

  .pl-md-125px {
    padding-left: 125px !important;
  }

  .pl-md-130px {
    padding-left: 130px !important;
  }
}

/* Responsive Padding-Right Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .pr-md-5px {
    padding-right: 5px !important;
  }

  .pr-md-10px {
    padding-right: 10px !important;
  }

  .pr-md-15px {
    padding-right: 15px !important;
  }

  .pr-md-20px {
    padding-right: 20px !important;
  }

  .pr-md-25px {
    padding-right: 25px !important;
  }

  .pr-md-30px {
    padding-right: 30px !important;
  }

  .pr-md-35px {
    padding-right: 35px !important;
  }

  .pr-md-40px {
    padding-right: 40px !important;
  }

  .pr-md-45px {
    padding-right: 45px !important;
  }

  .pr-md-50px {
    padding-right: 50px !important;
  }

  .pr-md-55px {
    padding-right: 55px !important;
  }

  .pr-md-60px {
    padding-right: 60px !important;
  }

  .pr-md-65px {
    padding-right: 65px !important;
  }

  .pr-md-70px {
    padding-right: 70px !important;
  }

  .pr-md-75px {
    padding-right: 75px !important;
  }

  .pr-md-80px {
    padding-right: 80px !important;
  }

  .pr-md-85px {
    padding-right: 85px !important;
  }

  .pr-md-90px {
    padding-right: 90px !important;
  }

  .pr-md-95px {
    padding-right: 95px !important;
  }

  .pr-md-100px {
    padding-right: 100px !important;
  }

  .pr-md-105px {
    padding-right: 105px !important;
  }

  .pr-md-110px {
    padding-right: 110px !important;
  }

  .pr-md-115px {
    padding-right: 115px !important;
  }

  .pr-md-120px {
    padding-right: 120px !important;
  }

  .pr-md-125px {
    padding-right: 125px !important;
  }

  .pr-md-130px {
    padding-right: 130px !important;
  }
}


/* Responsive Margin-Top Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .mt-md-5px {
    margin-top: 5px !important;
  }

  .mt-md-10px {
    margin-top: 10px !important;
  }

  .mt-md-15px {
    margin-top: 15px !important;
  }

  .mt-md-20px {
    margin-top: 20px !important;
  }

  .mt-md-25px {
    margin-top: 25px !important;
  }

  .mt-md-30px {
    margin-top: 30px !important;
  }

  .mt-md-35px {
    margin-top: 35px !important;
  }

  .mt-md-40px {
    margin-top: 40px !important;
  }

  .mt-md-45px {
    margin-top: 45px !important;
  }

  .mt-md-50px {
    margin-top: 50px !important;
  }

  .mt-md-55px {
    margin-top: 55px !important;
  }

  .mt-md-60px {
    margin-top: 60px !important;
  }

  .mt-md-65px {
    margin-top: 65px !important;
  }

  .mt-md-70px {
    margin-top: 70px !important;
  }

  .mt-md-75px {
    margin-top: 75px !important;
  }

  .mt-md-80px {
    margin-top: 80px !important;
  }

  .mt-md-85px {
    margin-top: 85px !important;
  }

  .mt-md-90px {
    margin-top: 90px !important;
  }

  .mt-md-95px {
    margin-top: 95px !important;
  }

  .mt-md-100px {
    margin-top: 100px !important;
  }

  .mt-md-105px {
    margin-top: 105px !important;
  }

  .mt-md-110px {
    margin-top: 110px !important;
  }

  .mt-md-115px {
    margin-top: 115px !important;
  }

  .mt-md-120px {
    margin-top: 120px !important;
  }

  .mt-md-125px {
    margin-top: 125px !important;
  }

  .mt-md-130px {
    margin-top: 130px !important;
  }
}

/* Responsive Margin-Bottom Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .mb-md-5px {
    margin-bottom: 5px !important;
  }

  .mb-md-10px {
    margin-bottom: 10px !important;
  }

  .mb-md-15px {
    margin-bottom: 15px !important;
  }

  .mb-md-20px {
    margin-bottom: 20px !important;
  }

  .mb-md-25px {
    margin-bottom: 25px !important;
  }

  .mb-md-30px {
    margin-bottom: 30px !important;
  }

  .mb-md-35px {
    margin-bottom: 35px !important;
  }

  .mb-md-40px {
    margin-bottom: 40px !important;
  }

  .mb-md-45px {
    margin-bottom: 45px !important;
  }

  .mb-md-50px {
    margin-bottom: 50px !important;
  }

  .mb-md-55px {
    margin-bottom: 55px !important;
  }

  .mb-md-60px {
    margin-bottom: 60px !important;
  }

  .mb-md-65px {
    margin-bottom: 65px !important;
  }

  .mb-md-70px {
    margin-bottom: 70px !important;
  }

  .mb-md-75px {
    margin-bottom: 75px !important;
  }

  .mb-md-80px {
    margin-bottom: 80px !important;
  }

  .mb-md-85px {
    margin-bottom: 85px !important;
  }

  .mb-md-90px {
    margin-bottom: 90px !important;
  }

  .mb-md-95px {
    margin-bottom: 95px !important;
  }

  .mb-md-100px {
    margin-bottom: 100px !important;
  }

  .mb-md-105px {
    margin-bottom: 105px !important;
  }

  .mb-md-110px {
    margin-bottom: 110px !important;
  }

  .mb-md-115px {
    margin-bottom: 115px !important;
  }

  .mb-md-120px {
    margin-bottom: 120px !important;
  }

  .mb-md-125px {
    margin-bottom: 125px !important;
  }

  .mb-md-130px {
    margin-bottom: 130px !important;
  }
}

/* Responsive Margin-Left Classes (Mobile only) */
@media (max-width: 767px) {
  .ml-md-5px {
    margin-left: 5px !important;
  }

  .ml-md-10px {
    margin-left: 10px !important;
  }

  .ml-md-15px {
    margin-left: 15px !important;
  }

  .ml-md-20px {
    margin-left: 20px !important;
  }

  .ml-md-25px {
    margin-left: 25px !important;
  }

  .ml-md-30px {
    margin-left: 30px !important;
  }

  .ml-md-35px {
    margin-left: 35px !important;
  }

  .ml-md-40px {
    margin-left: 40px !important;
  }

  .ml-md-45px {
    margin-left: 45px !important;
  }

  .ml-md-50px {
    margin-left: 50px !important;
  }

  .ml-md-55px {
    margin-left: 55px !important;
  }

  .ml-md-60px {
    margin-left: 60px !important;
  }

  .ml-md-65px {
    margin-left: 65px !important;
  }

  .ml-md-70px {
    margin-left: 70px !important;
  }

  .ml-md-75px {
    margin-left: 75px !important;
  }

  .ml-md-80px {
    margin-left: 80px !important;
  }

  .ml-md-85px {
    margin-left: 85px !important;
  }

  .ml-md-90px {
    margin-left: 90px !important;
  }

  .ml-md-95px {
    margin-left: 95px !important;
  }

  .ml-md-100px {
    margin-left: 100px !important;
  }

  .ml-md-105px {
    margin-left: 105px !important;
  }

  .ml-md-110px {
    margin-left: 110px !important;
  }

  .ml-md-115px {
    margin-left: 115px !important;
  }

  .ml-md-120px {
    margin-left: 120px !important;
  }

  .ml-md-125px {
    margin-left: 125px !important;
  }

  .ml-md-130px {
    margin-left: 130px !important;
  }
}

/* Responsive Margin-Right Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .mr-md-5px {
    margin-right: 5px !important;
  }

  .mr-md-10px {
    margin-right: 10px !important;
  }

  .mr-md-15px {
    margin-right: 15px !important;
  }

  .mr-md-20px {
    margin-right: 20px !important;
  }

  .mr-md-25px {
    margin-right: 25px !important;
  }

  .mr-md-30px {
    margin-right: 30px !important;
  }

  .mr-md-35px {
    margin-right: 35px !important;
  }

  .mr-md-40px {
    margin-right: 40px !important;
  }

  .mr-md-45px {
    margin-right: 45px !important;
  }

  .mr-md-50px {
    margin-right: 50px !important;
  }

  .mr-md-55px {
    margin-right: 55px !important;
  }

  .mr-md-60px {
    margin-right: 60px !important;
  }

  .mr-md-65px {
    margin-right: 65px !important;
  }

  .mr-md-70px {
    margin-right: 70px !important;
  }

  .mr-md-75px {
    margin-right: 75px !important;
  }

  .mr-md-80px {
    margin-right: 80px !important;
  }

  .mr-md-85px {
    margin-right: 85px !important;
  }

  .mr-md-90px {
    margin-right: 90px !important;
  }

  .mr-md-95px {
    margin-right: 95px !important;
  }

  .mr-md-100px {
    margin-right: 100px !important;
  }

  .mr-md-105px {
    margin-right: 105px !important;
  }

  .mr-md-110px {
    margin-right: 110px !important;
  }

  .mr-md-115px {
    margin-right: 115px !important;
  }

  .mr-md-120px {
    margin-right: 120px !important;
  }

  .mr-md-125px {
    margin-right: 125px !important;
  }

  .mr-md-130px {
    margin-right: 130px !important;
  }
}

/* Responsive Line Height Classes (Mobile only: max-width 767px) */
@media (max-width: 767px) {
  .lh-md-20px {
    line-height: 20px !important;
  }

  .lh-md-24px {
    line-height: 24px !important;
  }

  .lh-md-28px {
    line-height: 28px !important;
  }

  .lh-md-32px {
    line-height: 32px !important;
  }

  .lh-md-36px {
    line-height: 36px !important;
  }

  .lh-md-40px {
    line-height: 40px !important;
  }

  .lh-md-44px {
    line-height: 44px !important;
  }

  .lh-md-48px {
    line-height: 48px !important;
  }

  .lh-md-52px {
    line-height: 52px !important;
  }

  .lh-md-56px {
    line-height: 56px !important;
  }

  .lh-md-60px {
    line-height: 60px !important;
  }

  .bringer-hero-info-line {
    display: none;
  }

  .f-md-column {
    flex-direction: column !important;
  }

  .justify-center-md {
    justify-content: center !important;
  }

  .bringer-footer-line .copyright-img {
    margin: 0px;
  }
}