section.product {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #f7f8f9;
}

.product .video-container {
  position: relative;
  height: 40vh;
  background-color: #151414;
  background-image: url('../assets/videos/banner.jpg');
  background-size: cover;
  background-position: center;
}

.product .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .video-container h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  z-index: 1;
  color: var(--uttc-white);
  width: calc(100% - 32px);
  text-align: center;
}

.product .heading {
  text-align: center;
}

.product h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.product h2.text-center {
  position: relative;
  bottom: -30px;
  text-align: center;
}

.product .product__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  margin: 90px auto 0;
}

.product .product__item {
  position: relative;
  flex: 0 0 250px;
  background-color: var(--uttc-white);
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .1);
  padding: 15px 20px 30px;
  border-radius: 4px;
}

.product .product__item a {
  text-decoration: none;
}

.product .product__item::after {
  content: "\30FB\30FB\30FB";
  position: absolute;
  font-size: 20px;
  letter-spacing: -12px;
  left: 22px;
  bottom: 20px;
  color: #1e1e1e;
  opacity: .3;
}

.product .product__item.inner::after,
.product .product__item.empty::after {
  display: none;
}

.product .product__item.empty .product__item-description {
  margin-bottom: 30px;
}

.product .product__item-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border-radius: 4px;
  transition: all .5s;
}

.product .product__item:hover .product__item-overlay {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0, 0, 0, .85);
}

.product .product__item-image img {
  width: 120px;
}

.product .product__item.inner .product__item-image img {
  height: 120px;
  width: auto;
  max-width: 100%;
  margin-bottom: 15px;
  margin-top: 30px;
}

.product .product__item-title {
  font-size: 22px;
  line-height: 1.182;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--uttc-black);
}

.product .product__item.inner .product__item-title {
  margin-bottom: 15px;
}

.product .product__item-description {
  font-size: 14px;
  line-height: 1.429;
  color: var(--uttc-gray);
  margin-bottom: 90px;
}

.product .product__item-overlay .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background-color: transparent;
  color: var(--uttc-white);
  border: 2px solid var(--uttc-white);
  border-radius: 4px;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: all .2s;
}

.product .product__item-overlay .btn:hover {
  background-color: var(--uttc-gold);
  border: 2px solid var(--uttc-gold);
}

.product .breadcrumb {
  padding: 15px 15px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.product .breadcrumb div {
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.product .breadcrumb a {
  text-decoration: none;
  color: var(--uttc-gold);
}

.product .breadcrumb div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -17.5px;
  content: '>';
  font-size: 12px;
}

@media (max-width: 991.98px) {
  section.product {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .product h2 {
    font-size: 36px;
  }

  .product .product__items {
    margin-top: 60px;
    gap: 30px;
  }

  .product .product__item {
    flex: 0 0 290px;
    padding: 15px 20px 30px;
  }

  .product__item-overlay {
    display: none;
  }

  .product .breadcrumb {
    padding: 15px 0;
  }
}

header .header__links a {
  position: relative;
}

header .header__links a:nth-child(2)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--uttc-gold);
  content: '';
}