section {
  margin: 28% 0 20%;
}

a,
a:hover {
  color: #5C5C5C;
}

.breadcrumb {
  margin-bottom: 20px;
  padding-bottom: 0;
}

.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.col-12 {
  padding: 0;
}

.col-lg-5 {
  margin-top: 40px;
}

section h2 {
  color: #328E6E;
  display: inline-block;
  margin-bottom: 0;
  font-weight: bold;
}

.product .big_img {
  width: 100%;
}

.film1 {
  width: 100%;
  height: 250px;
}

.product .small_img {
  display: flex;
  margin-top: 20px;
}

.product .small_img img {
  width: 30%;
}

.product .small_img img+img {
  margin-left: 20px;
}

.col-lg-5 div {
  display: flex;
  font-size: 19px;
}

.col-lg-5 div+div {
  margin-top: 3%;
}

.product p {
  display: flex;
  align-items: center;
  font-size: 19px;
}

.button_box .btn {
  border: 1px solid #B0DB9C;
  color: #74B977;
}

.button_box .form-control {
  width: 100px;
  margin: 0 10px;
  border: 1px solid #B0DB9C;
  color: #74B977;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.btn_select:hover {
  background: #40A578;
  color: #fff;
}

.btn_select.selected {
  background-color: #40A578;
  color: #fff;
  border-color: #40A578;
}

p.discount_price {
  font-size: 32px;
  font-weight: bold;
  color: #f24;
}

.cartBtn {
  width: 150px;
  height: 45px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: white;
  font-weight: 500;
  position: relative;
  background: #328E6E;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.cartBtn .cart {
  z-index: 2;
}

.cartBtn:active {
  transform: scale(0.96);
}

.item {
  position: absolute;
  width: 12px;
  border-radius: 3px;
  content: "";
  left: 22px;
  bottom: 23.5px;
  opacity: 0;
  z-index: 1;
  fill: #e5fdf5;
}

.cartBtn:hover .item {
  animation: slide-in-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-30px);
    opacity: 1;
  }

  100% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
}

.cartBtn:hover .cartBtn .cart {
  animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.button1 {
  line-height: 1;
  height: 45px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background-color: #F1C40F;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color .3s;
  margin-left: 3%;
  font-size: 19px;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #F1C40F;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button1:hover {
  background-color: #F1C40F;
  color: #fff;
}

.button:hover .button__icon-wrapper {
  color: #F1C40F;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button1:hover .button__icon-svg:first-child {
  transition: transform .3s ease-in-out;
  transform: translate(150%, -150%);
}

.button1:hover .button__icon-svg--copy {
  transition: transform .3s ease-in-out .1s;
  transform: translate(0);
}

section.other_product {
  margin: 5% 0 0 0;
  background: #f5f5f5;
  padding: 8% 30px;
}

.other_product .container {
  padding: 0;
}

.title {
  margin-bottom: 8%;
  font-weight: bold;
}

article {
  background: #fff;
  border: 1px solid #e5e7eb;
}

article:hover {
  border-color: #F1C40F;
}

.other_product .text {
  padding: 4%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

article h3 {
  transition: color 0.3s;
  font-size: 16.5px;
  margin-bottom: 3%;
}

article:hover h3 {
  color: #E9A319;
}

.text div {
  display: flex;
  font-size: 15.5px;
}

.text div:nth-child(3) {
  margin: 1% 0;
}

article p {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #f24;
  font-size: 15.5px;
}

article small {
  font-size: 14px;
}

.slick-prev,
.slick-next {
  z-index: 2;
}

.slick-prev:before,
.slick-next:before {
  color: #F1C40F;
  opacity: 1;
  font-size: 40px;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -5px;
}

.slick-dots {
  display: none;
}

@media(min-width: 700px) and (max-width: 1200px) {
  section {
    margin: 17% 0 10%;
  }

  .product {
    flex-direction: row;
  }

  .col-lg-5 {
    margin-top: 0;
  }

  section h2 {
    font-size: 26px;
  }

  .col-12 {
    padding: 0 15px;
  }

  .product .big_img {
    width: 100%;
  }

  .button_box .form-control {
    width: 80px;
  }

  .product .small_img img+img {
    margin-left: 15px;
  }

  section.other_product {
    padding: 3% 60px;
    min-height: auto;
  }

  .title {
    margin-bottom: 3%;
  }

  .slick-prev {
    left: -40px;
  }

  .slick-next {
    right: -20px;
  }
}

@media(min-width: 1200px) {
  section {
    margin: 7% 0 3%;
  }

  .col-12 {
    padding: 0 15px;
  }

  .product {
    flex-direction: row;
  }

  .col-lg-5 {
    margin-top: 0;
  }

  .film1 {
    width: 525px;
    height: 400px;
  }

  .product .small_img img+img {
    margin-left: 26.5px;
  }

  .btn_select {
    border: 1px solid #ccc;
    padding: 5px 10px;
    background-color: #fff;
    cursor: pointer;
  }

  section.other_product {
    padding: 2% 0;
  }

  .title {
    margin-bottom: 3%;
  }

  .slick-prev {
    left: -35px;
  }

  .slick-next {
    right: -15px;
  }
}