.container-feelback {
  width: 1080px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}
.row-feelback {
  width: 100%;
  display: flex;
  transform: skewX(-10deg);
  position: relative;
}
.row-feelback .col {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  padding-top: 50%;
  width: 25%;
  max-width: 25%;
  max-height: 600px;
  background: center center no-repeat;
  background-size: cover;
  flex: 1;
  transition: all 0.3s ease-in-out;
  filter: brightness(50%);
}
.row-feelback .col.active {
  filter: brightness(100%);
  flex-basis: 75%;
  max-width: 75%;
  width: 75%;
  left: auto;
  overflow: hidden;
}
.row-feelback .col h3 {
  display: none;
  text-transform: uppercase;
  width: 105%;
  text-align: center;
  color: #081952;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 74%);
  transform: skewX(10deg);
  transition: all 0.5s ease-in-out;
  position: relative;
  left: -2.5%;
}
.row-feelback .col.active > h3 {
  display: block;
}
.row-feelback img {
  display: block;
  margin: 0;
  object-fit: cover;
}

/** Store list **/
.filter-container {
  padding: 20px 0;
}

.btn-filter {
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  text-transform: capitalize;
  min-width: 80px;
  transition: all ease 0.5s;
}

.btn-filter.active {
  border: 1px solid red;
  background-color: red;
  color: #fff;
}

.img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
}

.img-overlay > img, .img-overlay > iframe{
  display: block;
  margin: auto;
}

ul.store-info > li {
	margin: 0;
}

.store-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  row-gap: 5px;
}

.store-item {
  flex: 1;
  padding: 20px;
}
.store-item .store-thumbnail {
  display: flex;
}
.store-item .store-thumbnail a {
  display: inline-block;
  margin: auto;
}
.store-info {
  color: #3e3e3e;
  font-size: 1.2rem;
  list-style-type: none;
}

.store-info li {
	font-size: 11pt;
    text-align: left;
    padding-top: 25px;
    font-weight: 700;
}

.store-info a {
  text-decoration: none;
  color: #3e3e3e;
  display: inline-block;
  width: 50%;
}

.store-preview {
  margin-top: 20px;
}

.store-preview .store-chidan {
  color: #082b70;
  margin-bottom: 10px;
  background: linear-gradient(0deg, rgba(222,190,96,1) 0%, rgba(247,232,172,1) 100%);
  border-radius: 5px;
  text-align: center;
  width: 100%;	
}

.store-info ul {
	background:linear-gradient(0deg, rgba(44,68,133,1) 0%, rgba(53,108,171,1) 100%);
    padding: 0 10px 10px 15px;
    margin-top: 15px;
    border-radius: 5px;
	color: #fff;
}
.slider-container {
  overflow: hidden;
}

.slides {
  width: calc(7/3*100%);
  display: flex;
  transition: transform 0.5s linear;
}

.slide {
  width: 33.3333%;
  flex: 1;
  padding: 0 5px;
  flex-basis: 33.3333%;
}
.slide a.review-img {
  width: 100%;
}
.slide img{
  width: 100%;
}
button.btn-control {
  position: absolute;
  top: 48%;
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 0;
  min-height: 0;
  margin: 0;
  transform:translateY(-50%);
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(0deg, rgba(44,68,133,1) 0%, rgba(53,108,171,1) 100%);
  border: 1px solid #d4aa51;
  color: #fff;
}
button.btn-control.btn-prev {
  left:0;
}
button.btn-control.btn-next {
  right:0;
}
.img-overlay >img{
  animation: fadeIn 0.5s linear;
  transform-origin: center;
}
@keyframes fadeIn {
  from{
    opacity: 0.5;
    transform-origin: center;
    transform: scale(50%);
  }
  to{
    opacity: 1;
    transform-origin: center;
    transform: scale(100%);
  }
}

/* iFrame linh anh  */
@media screen and (max-width:550px) { 
  .bio-container iframe{
    width: 100%;
    height: 222px;
    object-fit: contain;
    object-position: 50% 50%;
  }
}