.bwp-effect-grow .image {
  transition-duration: .3s;
  transition-property: transform;
    width: 100%;
}
.bwp-effect-grow:hover .image{
    transform: none !important; 
}
.bwp-effect-grow .image-parent {
    float: right;
    width: 50% !important;
    overflow: hidden;
    display: inline-flex

}
.bwp-effect-grow:hover .image {
  transform: scale(1)
}
.bwp-effect-shrink .image {
  transition-duration: .3s;
  transition-property: transform
}
.bwp-effect-shrink:hover .image {
  transform: scale(1)
}
@keyframes bwp-effect-pulse {
  25% {
    transform: scale(1.1)
  }
  75% {
    transform: scale(.9)
  }
}
.bwp-effect-pulse:hover .image {
  animation-name: bwp-effect-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite
}
@keyframes bwp-effect-pulse-grow {
  to {
    transform: scale(1.1)
  }
}
.bwp-effect-pulse-grow:hover .image {
  animation-name: bwp-effect-pulse-grow;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate
}
@keyframes bwp-effect-pulse-shrink {
  to {
    transform: scale(.9)
  }
}
.bwp-effect-pulse-shrink:hover .image {
  animation-name: bwp-effect-pulse-shrink;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate
}
@keyframes bwp-effect-push {
  50% {
    transform: scale(.8)
  }
  100% {
    transform: scale(1)
  }
}
.bwp-effect-push:hover .image {
  animation-name: bwp-effect-push;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1
}
@keyframes bwp-effect-pop {
  50% {
    transform: scale(1.2)
  }
}
.bwp-effect-pop:hover .image {
  animation-name: bwp-effect-pop;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1
}
.bwp-effect-bounce-in .image {
  transition-duration: .5s
}
.bwp-effect-bounce-in:hover .image {
  transform: scale(1);
  transition-timing-function: cubic-bezier(0.47,2.02,0.31,-0.36)
}
.bwp-effect-bounce-out .image {
  transition-duration: .5s
}
.bwp-effect-bounce-out:hover .image {
  transform: scale(.8);
  transition-timing-function: cubic-bezier(0.47,2.02,0.31,-0.36)
}
.bwp-effect-rotate .image {
  transition-duration: .3s;
  transition-property: transform
}
.bwp-effect-rotate:hover .image {
  transform: rotate(4deg)
}
.bwp-effect-grow-rotate .image {
  transition-duration: .3s;
  transition-property: transform
}
.bwp-effect-grow-rotate:hover .image {
  transform: scale(1.1) rotate(4deg)
}
.bwp-effect-float .image {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out
}
.bwp-effect-float:hover .image {
  transform: translateY(-8px)
}
.bwp-effect-sink .image {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out
}
.bwp-effect-sink:hover .image {
  transform: translateY(8px)
}
@keyframes bwp-effect-bob {
  0% {
    transform: translateY(-8px)
  }
  50% {
    transform: translateY(-4px)
  }
  100% {
    transform: translateY(-8px)
  }
}
@keyframes bwp-effect-bob-float {
  100% {
    transform: translateY(-8px)
  }
}
.bwp-effect-bob:hover .image {
  animation-name: bwp-effect-bob-float,bwp-effect-bob;
  animation-duration: .3s,1.5s;
  animation-delay: 0s,.3s;
  animation-timing-function: ease-out,ease-in-out;
  animation-iteration-count: 1,infinite;
  animation-fill-mode: forwards;
  animation-direction: normal,alternate
}
@keyframes bwp-effect-hang {
  0% {
    transform: translateY(8px)
  }
  50% {
    transform: translateY(4px)
  }
  100% {
    transform: translateY(8px)
  }
}
@keyframes bwp-effect-hang-sink {
  100% {
    transform: translateY(8px)
  }
}
.bwp-effect-hang:hover .image {
  animation-name: bwp-effect-hang-sink,bwp-effect-hang;
  animation-duration: .3s,1.5s;
  animation-delay: 0s,.3s;
  animation-timing-function: ease-out,ease-in-out;
  animation-iteration-count: 1,infinite;
  animation-fill-mode: forwards;
  animation-direction: normal,alternate
}
.bwp-effect-skew .image {
  transition-duration: .3s;
  transition-property: transform
}
.bwp-effect-skew:hover .image {
  transform: skew(-10deg)
}
.bwp-effect-skew-forward .image {
  transition-duration: .3s;
  transition-property: transform;
  transform-origin: 0 100%
}
.bwp-effect-skew-forward:hover .image {
  transform: skew(-10deg)
}
.bwp-effect-skew-backward .image {
  transition-duration: .3s;
  transition-property: transform;
  transform-origin: 0 100%
}
.bwp-effect-skew-backward:hover .image {
  transform: skew(10deg)
}
@keyframes bwp-effect-wobble-vertical {
  16.65% {
    transform: translateY(8px)
  }
  33.3% {
    transform: translateY(-6px)
  }
  49.95% {
    transform: translateY(4px)
  }
  66.6% {
    transform: translateY(-2px)
  }
  83.25% {
    transform: translateY(1px)
  }
  100% {
    transform: translateY(0)
  }
}
.bwp-effect-wobble-vertical:hover .image {
  animation-name: bwp-effect-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-wobble-horizontal {
  16.65% {
    transform: translateX(8px)
  }
  33.3% {
    transform: translateX(-6px)
  }
  49.95% {
    transform: translateX(4px)
  }
  66.6% {
    transform: translateX(-2px)
  }
  83.25% {
    transform: translateX(1px)
  }
  100% {
    transform: translateX(0)
  }
}
.bwp-effect-wobble-horizontal:hover .image {
  animation-name: bwp-effect-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px,8px)
  }
  33.3% {
    transform: translate(-6px,-6px)
  }
  49.95% {
    transform: translate(4px,4px)
  }
  66.6% {
    transform: translate(-2px,-2px)
  }
  83.25% {
    transform: translate(1px,1px)
  }
  100% {
    transform: translate(0,0)
  }
}
.bwp-effect-wobble-to-bottom-right:hover .image {
  animation-name: bwp-effect-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-wobble-to-top-right {
  16.65% {
    transform: translate(8px,-8px)
  }
  33.3% {
    transform: translate(-6px,6px)
  }
  49.95% {
    transform: translate(4px,-4px)
  }
  66.6% {
    transform: translate(-2px,2px)
  }
  83.25% {
    transform: translate(1px,-1px)
  }
  100% {
    transform: translate(0,0)
  }
}
.bwp-effect-wobble-to-top-right:hover .image {
  animation-name: bwp-effect-wobble-to-top-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-wobble-top {
  16.65% {
    transform: skew(-12deg)
  }
  33.3% {
    transform: skew(10deg)
  }
  49.95% {
    transform: skew(-6deg)
  }
  66.6% {
    transform: skew(4deg)
  }
  83.25% {
    transform: skew(-2deg)
  }
  100% {
    transform: skew(0)
  }
}
.bwp-effect-wobble-top .image {
  transform-origin: 0 100%
}
.bwp-effect-wobble-top:hover .image {
  animation-name: bwp-effect-wobble-top;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-wobble-bottom {
  16.65% {
    transform: skew(-12deg)
  }
  33.3% {
    transform: skew(10deg)
  }
  49.95% {
    transform: skew(-6deg)
  }
  66.6% {
    transform: skew(4deg)
  }
  83.25% {
    transform: skew(-2deg)
  }
  100% {
    transform: skew(0)
  }
}
.bwp-effect-wobble-bottom .image {
  transform-origin: 100% 0
}
.bwp-effect-wobble-bottom:hover .image {
  animation-name: bwp-effect-wobble-bottom;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-wobble-skew {
  16.65% {
    transform: skew(-12deg)
  }
  33.3% {
    transform: skew(10deg)
  }
  49.95% {
    transform: skew(-6deg)
  }
  66.6% {
    transform: skew(4deg)
  }
  83.25% {
    transform: skew(-2deg)
  }
  100% {
    transform: skew(0)
  }
}
.bwp-effect-wobble-skew:hover .image {
  animation-name: bwp-effect-wobble-skew;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}
@keyframes bwp-effect-buzz {
  50% {
    transform: translateX(3px) rotate(2deg)
  }
  100% {
    transform: translateX(-3px) rotate(-2deg)
  }
}
.bwp-effect-buzz:hover .image {
  animation-name: bwp-effect-buzz;
  animation-duration: .15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite
}
@keyframes bwp-effect-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg)
  }
  20% {
    transform: translateX(-3px) rotate(-2deg)
  }
  30% {
    transform: translateX(3px) rotate(2deg)
  }
  40% {
    transform: translateX(-3px) rotate(-2deg)
  }
  50% {
    transform: translateX(2px) rotate(1deg)
  }
  60% {
    transform: translateX(-2px) rotate(-1deg)
  }
  70% {
    transform: translateX(2px) rotate(1deg)
  }
  80% {
    transform: translateX(-2px) rotate(-1deg)
  }
  90% {
    transform: translateX(1px) rotate(0)
  }
  100% {
    transform: translateX(-1px) rotate(0)
  }
}
.bwp-effect-buzz-out:hover .image {
  animation-name: bwp-effect-buzz-out;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1
}
.bwp-button a {
  display: inline-block!important;
  position: relative;
  z-index: 1;
  transition: all .2s ease
}
.wpbingo-section__empty {
  display: flex;
  justify-content: center;
  padding: 30px 0
}
.wpbingo-section__empty .rte {
  padding: 15px 30px;
  border: 2px dashed #e7e7e7
}
.featured-banner {
  position: relative;
  overflow: hidden
}
.featured-banner a {
  display: block;
  overflow: hidden
}
.featured-banner img {
  display: inline-block;
  max-width: 100%;
  transition: all .5s ease-in-out;
    width: 100%;
}
.effect-one:hover img {
  transform: scale(1)
}
.effect-two img {
  transform: scale(1.1)
}
.effect-two:hover img {
  transform: scale(1)
}
.effect-three {
  overflow: hidden;
  position: relative
}
.effect-three::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg)
}
@keyframes effectShine {
	100% {
		left: 125%;
	}
}
.effect-three:hover::before {
  animation: effectShine .75s
}
.effect-four::after,
.effect-four::before {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  transition: all .5s ease
}
.effect-four::before {
  top: 5%;
  left: 0;
  right: 0;
  width: 0;
  height: 90%;
  margin: 0 auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff
}
.effect-four::after {
  left: 5%;
  top: 0;
  bottom: 0;
  width: 90%;
  height: 0;
  margin: auto;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff
}
.effect-four:hover::before {
  width: 90%;
  max-width: 90%
}
.effect-four:hover::after {
  height: 90%;
  max-height: 90%
}
img {
  max-width: 100%;
  height: auto
}
a:focus,
a:hover {
  outline: 0;
  color: var(--color-primary);
  text-decoration: none
}
.hidden,
.visually-hidden {
  display: none
}
button:focus {
  outline: unset;
  box-shadow: unset
}
button:focus-visible,
textarea:focus-visible {
  outline: unset
}
.bwp-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px
}
.container.container-full-image {
  max-width: 100%;
  padding: 0
}
#okki-section-blog-sidebar:empty {
  display: none
}
.fade-in {
  transition: transform .8s cubic-bezier(.215, .61, .355, 1),opacity .8s cubic-bezier(.215, .61, .355, 1);
  transition-delay: 0.5s
}
.slick-slider {
  position: relative;
  display: block;
  user-select: none;
  touch-action: pan-y
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translate3d(0,0,0)
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 0 15px
}
.slick-slide img {
  display: block
}
.slick-slide.slick-loading img {
  display: none
}
.slick-slide.dragging img {
  pointer-events: none
}
.slick-slide:focus {
  outline: 0
}
.bwp_slider-carousel {
  position: relative
}
.bwp_slider-carousel:hover .slick-arrow {
  opacity: 1;
  visibility: visible
}
.menu-dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .15s ease
}
.menu-dropdown__content:not(.menu-dropdown__content--megamenu) {
  width: 220px;
  padding: 0;
  background-color: var(--menu-dropdown-bg);
  box-shadow: 0 6px 15px rgba(0,0,0,.12);
  margin-top: 15px
}
.menu-dropdown__content .menu-dropdown__content {
  top: 0;
  left: 100%
}
.menu-dropdown__content a {
  display: block;
  padding: 5px 22px;
  color: var(--text-color);
  font-size: 16px;
  text-decoration: none;
  transition: color .35s ease
}
.menu-dropdown__content a:focus,
.menu-dropdown__content a:hover {
  color: var(--menu-dropdown-hover-color)
}
.menu-dropdown__content--megamenu {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,.12)
}
.menu-dropdown__content--megamenu .menu-row {
  max-width: 1440px;
  padding: 40px 15px 45px;
  margin: auto;
  max-height: 80vh;
  overflow: auto
}
.menu-dropdown__content--megamenu .menu-row::-webkit-scrollbar-track {
  background-color: #ececec
}
.menu-dropdown__content--megamenu .menu-row::-webkit-scrollbar {
  width: 2px;
  background-color: #ececec
}
.menu-dropdown__content--megamenu .menu-row::-webkit-scrollbar-thumb {
  background-color: #000
}
.menu-dropdown__content--megamenu .menu-row .button_all {
  text-align: center;
  width: 100%;
  flex: 0 0 100%
}
.menu-dropdown__content--megamenu .menu-row .button_all a {
  display: inline-block;
  line-height: 45px;
  padding: 0 20px;
  background: var(--color-primary);
  color: #fff
}
.menu-dropdown__content--megamenu .menu-row .button_all a:hover {
  background: var(--color-primary);
  -webkit-animation-name: text-transform;
  animation-name: text-transform;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1
}
.menu-dropdown__content--megamenu .menu-dropdown__content {
  top: auto;
  left: auto
}
.menu-dropdown__content--megamenu a {
  padding: 5px 0;
  position: relative;
  display: inline-block
}
.menu-dropdown__content--megamenu a span {
  position: absolute;
  line-height: 18px;
  padding: 0 10px;
  font-size: 10px;
  top: -7px;
  font-weight: var(--body-font-weight-medium)
}
.menu-dropdown__content--megamenu a span.hot {
  background: rgba(241,30,30,.15);
  color: #f11e1e
}
.menu-dropdown__content--megamenu a span.new {
  background: var(--theme-color-15);
  color: var(--color-primary)
}
.block-sidebar {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 1px
}
.block-sidebar__title {
  color: #000;
  background: 0 0;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  text-transform: uppercase
}
.block-sidebar__title:after {
  display: inline-block;
  font-family: qico;
  font-size: 16px;
  line-height: 16px;
  height: 16px;
  position: relative;
  top: 0;
  content: "\e699";
  transition: all .3s ease;
  transform-origin: center;
  font-style: normal
}
.block-sidebar__title label {
  margin: 0;
  position: relative;
  cursor: pointer
}
.block-sidebar__title .count {
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  margin-left: 5px;
  position: relative;
  top: -3px
}
.block-sidebar__title .count.hide {
  display: none
}
.block-sidebar__title.active:after {
  transform: rotate(-180deg)
}
.modal-content {
  border-radius: 0
}

@media (min-width:768px) {
  .hidden-desktop {
    display: none
  }
}
@media (min-width:768px) and (max-width:991px) {
  .hidden-sm {
    display: none!important
  }
}
@media (min-width:992px) and (max-width:1199px) {
  .hidden-md {
    display: none!important
  }
  .related-artibles__card-image {
    width: 100%;
    margin-bottom: 10px
  }
  .related-artibles__card-content {
    width: 100%;
    padding: 0
  }
}
@media (min-width:1200px) {
  .hidden-lg {
    display: none!important
  }
}

@media (max-width:991px) {
  .hide_ipad {
    display: none!important
  }
}
@media (max-width:767px) {
  .hidden-xs {
    display: none!important
  }
  .hidden-mobile {
    display: none
  }
  .hide_mobile {
    display: none!important
  }
}
.bwp-widget-banner .featured-banner {
  position: relative;
 
}
.bwp-widget-banner .banner-wrapper-infor {
  width: 100%;
  display: flex;
}
.bwp-widget-banner .banner-wrapper-infor.position-absolute {
  position: absolute;
}
.bwp-widget-banner .bwp-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
  overflow: hidden;
}
.bwp-widget-banner .bwp-button:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.bwp-widget-banner .bwp-button:hover:before {
  width: 100%;
}
.bwp-widget-banner .row--banners {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .col-banner.banner-1 .banner-wrapper-infor {
    
   
    position: absolute;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .col-banner.banner-1 {
    
    margin-bottom: 30px;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .col-banner.banner-1 .banner-wrapper-infor {
   height: 100%;
   background: #f2f2f2;
   padding: 25px;
   max-width: 50%;
}



@media screen and (max-width:1600px){
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner {
    margin: 30px 0 !important;
}#okki-section-bumbled2_featured_banner_d27d65c7 > h3{
	    margin-bottom: 15px !important;
}#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .title-1 {
    font-size: 21px !important;
	line-height: 28px !important; 
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;font-size: 16.5px;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .title-1 {
    margin: 0;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .col-banner.banner-1 {
    margin-bottom: 10px !important;
}

}

@media screen and (max-width:992px){
#okki-section-bumbled2_featured_banner_d27d65c7 > h3{
	    margin-bottom: 10px !important;
}#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .title-1 {
    font-size: 20px !important; 
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {
    overflow: hidden;font-size: 16px;display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {
    color: black !important;
}#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .title-1 {
    margin: 0 !important;
}
}

@media screen and (max-width:768px){
#okki-section-bumbled2_featured_banner_d27d65c7 > h3{
}#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .title-1 {
    font-size: 18px !important;
}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {
    overflow: hidden;font-size: 14px;display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}
#okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .col-banner.banner-1 {
    padding: 0 !important;
}
}

@media screen and (max-width:1367px){
  #okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {
   font-size: 13.5px;
  }
    #okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .title-1 {
    font-size: 19px !important;
    line-height: 24px !important;
  }
}

@media(max-width:1200px){
    #okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient:
vertical;
    overflow:
hidden;}
}




@media screen and (max-width: 1367px) {
  #okki-section-bumbled2_featured_banner_d27d65c7 > h3 {font-size: 40px !important;}
}
@media screen and (max-width: 1281px) {
  #okki-section-bumbled2_featured_banner_d27d65c7 > h3 {font-size: 36px !important;}
}
@media screen and (max-width: 1171px) {
  #okki-section-bumbled2_featured_banner_d27d65c7 > h3 {font-size: 30px !important;}
}
@media screen and (max-width: 992px) {
  #okki-section-bumbled2_featured_banner_d27d65c7 > h3 {font-size: 26px !important;}
}
@media(max-width:991px){
  #okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1{margin: 45px 0 !important;}
}
@media screen and (max-width: 768px) {
  #okki-section-bumbled2_featured_banner_d27d65c7 > h3 {font-size: 24px !important;}
}
@media (max-width: 767px) {
  #okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .sub-title-1 {margin: 15px 0 !important;}

}
@media screen and (max-width: 480px) {
  #okki-section-bumbled2_featured_banner_d27d65c7 > h3 {font-size: 22px !important;}
}

@media screen and (max-width: 455px) {
  #okki-section-bumbled2_featured_banner_d27d65c7.bwp-widget-banner .col-banner.banner-1 .banner-wrapper-infor {max-width: 100%;position: static;transform: none !important;}
  .bwp-effect-grow .image-parent {float: none;width: 100% !important;}
}

