.wrap_background {
  padding: 30px 0px 20px 0px;
}
.wrap-content {
  max-width: 1320px;
  padding: 0px 10px;
  margin: auto;
}
.wrap-content1 {
  max-width: 1100px;
}
.wrap-home {
  max-width: 100%;
  padding: 0px;
}
/*====*/
.title-main {
  margin-bottom: 1.5rem;
  text-align: center;
}
.title-main span {
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 800;
  font-size: 23px;
}
.time-main {
  margin-bottom: 0.75rem;
  color: #999999;
}
.time-main i {
  vertical-align: top;
  margin: 3px 7px 0px 0px;
}
.time-main span {
  vertical-align: top;
  display: inline-block;
}
.fixmenu {
  animation: slide-down 0.5s;
}
/*====*/
.nav-slick .slick-prev,
.nav-slick .slick-next {
  width: 35px;
  height: 35px;
  background: var(--color-r);
  border-radius: 999px;
}
.nav-slick .slick-prev:before,
.nav-slick .slick-next:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f053";
  opacity: 1;
  font-size: 13px;
}
.nav-slick .slick-prev {
  left: -45px;
}
.nav-slick .slick-next {
  right: -45px;
  -webkit-transform: translate(0, -50%) rotate(-180deg);
  -ms-transform: translate(0, -50%) rotate(-180deg);
  transform: translate(0, -50%) rotate(-180deg);
}
.nav-cs {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-r);
  font-size: 22px;
  margin: 0px 4px;
  cursor: pointer;
}

.arrows div {
  position: absolute;
  left: 0;
  top: 40%;
  cursor: pointer;
}
.arrows div img {
  width: 2rem;
}
.arrows .arrow-right {
  left: auto;
  right: 0;
}
.arrows .slick-disabled {
  display: none !important;
}
/*===*/
.dote.slick-slider {
  margin-bottom: 0px;
  padding-bottom: 60px !important;
}
.dote .slick-dots {
  bottom: 0px;
  text-align: center;
}
.dote .slick-dots li {
  margin: 0 3px;
  width: 15px;
  height: 15px;
}
.dote .slick-dots li button {
  width: 15px;
  height: 15px;
  padding: 0;
}
.dote .slick-dots li button:before {
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 12px !important;
}
.dote .slick-dots li.slick-active button:before {
  color: var(--color-r);
}
.dote .slick-dots li button:before {
  color: #1112;
  opacity: 1;
}
/*===*/
.hover-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hover-btn:after {
  content: "";
  position: absolute;
  right: 0px;
  height: 100%;
  width: 0%;
  top: 0px;
  background: #b50a11;
  z-index: -1;
  transition: all 0.5s;
}
.hover-btn:hover:after {
  left: 0px;
  width: 100%;
}
.hover-btn2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hover-btn2:before {
  content: "";
  border-radius: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.04);
  transform: scaleX(0);
  transform-origin: 50%;
  transition: all 0.5s ease-out;
}
.hover-btn2:hover:before {
  transform: scaleX(1);
}
/*===*/
.tit-title {
  margin-bottom: 30px;
  text-align: center;
}
.tit-title h2 {
  text-transform: uppercase;
  color: var(--color-r);
  font-weight: 800;
  font-size: 23px;
}

/* Header */
.header {
  background-color: var(--color-r);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0px;
  color: #fff;
}

/* Menu */
.menu.fixmenu {
  box-shadow: 0em 0.15em 2em rgba(0, 0, 0, 0.15);
}
.menu {
  background: #f8f4ec;
  padding: 5px 0px;
}
.menu__right {
  width: calc(100% - 250px);
}
.menu ul {
  width: 100%;
  padding: 0px;
  margin: auto;
  list-style: none;
}
.menu > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu ul li {
  position: relative;
  z-index: 99;
}
.menu ul li a {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  text-decoration: none !important;
}
.menu ul li a span {
  font-size: 14px;
  color: #333;
  margin: 0px;
  padding: 0;
  text-transform: capitalize;
  display: block;
  font-weight: 700;
}
.menu ul li a.active span,
.menu ul li:hover > a span {
  color: var(--color-r);
}
.menu ul li ul {
  position: absolute;
  min-width: 320px;
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: perspective(600px) rotateX(-90deg);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.menu ul li:hover > ul {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.7s;
}
.menu ul li ul li a {
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.menu ul li ul li:last-child > a {
  border-bottom: 0px;
}
.menu ul li ul li a span {
  font-size: 14px;
  padding: 12px 15px;
}
.menu ul li ul li ul {
  top: 0px;
  left: 100%;
}

/* Search */
.search {
  width: 200px;
  background: #eee;
  display: flex;
  border-radius: 999px;
  margin-left: 40px;
}
.search p {
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: var(--color-r);
  font-size: 16px;
}
.search input {
  width: calc(100% - 40px);
  height: 40px;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 10px;
  font-size: 12px;
}
.search input::-webkit-input-placeholder {
  color: #ccc;
}
.search input:-moz-placeholder {
  color: #ccc;
}
.search input::-moz-placeholder {
  color: #ccc;
}
.search input:-ms-input-placeholder {
  color: #ccc;
}

/* Search RP */
#menu_mobi {
  display: none;
}
.search-res {
  position: relative;
}
.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 42px;
  color: #fff;
  font-size: 17px;
  margin: 0px;
  background-color: var(--color-r);
  border-radius: 50%;
}
.search-res .icon-search.active {
  color: #fff;
  background: var(--color-r);
  border-radius: 100%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-r);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
}
.search-res .search-grid p {
  float: left;
  width: 35px;
  height: 38px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 17px;
  display: block;
  color: var(--color-r);
  line-height: 40px;
  text-align: center;
}
.search-res .search-grid input {
  width: calc(100% - 35px);
  float: right;
  line-height: 38px;
  outline: none;
  border: none;
  color: var(--color-r);
}
.search-res .search-grid input::-webkit-input-placeholder {
  color: #ccc;
}
.search-res .search-grid input:-moz-placeholder {
  color: #ccc;
}
.search-res .search-grid input::-moz-placeholder {
  color: #ccc;
}
.search-res .search-grid input:-ms-input-placeholder {
  color: #ccc;
}

/* Slideshow */
.slideshow {
  position: relative;
}
.slideshow a {
  display: block;
  cursor: pointer;
}
.slideshow a img {
  width: 100%;
}
.slideshow:hover .control-slideshow {
  opacity: 0.3;
}
.slideshow .control-slideshow:hover {
  opacity: 0.8;
}
.control-slideshow {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: calc(50% - 50px / 2);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  cursor: pointer;
  margin: 0px;
  background-color: #000000;
  border-radius: 5px;
}
.control-slideshow i {
  color: #ffffff;
}
.prev-slideshow {
  left: 20px;
  padding-right: 3px;
}
.next-slideshow {
  right: 20px;
  padding-left: 3px;
}
.slideshow .owl-dots {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  text-align: center;
  bottom: 20px;
  margin-top: 0px;
}
.slideshow .owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  margin: 0px 5px;
  width: 7px;
  height: 7px;
}
.slideshow .owl-theme .owl-dots .owl-dot.active span {
  background: var(--color-r);
  width: 20px;
}
.nav .slick-prev,
.nav .slick-next {
  position: absolute;
  top: 48%;
  width: 64px;
  height: 61px;
  border-radius: 999px;
  z-index: 9999;
}
.nav .slick-prev {
  left: 30px;
  background: url(../images/sl1.png) no-repeat;
}
.nav .slick-next {
  right: 30px;
  background: url(../images/sl2.png) no-repeat;
}
.item__slider {
  position: relative;
}
/*.item__slider:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
}*/

.slider__info {
  position: absolute;
  left: 0px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 92;
}
.slider__info h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0px;
  opacity: 0;
  transition: all 1.5s;
  transform: translateX(-350px);
  text-transform: capitalize;
  font-family: var(--font-r3);
  font-weight: 700;
}
.slider__info p {
  opacity: 0;
  transition: all 1.5s;
  transform: translateX(350px);
  margin: 10px 0px;
  color: #fff;
  font-size: 17px;
}
.item__slider.active .slider__info h3,
.item__slider.active .slider__info p {
  opacity: 1;
  transform: translateY(0px);
}
.slider__info a {
  display: inline-block;
  margin-top: 15px;
  color: #000;
  padding: 17px 50px;
  font-size: 17px;
  border-radius: 999px;
  background: var(--color-r);
  opacity: 0;
  transition: all 1.5s;
  position: relative;
  bottom: -100px;
  font-weight: 700;
  text-transform: uppercase;
}
.item__slider.active .slider__info a {
  opacity: 1;
  bottom: 0px;
}
.slider__info a:hover {
  text-decoration: none;
  color: #000;
}

/* Breadcrumb */
.breadCrumbs {
  background-color: #eee;
}
.breadCrumbs .wrap-content {
  padding: 0.75rem 10px;
  max-width: 1200px;
}
.breadCrumbs .wrap-content .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
}
.breadCrumbs .wrap-content .breadcrumb-item a {
  color: #111;
}
.breadCrumbs .wrap-content .breadcrumb-item.active a {
  color: var(--color-r);
}

/* Video */
.video {
  width: calc(100% / 4);
  margin-bottom: 15px;
}
.pic-video a:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 35px;
  top: calc(50% - 50px / 2);
  left: calc(50% - 35px / 2);
  z-index: 1;
  background-repeat: no-repeat;
  background-image: url(../images/play.png);
}
.pic-video img {
  width: 100%;
}
.name-video {
  margin-top: 5px;
}
.name-video a {
  font-size: 14px;
  color: #333;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

/* Album */
.album {
  width: calc(100% / 4);
  margin-bottom: 20px;
}
.pic-album {
  position: relative;
}
.pic-album img {
  width: 100%;
}
.name-album {
  margin-top: 10px;
  text-align: center;
}
.name-album a {
  font-size: 16px;
  color: #111;
  margin-bottom: 0px;
  font-weight: 700;
}

/* Brand */
.wrap-brand {
  margin-bottom: 50px;
  padding: 0px 10px;
}
.wrap-brand .wrap-content {
  max-width: 1200px;
  padding: 0px;
  position: relative;
}
.owl-brand {
  padding: 0px 40px;
}
.brand {
  display: block;
  border: 1px solid #eee;
}
.brand img {
  width: 100%;
}

/* Contact */
.top-contact {
  margin-bottom: 30px;
}
.top-contact .article-contact {
  width: 48%;
}
.form-contact {
  width: 47%;
}
.input-contact {
  position: relative;
  margin-bottom: 15px;
}
.input-contact input,
.input-contact textarea {
  width: 100%;
  padding: 20px 10px;
  outline: none;
  font-size: 14px;
  box-shadow: none !important;
}
.input-contact input {
  text-indent: 10px;
}
.input-contact textarea {
  resize: none;
  height: 120px;
  padding: 10px;
}
.input-contact .custom-file-label::after {
  content: attr(title);
}
.bottom-contact {
  position: relative;
  height: 500px;
}
.bottom-contact iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100% !important;
  height: 100% !important;
}

/* Popup custom */
.modal-custom .modal-footer {
  padding: 0.5rem;
}
.modal-custom .modal-footer .btn {
  font-size: 14px;
}

/* Popup */
#popup .modal-body {
  padding: 0px;
  border-radius: 5px;
  overflow: hidden;
}
#popup .close__popup {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--color-r);
  border-radius: 100%;
  top: -5px;
  right: -5px;
  opacity: 1;
  z-index: 992;
}
#popup .close__popup span {
  color: #fff !important;
  display: block;
  height: 30px;
  line-height: 1;
}

/* Product */
.product {
  width: calc(100% / 4);
  margin-bottom: 20px;
}
.product__inner {
  box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.15),
    1px 1px 5px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 10px;
  height: 100%;
}
.product__thumb {
}
.product__thumb img {
  width: 100%;
}
.product__info {
  margin-top: 1rem;
}
.product__info h3 {
  margin-bottom: 3px;
  line-height: 1.4;
}
.product__info a {
  font-size: 16px;
  color: #333;
  -webkit-line-clamp: 2;
  text-decoration: none !important;
}
.product__priceCart {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}
.product__price {
  display: flex;
  flex-direction: column;
}
.product__priceNew {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-r);
}
.product__priceOld {
  font-size: 13px;
  color: #9aa5b3;
  text-decoration: line-through;
}
.price__per {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  background: var(--color-r);
  font-size: 11px;
  border-radius: 2px;
  width: 45px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}

/*==Product cart==*/
.product__cartAdd {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  background: #141414;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.product__cartAdd:hover:before {
  content: attr(title);
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  padding: 3px 7px;
  background: #666;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
  line-height: initial;
  transform: translate(0, -50%);
}
.product__cartAdd:hover:after {
  content: "";
  display: block;
  position: absolute;
  border: 10px solid transparent;
  border-left-color: #666;
  top: 50%;
  right: calc(100% - 6px);
  transform: translate(0, -50%);
}
.product__cartAdd:hover {
  background-color: var(--color-r);
}

/* News */
.big__News {
  width: 49%;
  position: relative;
}
.small__news {
  width: 49%;
}
.thumb__news {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.thumb__news img {
  width: 100%;
}
.big__News .thumb__news a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.big__News .thumb__news a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 30%
  );
}
.big__News .info__news {
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 20px 15px;
}
.newshome-intro .info__news h3 a {
  font-size: 20px;
  color: #fff;
  -webkit-line-clamp: 2;
  font-weight: 700;
  font-family: var(--font-r);
}
.time-newshome {
  font-size: 13px;
  color: #fff;
  margin-bottom: 0px;
}
.time-newshome span {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  color: #333;
  padding: 1px 10px 2px 10px;
  border-radius: 999px;
}
.time-newshome span {
  background: var(--color-r);
  color: #fff;
}
.big__News:hover h3 a {
  text-decoration: none;
}
.scroll__index {
}
.scroll__index ul {
  padding-left: 0px;
}
.scroll__index li {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 22px !important;
}
.scroll__index li:last-child {
  margin-bottom: 0px;
}
.scroll__index .thumb__news {
  width: 30.5%;
  border-radius: 7px;
  overflow: hidden;
}
.scroll__index .thumb__news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scroll__index .info__news {
  width: 66%;
}
.scroll__index .info__news h3 {
  margin-bottom: 0px;
}
.scroll__index .info__news h3 a {
  font-size: 14px;
  color: #242424;
  font-weight: 700;
  -webkit-line-clamp: 2;
}
.scroll__index .info__news .time-newshome {
  margin: 5px 0px;
  color: var(--color-r2);
  font-size: 14px;
}
.scroll__index .info__news .time-newshome i {
  color: var(--color-r2);
  font-weight: 700;
}
.scroll__index .info__news .desc-newshome {
  margin: 0px;
  font-size: 14px;
  color: #4d4d4d;
  -webkit-line-clamp: 2;
}
.scroll__index h3 a:hover {
  color: var(--color-r);
  text-decoration: none;
}
.btn__news {
  color: var(--color-r);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 5px;
  text-decoration: underline;
}
.scroll__index .info__news h3 a:hover {
  color: var(--color-r2);
}
.view__all {
  display: inline-block;
  border-radius: 99px;
  padding: 8px 30px;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
}
.view__all:hover {
  color: #333;
  text-decoration: none;
}
/*====*/
.video-main {
  position: relative;
  height: 400px;
}
.video-main iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.listvideos {
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  border: 1px solid #ccc;
  color: #000;
  margin-top: 10px;
  cursor: pointer;
}

.footer-article .wrap-content {
  padding: 35px 10px;
}
.footer-news:nth-child(1) {
  width: 30%;
}
.footer-news:nth-child(2) {
  width: 20%;
}
.footer-news:nth-child(3) {
  width: 25%;
}
.footer-news:nth-child(4) {
  width: 20%;
}
.title-footer {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #e2ac36;
}
.footer-ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer-ul li {
  margin-bottom: 10px;
}
.footer-ul li:last-child {
  margin-bottom: 0px;
}
.footer-ul li a {
  color: #fff;
}
.footer-ul li a:hover {
  color: var(--color-r);
  text-decoration: none;
}

/*===*/
.footer-powered {
  color: #fff;
  background-color: var(--color-r);
}
.footer-powered .wrap-content {
  padding: 15px 10px;
}
.copyright {
  margin-bottom: 0px;
}
.copyright a {
  color: #fff !important;
}
.statistic {
  margin-bottom: 0px;
}
#footer-map {
  position: relative;
  height: 500px;
}
#footer-map iframe {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0px !important;
  left: 0px !important;
}

/*===*/
.slogan-newsletter {
  margin-bottom: 0.5rem;
  color: var(--color-r);
}
.newsletter-input {
  position: relative;
}
.newsletter-input input {
  padding: 0px;
  font-size: 14px;
  text-indent: 10px;
  border-radius: 0px;
}
.newsletter-button {
  margin-top: 5px;
}
.newsletter-button input[type="submit"] {
  border: 0px;
  background-color: var(--color-r);
  color: #fff;
  display: inline-block;
  padding: 5px 16px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

/*===*/
.footer-tags {
  background: #eee;
}
.footer-tags .wrap-content {
  padding: 30px 10px;
}
.label-tags {
  font-weight: 600;
  font-size: 15px;
}
.list-tags {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.list-tags li {
  float: left;
  margin: 0px 5px 5px 0px;
}
.list-tags li a {
  color: #fff;
  background-color: var(--color-r);
  padding: 6px 15px 8px 15px;
  border-radius: 3px;
  display: block;
}
.list-tags li a:hover {
  background-color: var(--color-r);
}

/* Responsive */
@media (max-width: 1440px) {
}

@media (max-width: 1248px) {
  .nav-slick .slick-prev {
    left: 10px;
  }
  .nav-slick .slick-next {
    right: 10px;
  }
}
@media (max-width: 1180px) {
}
@media (max-width: 1120px) {
}
@media (max-width: 1070px) {
}
@media (max-width: 1024px) {
  .menu {
    display: none;
  }
  #menu_mobi {
    display: block;
  }
}
@media (max-width: 992px) {
  .nav-slick .slick-prev,
  .nav-slick .slick-next {
    display: none;
  }
  .toolbar {
    display: block;
  }
  .title-page b {
    font-size: 18px;
  }
  .cart-fixed {
    bottom: 120px;
  }
}
@media (max-width: 850px) {
}
@media (max-width: 769px) {
  .top-contact .form-contact,
  .top-contact .article-contact {
    width: 100%;
    margin: 0px;
  }
  .top-contact .article-contact {
    margin-bottom: 30px;
  }
  .copyright {
    font-size: 12px;
  }
  .album {
    width: calc(100% / 2);
    margin-bottom: 10px;
  }
  .video {
    width: calc(100% / 2);
  }
}
@media (max-width: 600px) {
}
@media (max-width: 440px) {
  .top-contact .form-contact .button-contact .file-contact span b {
    max-width: 105px;
  }
}
@media (max-width: 369px) {
  .cart-pro-detail {
    flex-wrap: wrap;
  }
  .cart-pro-detail a {
    width: 100%;
    text-align: center;
    margin: 0px !important;
    font-size: 12px;
  }
  .cart-pro-detail a:first-child {
    margin-bottom: 5px !important;
  }
  .cart-pro-detail a i {
    display: none;
  }
  .album {
    width: calc(100% / 1);
  }
  .video {
    width: calc(100% / 1);
  }
}
