.home-banner {
  width: calc(100%);
  /* width: calc(100% + 16px); */
  /* margin-right: -8px; */
  padding: 0 var(--first-solid-padding);
  margin-top: 5vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.pd-0 {
  padding: auto;
}

.home-banner-box {
  width: 100%;
  height: 105px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--first-radius);
  overflow: hidden;
  border: 4px solid var(--first-background-color);
  box-shadow: var(--first-shadow);
  margin: 8px;
  flex-grow: 1;
  cursor: pointer;
}

.home-banner-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.home-banner-box-bg {
  background: linear-gradient(
    to left,
    #e7e7f3 30.38%,
    rgba(255, 255, 255, 0) 87.5%
  );
  width: 100%;
  height: 100%;
  position: absolute;
}

.home-banner-box-text {
  position: relative;
  padding-right: 16px;
}

.home-banner-box-title {
  margin-top: 15px;
  font-size: var(--sixth-font-size);
}

.home-banner-box-desc {
  font-size: var(--third-font-size);
}

.home-story {
  margin: 0 var(--first-solid-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.home-story-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--third-background-color);
  height: 62%;
  z-index: -1;
  border-radius: var(--first-radius);
  background-image: url(../img/orange-bg.png);
  background-size: 700px 100%;
  background-position: left;
  background-repeat: no-repeat;
}

.home-story-text {
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.3);
  border-radius: var(--first-radius);
  width: calc(100% - 336px - 25%);
  min-width: 400px;
  margin-right: 3%;
  background-color: var(--first-background-color);
  padding: 16px;
}

.home-story-text-title {
  font-size: var(--sixth-font-size);
  color: var(--first-color);
  font-family: "my-font-bold", serif;
}

.home-story-text-border {
  width: 100%;
  max-width: 100px;
  height: 2px;
  background: var(--first-color);
  border-radius: 2px;
}

.home-story-text-desc {
  font-size: var(--third-font-size);
  text-align: justify;
  margin-top: 16px;
}

.home-story-text-btn {
  font-size: var(--forth-font-size);
  font-family: "my-font-demibold", serif;
  color: var(--first-color);
  border: 1px solid var(--first-color);
  padding: 12px;
  border-radius: var(--first-radius);
  margin-right: auto;
  display: block;
  margin-top: 8px;
  cursor: pointer;
}

.home-story-img {
  width: 350px;
  height: 390px;
  padding-left: 5%;
  object-fit: contain;
}

.ad-banner {
  padding: 16px var(--first-solid-padding);
  height: 300px;
  display: flex;
  justify-content: space-between;
}

.ad-banner-item,
.ad-banner-item1,
.ad-banner-item2 {
  width: 49%;
  height: 100%;
  background: #cca4ff;
  position: relative;
  border-radius: var(--first-radius);
  overflow: hidden;
}

.ad-banner-item1 {
  background: linear-gradient(to right, #b6f2ff, #54afc3);
}

.ad-banner-item2 {
  background: linear-gradient(to right, #c0dc40, #cee537);
}

.ad-banner-item-img {
  width: 60%;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: right top;
}

.image {
  top: 0;
  object-position: right bottom;
}

.ad-banner-item-text {
  position: absolute;
  top: 30%;
  right: 12%;
}

.ad-banner-item-desc {
  font-size: var(--forth-font-size);
  border: 1px solid var(--first-background-color);
  display: inline-block;
  background: var(--first-background-color);
  border-radius: var(--first-radius);
  padding: 12px 48px 12px 16px;
  font-family: "dana-fanum-demibold" !important;
}

.ad-banner-item-desc-border {
  width: 65px;
  height: 3px;
  background: var(--first-color);
  border-radius: 2px;
  position: absolute;
  right: 70px;
}

.ad-banner-item-percent {
  font-size: var(--third-font-size);
  border: 1px solid var(--first-color);
  display: inline-block;
  color: var(--first-background-color);
  background: var(--first-color);
  border-radius: var(--third-radius);
  padding: 4px 16px;
  margin-left: -40px;
  transform: translateY(4px);
  color: white !important;
}

.home-products-bg {
  background-image: url(../img/home-products-bg.png);
  background-size: 30vw auto;
  background-repeat: repeat-y;
  background-position: right;
}
.home-products {
  /* margin-top: 24px; */
  background: linear-gradient(
    to right,
    #f0f1f8 76.06%,
    rgba(240, 241, 248, 0) 100%
  );
  padding: 30px var(--first-solid-padding);
  min-height: 50vh;
}

.home-products-menu {
  margin: 30px auto 0;
  text-align: center;
}

.home-products-menu-child {
  display: inline-flex;
  justify-content: space-evenly;
  border-bottom: 2px solid var(--second-color);
}

.home-products-media {
  display: none;
}

.home-products-menu-detail {
  font-size: var(--sixth-font-size);
  font-family: "my-font-demibold", serif;
  margin-left: 40px;
  cursor: pointer;
}

.home-products-menu-detail:last-child {
  margin-left: 0;
}

.home-products-menu-detail.active {
  position: relative;
}

.home-products-menu-detail.active:after {
  content: " ";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 2px;
}

.home-products-items {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-evenly; */
  width: calc(100% + 16px);
  margin-right: -8px;
}

.home-products-items-detail {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 18vw !important;
  background: var(--first-background-color);
  border-radius: var(--first-radius);
  margin: 30px 8px 0 8px;
  border: 2px solid var(--first-background-color);
  position: relative;
  max-width: 20vw;
}

.home-products-items-detail-img {
  display: block;
  margin: 2px auto 0;
  width: 98%;
  height: 150px;
  border-top-left-radius: var(--first-radius);
  border-top-right-radius: var(--first-radius);
  object-fit: cover;
}

.home-products-items-detail-text {
  position: relative;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
}

.home-products-items-detail-text-percent {
  font-size: var(--third-font-size);
  border: 1px solid var(--first-color);
  display: inline-block;
  color: var(--first-background-color);
  background: var(--first-color);
  border-radius: var(--third-radius);
  padding: 0 8px;
  position: absolute;
  top: -10px;
  right: 16px;
  color: white !important;
}

.home-products-items-detail-text-title {
  font-size: var(--fifth-font-size);
  font-family: "my-font-bold", serif;
  margin-top: 8px;
}

.home-products-items-detail-text-price {
  font-size: var(--third-font-size);
  color: var(--second-text-color) !important;
  margin-top: 10px;
  font-family: "my-font-bold", serif;
}

.home-products-items-detail-text-add {
  font-size: 32px;
  border: 2px solid var(--first-color);
  border-radius: 50%;
  color: var(--first-color);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
  cursor: pointer;
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.home-products-items-detail-btn-media {
  display: none;
}

.view-all-btn {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 270px;
  height: 280px;
  margin: 30px 8px 0 8px;
  align-items: center;
  justify-content: center;
}

.home-products-items-detail-btn {
  color: var(--first-color);
  border: 2px solid var(--first-color);
  font-size: var(--third-font-size);
  border-radius: var(--first-radius);
  padding: 5px 10px;
  position: absolute;
  left: 110px;
  cursor: pointer;
}

.home-comments {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 30px;
  background-image: url(../img/comments-bg.png);
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.home-comments-child {
  display: inline-block;
  text-align: right;
}

.home-comments-title {
  font-size: var(--seventh-font-size);
  color: var(--first-color);
  font-family: "my-font-bold", serif;
  text-align: center;
}

.home-comments-title-border {
  width: 80px;
  height: 2px;
  background: var(--first-color);
  border-radius: 2px;
}

.home-comments-items {
  padding: 10px var(--first-solid-padding);
  justify-content: space-between;
  display: flex;
  flex-direction: row;
}

.home-comments-items-detail {
  width: 32%;
  /* min-height: 330px; */
  /* height: fit-content; */
  height: 40vh;
  background-color: var(--second-background-color);
  text-align: right;
  padding: 20px;
  border: 8px solid var(--first-background-color);
  box-shadow: var(--first-shadow);
  border-radius: var(--first-radius);
}

.home-comments-items-detail-child {
  display: inline-flex;
  align-items: center;
  text-align: right;
  /* margin-top: -90px; */
}

.home-comments-items-detail-img {
  width: 10vw;
  height: 10vw;
  background-color: var(--second-background-color);
  border-radius: 50%;
  border: 14px solid var(--first-background-color);
  margin-left: 16px;
  margin-bottom: 16px;
  object-fit: cover;
  margin-top: -6vw;
}

.home-comments-items-detail-title {
  font-size: 18px;
  /* margin-top: 32px; */
  margin-top: -15px;
  font-family: "my-font-demibold", serif;
  height: fit-content;
  padding: 0%;
  margin-bottom: 0 !important;
}

.home-comments-items-detail-desc {
  font-size: var(--first2-font-size);
  color: var(--second-text-color);
  color: #a8a7ab !important;
}

.home-comments-items-detail-text {
  text-align: justify;
  font-size: var(--third-font-size);
  font-family: "dana-fanum-regular";
  line-height: 1.5rem;
  font-size: x-small;
}

.package-b-detail-buttons-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-b-detail-buttons-center-right {
  border-radius: var(--first-radius);
  background: #ffe1e6;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.package-b-detail-buttons-center-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.package-b-detail-buttons-center-middle-img {
  object-fit: contain;
  padding: 0 2px;
  cursor: pointer;
}

.package-b-detail-buttons-center-left {
  border-radius: var(--first-radius);
  background: #ffe1e6;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-brand {
  text-align: center;
  margin-top: 10vh;
}

.home-brand-images {
  padding: 16px var(--first-solid-padding);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-brand-images-img {
  width: calc((100% - (5 * 16px)) / 5);
  height: 50px;
  object-fit: contain;
  margin: 24px 8px;
  flex-grow: 1;
}

.home-reading {
  padding: 20px var(--first-solid-padding) 70px var(--first-solid-padding);
  background: var(--second-background-color);
}

.home-reading-head {
  display: flex;
  justify-content: space-between;
}

.home-reading-head-title {
  color: var(--first-color);
  font-size: var(--seventh-font-size);
  font-family: "my-font-demibold", serif;
}

.home-reading-title-border {
  width: 105px;
  height: 3px;
  background: var(--first-color);
  border-radius: 2px;
}

.home-reading-head-more {
  color: var(--first-color);
  font-size: var(--forth-font-size);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.home-reading-head-more-arrow {
  margin-right: 15px;
  cursor: pointer;
}

.home-reading-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: calc(100% + 16px);
  margin-right: -8px;
}

.home-reading-items-detail {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  width: 270px;
  background: var(--first-background-color);
  border-radius: var(--first-radius);
  margin: 30px 8px 0 8px;
  border: 2px solid var(--first-background-color);
  position: relative;
  max-width: 400px;
  cursor: pointer;
}

.home-reading-items-detail-img {
  display: block;
  margin: 2px auto 0;
  width: 98%;
  height: 200px;
  border-top-left-radius: var(--first-radius);
  border-top-right-radius: var(--first-radius);
  object-fit: cover;
}

.home-reading-items-detail-text {
  font-size: 12px;
  margin-top: 8px;
  padding: 16px;
  font-family: "my-font-demibold", serif;
}

.home-reading-items-detail-date {
  font-size: 12px;
  text-align: left;
  padding: 0 10px 10px;
}

.home-products-items-media {
  display: none;
}

@media screen and (max-width: 480px) {
  .pd-0 {
    padding: 0 !important;
  }

  .home-banner-box {
    width: calc(100% - 16px);
    height: 80px;
  }

  .home-banner-box-desc {
    font-size: var(--first-font-size);
  }

  .home-story-text-title {
    font-size: var(--forth-font-size);
  }

  .home-story {
    flex-wrap: wrap;
    margin: 0;
  }

  .home-story-text {
    margin-right: 0;
    font-size: var(--first2-font-size);
    width: 100%;
    min-width: 100%;
  }

  .home-story-text-btn {
    padding: 14px;
    margin: 20px 0 10px 0;
  }

  .home-story-img {
    width: 140px;
    height: 165px;
    position: absolute;
    left: 20px;
    bottom: 0;
  }

  .home-story-bg {
    display: none;
  }

  .home-story-media {
    display: flex;
    width: 299px;
    height: 52px;
    background: var(--third-background-color);
  }

  .home-story-bg-media {
    width: 299px;
    height: 52px;
    background: var(--third-background-color);
  }

  .ad-banner {
    display: none;
  }

  .home-products {
    background: var(--first-background-color);
    border-bottom: 1px dashed var(--first-border-color);
    padding-top: 10px;
  }

  .home-products-menu {
    display: none;
  }

  .home-products-media {
    display: inline-block;
  }

  .home-products-title {
    font-size: var(--forth-font-size);
    color: var(--first-color);
    font-family: "my-font-demibold", serif;
  }

  /* .home-story-text-border {
    width: 70px;
  } */

  .home-products-items-detail {
    flex-direction: inherit;
    align-items: flex-start;
    box-shadow: var(--first-shadow);
    min-width: 250px;
    max-width: 100vw;
  }

  .home-products-items-detail-img {
    width: 120px;
    height: 120px;
    border-radius: var(--first-radius);
    margin: 0;
  }

  .home-products-items-detail-text-percent {
    display: none;
  }

  .home-products-items-detail-text {
    display: block;
    padding: 0 10px 0px 0;
    width: 100%;
  }

  .home-products-items-detail-text-title {
    margin-top: 0;
  }

  .home-products-items-detail-text-percent-media {
    font-size: var(--first2-font-size);
    border: 1px solid var(--first-color);
    display: inline-block;
    color: var(--first-background-color);
    background: var(--first-color);
    border-radius: var(--third-radius);
    padding: 3px 8px 0 8px;
    color: white !important;
  }

  .home-products-items-media {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
  }

  .home-products-items-detail-text-title {
    font-size: var(--third-font-size);
  }

  .home-products-items-detail-text-price {
    font-size: var(--first-font-size);
  }

  .home-products-items {
    overflow: scroll;
    flex-wrap: unset;
    justify-content: unset;
    padding-bottom: 20px;
  }

  .view-all-btn {
    /* display: inline-block; */
    min-width: 250px;
    height: auto;
  }

  .home-products-items-detail-btn {
    position: static;
    margin-top: 10%;
    padding: 12px;
    margin-right: auto;
    margin-left: auto;
  }

  .home-comments {
    text-align: right;
    padding: 0 var(--first-solid-padding);
  }

  .home-comments-items {
    margin-top: 10px;
  }

  .home-comments-items-detail {
    width: 100%;
    padding: 10px 15px;
    height: 270px;
  }

  .home-comments-items-detail-title {
    margin-top: auto;
    font-size: var(--forth-font-size);
  }

  .home-comments-items-detail-desc {
    font-size: var(--first-font-size);
  }

  .home-comments-items-detail-text {
    font-size: 11px;
  }

  .home-comments-title {
    font-size: var(--forth-font-size);
  }

  .home-comments-items-detail-child {
    margin-top: 0;
  }

  .home-comments-items-detail-img {
    width: 56px;
    height: 56px;
    border: 4px solid var(--first-background-color);
  }

  .home-brand {
    text-align: right;
    padding: 0 var(--first-solid-padding);
    /* margin-top: 20px; */
  }

  .home-brand-images {
    flex-wrap: nowrap;
    overflow: scroll;
  }

  .home-brand-images-img {
    width: calc((100% - (3 * 16px)) / 3);
    height: 35px;
  }

  .home-reading-head-title {
    font-size: var(--forth-font-size);
  }

  .home-reading-head-more {
    font-size: var(--forth-font-size);
  }

  .home-reading-items {
    flex-wrap: nowrap;
    justify-content: unset;
    overflow: scroll;
  }

  .home-reading-items-detail {
    min-width: 330px;
  }

  .package-b-detail-buttons-center {
    margin-top: 20px;
  }

  .footer-nav-to-top {
    width: 100px !important;
    height: 30px !important;
    left: calc(50% - 40px) !important;
  }

  .footer-left-curve,
  .footer-right-curve {
    height: 30px !important;
    left: -35px !important;
  }

  .footer-right-curve {
    right: -35px !important;
  }

  .footer-fill-left-curve,
  .footer-fill-right-curve {
    height: 30px !important;
    width: 43px !important;
  }

  .fa-arrow-up {
    top: 10px !important;
  }
}

.banner {
  background-color: #f0f1f9;
  margin-top: 0px;
  padding-top: 0px;
}

.banner .carousel {
  min-height: 50vh;
  width: 100%;
  overflow: hidden;
}

.banner .carousel-indicators {
  background-color: white;
  width: fit-content;
  min-width: 185px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
  min-height: 50px;
  padding-top: 10px;
  border-top-right-radius: 60px;
  border-top-left-radius: 60px;
  z-index: 100 !important;
}

.carousel-indicators li {
  background-color: var(--first-color);
  width: 7px;
  height: 7px;
  border-radius: 100%;
  z-index: 100;
}

.carousel-indicators .active {
  background-color: var(--first-color);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-top: -2px;
}

.banner .carousel-left-curve,
.banner .carousel-right-curve {
  position: absolute;
  left: calc(50% - 118.9px);
  bottom: 0;
  width: 30px;
  height: 50px;
  background-color: white;
  padding: 0%;
  overflow: visible;
}

.banner .carousel-right-curve {
  right: calc(50% - 118.9px);
}

.fill-left,
.fill-right {
  margin-top: -1px;
  margin-right: -3px;
  width: 33px;
  height: 51px;
  border-bottom-right-radius: 60px;
  background-color: #f0f1f9;
}

.fill-right {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 60px;
  margin-right: 0px;
  margin-left: -0px !important;
}

.banner .carousel-inner {
  padding-right: 10%;
}

.banner .carousel-content {
  position: relative;
  z-index: 90;
  background-color: transparent;
  min-height: 40vh;
}

.carousel-title {
  padding-top: 20px;
  margin-top: 10vh;
  font-family: "dana-fanum-demibold";
  font-size: large;
  color: #241f20;
}

.carousel-p {
  max-width: 25%;
  font-size: small;
  margin-top: 20px;
  line-height: 25px;
  color: #241f20;
  font-family: "dana-fanum-regular";
}

.row {
  margin: 0;
}

.buttons-row {
  margin-top: 50px;
  margin-bottom: 100px;
  max-width: 35vw;
}

.primary-button {
  border-radius: 20px;
  background-color: var(--first-color);
  color: white;
  font-family: "dana-fanum-regular";
  padding: 15px;
}

.primary-button:hover {
  background-color: transparent !important;
  border-color: var(--first-color);
  color: var(--first-color);
}

.secondary-button {
  border-radius: 20px;
  background-color: white;
  border-color: var(--first-color);
  color: var(--first-color);
  background-color: transparent;
  font-family: "dana-fanum-regular";
  padding: 15px;
}

.banner .carousel-item,
.banner .carousel-inner {
  overflow: visible !important;
}

.banner .carousel-image {
  height: 40vh;
  position: absolute;
  left: 10vw;
  bottom: -20px !important;
}

.nav-tabs {
  /* border-bottom: none; */
  border-bottom: 1px solid #434042;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.nav-tabs .nav-link {
  border: none;
  font-family: "dana-fanum-bold";
  background-color: transparent !important;
}

.nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--first-color) !important;
  margin-bottom: -2px !important;
  background-color: transparent !important;
}

.home-comments .carousel {
  /* min-height: 50vh !important; */
  margin-top: 1vw;
  position: relative;
}

.home-comments .carousel-indicators {
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  justify-content: center !important;
  bottom: 5%;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 25%;
  border: none;
  background-image: none;
  background-color: yellow;
}

.carousel-control-next,
.carousel-control-prev {
  background-color: #facad2;
}

.carousel-control-prev {
  right: -70px !important;
}

.carousel-control-next {
  left: -70px !important;
}

.carousel .fa {
  align-self: center;
  color: #e40a32;
  margin-right: auto;
  margin-left: auto;
}

.to-hide {
  display: block !important;
}

.to-show {
  display: none !important;
}

.mt-90 {
  margin-top: 90px;
}

.to-hide-soon {
  display: block;
}

.pt-6vw {
  padding-top: 6vw;
}

.mb-n5vw {
  margin-bottom: -5vw !important;
}

.footer {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 1)
    ),
    url(../img/footer-bg.png);
  background-size: 30vw 100%;
  background-repeat: no-repeat;
  background-position: left;
}

.footer-logo {
  position: absolute;
  width: 180px;
  height: 60px;
  top: 0px;
  left: calc(50% - 100px);
  background-color: #eff1f8;
  background-image: url("../img/logo.png");
  background-size: 100px 40px;
  background-position: center center;
  background-repeat: no-repeat no-repeat;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: block !important;
}

.footer-nav-to-top {
  position: absolute;
  width: 180px;
  height: 60px;
  bottom: 0px;
  left: calc(50% - 100px);
  background-color: #eff1f8;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-left-curve,
.footer-right-curve {
  height: 60px;
  width: 40px;
  position: absolute;
  left: -40px;
  background-color: #eff1f8;
}

.footer-right-curve {
  right: -40px;
}

.footer-fill-left-curve,
.footer-fill-right-curve {
  height: 60px;
  width: 43px;
  background-color: white;
  border-top-right-radius: 40px;
  margin-right: -3px !important;
}

.footer-fill-right-curve {
  position: absolute;
  border-top-right-radius: 0px;
  border-top-left-radius: 40px;
  left: -3px !important;
}

.footer-nav-to-top .footer-fill-left-curve {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 40px;
}

.footer-nav-to-top .footer-fill-right-curve {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 40px;
}

.fa-arrow-up {
  position: absolute;
  top: 20px;
  left: calc(50% - 5px);
  color: black !important;
  font-size: 30px;
  cursor: pointer;
}

.support1,
.support2,
.support3 {
  position: absolute;
  top: 15vh;
  left: 0;
  width: 60px;
  height: 50px;
  background-color: white;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: width 0.5s, background-color 0.5s;
  z-index: 150;
  box-shadow: var(--first-shadow);
  color: var(--first-color);
  /* justify-content: center; */
  align-items: center;
  padding: 15px;
}

.support2 {
  top: calc(15vh + 55px) !important;
}

.support3 {
  top: calc(15vh + 110px) !important;
}

.support1:hover,
.support2:hover,
.support3:hover {
  width: 180px;
  background-color: var(--first-color);
}

.support1 .fa,
.support2 .fa,
.support3 .fa {
  font-size: 20px;
  position: relative;
  transition: color 0.5s;
}

.support1:hover .fa,
.support2:hover .fa,
.support3:hover .fa {
  color: white;
}

.support1 p,
.support2 p,
.support3 p {
  opacity: 0;
  position: absolute;
  top: 15px;
  right: 45px;
  color: white !important;
}

.support1:hover p,
.support2:hover p,
.support3:hover p {
  opacity: 1;
  transition: opacity 1.5s !important;
}

@media (max-width: 1100px) {
  .banner .carousel-image {
    left: 0vw;
  }
}

@media (max-width: 480px) {
  .to-hide {
    display: none !important;
  }

  .to-show {
    display: block !important;
  }

  .banner .carousel-content {
    text-align: center;
  }

  .banner .carousel-inner {
    padding-right: 0%;
  }
}

@media (max-width: 992px) {
  .banner {
    margin-top: 10px;
    display: block !important;
    padding-top: 70px;
  }

  .carousel-left-curve,
  .carousel-right-curve {
    display: none;
  }

  .banner .carousel-indicators {
    background-color: transparent;
  }

  .buttons-row {
    max-width: 100%;
  }

  .buttons-row .secondary-button {
    display: none;
  }

  .buttons-row .primary-button {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .carousel-p {
    max-width: 100%;
  }

  .carousel-content {
    background-color: #f0f1f9dd !important;
    width: 100% !important;
  }

  .banner .carousel-image {
    width: 80vw;
    height: 90vw;
    left: 10vw;
  }
  .home-comments .carousel {
    min-height: auto;
  }

  .home-products {
    min-height: 0vh;
  }

  .home-comments .carousel-indicators {
    top: auto;
    bottom: -60px !important;
  }

  .mt-90 {
    margin-top: 0;
  }

  .to-hide-soon {
    display: none;
  }

  .footer {
    background: none;
  }
}
