/* product_show: breadcrumbs, title, key figures, gallery (single-product.php) */
.product_show {
  padding: 13.2rem 0 7.4rem;
  background-image: linear-gradient(180deg, #eaf1f9 0%, #eef3f9 45%, #f5f7fb 100%);
}
.product_show .breadcrumbs {
  color: #8a94a6;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product_show .breadcrumbs span::after {
  content: '/';
  margin: 0 0.4rem;
  opacity: 0.7;
}
.product_show .breadcrumbs span:last-child {
  color: var(--blue);
}
.product_show .breadcrumbs span:last-child::after {
  display: none;
}
.product_show .breadcrumbs a {
  transition: all 0.3s;
}
.product_show .breadcrumbs a:hover {
  color: var(--primary);
}
.product_show .main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
  margin-top: 7.2rem;
}
.product_show .lt {
  flex: 1;
  max-width: 64rem;
  padding-top: 1.8rem;
}
.product_show .tcon h1 {
  color: var(--title);
  font-size: 5.4rem;
  line-height: 1.2;
  margin-top: 1.4rem;
}
.product_show .tcon p {
  max-width: 61rem;
  margin-top: 3.1rem;
}
.product_show .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
}
.product_show .btns .btn_quote {
  padding: 0 2.8rem;
}
.product_show .btns .btn_download {
  background-color: var(--dark);
}
.product_show .btns .btn_download:hover {
  background-color: var(--secondary);
}
.product_show .figures {
  margin-top: 7.36rem;
  border-top: 1px solid rgba(4, 18, 34, 0.08);
}
.product_show .figures ul {
  display: grid;
  grid-template-columns: 31.97rem 1fr;
  gap: 2.6rem 0;
  padding-top: 3.2rem;
}
.product_show .figures li {
  position: relative;
}
.product_show .figures li:nth-child(2n) {
  padding-left: 2.03rem;
}
.product_show .figures li:nth-child(2n)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1px;
  height: 5.73rem;
  background-color: rgba(4, 18, 34, 0.14);
}
.product_show .figures strong {
  display: block;
  color: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1;
  white-space: nowrap;
}
.product_show .figures span {
  display: block;
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1rem;
}
.product_show .gallery {
  width: 62.45rem;
  flex-shrink: 0;
}
.product_show .product_show_gallery_swiper {
  overflow: hidden;
  border-radius: 2.8rem;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(208, 211, 221, 0.45);
}
.product_show .product_show_gallery_swiper .swiper-slide {
  background-color: #fff;
}
.product_show .product_show_gallery_swiper .img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.product_show .product_show_gallery_swiper .img img {
  width: 68.54%;
  height: 68.54%;
  margin: 1.2% 0 0 -0.8%;
}
.product_show .product_show_thumbs_swiper {
  overflow: hidden;
  margin-top: 3.59rem;
}
.product_show .product_show_thumbs_swiper .swiper-slide {
  width: 11.06rem;
  cursor: pointer;
  border-radius: 1rem;
  border: 1.5px solid #e3e8f2;
  background-color: #fff;
  transition: all 0.3s;
}
.product_show .product_show_thumbs_swiper .swiper-slide:hover,
.product_show .product_show_thumbs_swiper .swiper-slide-thumb-active {
  border-color: var(--green);
}
.product_show .product_show_thumbs_swiper .img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.product_show .product_show_thumbs_swiper .img img {
  width: 66%;
  height: 66%;
}

/* product_related: related products slider (parts/product-related.php) */
.product_related {
  padding: 10rem 0 15.9rem;
  background-image: linear-gradient(180deg, rgba(242, 245, 249, 0) 0%, var(--bg) 100%);
}
.product_related .head.flex {
  align-items: flex-end;
}
.product_related .head .btn {
  padding: 0 3rem 0 3.2rem;
  margin-bottom: 0.15rem;
}
.product_related .swiper_content {
  padding: 1.5rem 1.5rem 6rem;
  margin-top: 4.5rem;
}
.product_related .product_related_swiper {
  overflow: visible;
}
.product_related .item {
  display: block;
  height: 100%;
  padding: 1.484rem 1.484rem 3.3rem;
  border-radius: 2rem;
  background-color: #fff;
  transition: all 0.3s;
}
.product_related .item .img {
  position: relative;
  aspect-ratio: 298.96 / 212.44;
}
.product_related .item .img .bg {
  border-radius: 1.2rem;
  object-fit: cover;
}
.product_related .item .img .pd {
  position: absolute;
  left: 48%;
  top: 33.74%;
  width: 60.54%;
  height: auto;
  aspect-ratio: 1;
}
.product_related .item .cat {
  display: inline-block;
  vertical-align: top;
  color: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 3.165rem;
  text-transform: uppercase;
  padding: 0 1rem;
  margin: 2.54rem 0 0 1.48rem;
  border-radius: 0.6rem;
  background-color: #ebf2fb;
}
.product_related .item .title {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.3;
  padding: 0 1.5rem;
  margin-top: 1.7rem;
  transition: all 0.3s;
}
.product_related .item .desc {
  color: var(--text);
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 0 0.8rem 0 1.5rem;
  margin-top: 1.25rem;
}
.product_related .item .btn_i {
  font-size: 1.8rem;
  margin: 5.3rem 0 0 1.5rem;
}
.product_related .swiper-wrapper:not(:hover) .swiper-slide:first-child .item,
.product_related .swiper-slide:hover .item {
  box-shadow: 0 2rem 4rem rgba(208, 211, 221, 0.45);
}
.product_related .swiper-slide:hover .item .title {
  color: var(--primary);
}
.product_related .swiper-slide:hover .btn_i::after {
  transform: translateX(30%);
}
.product_related .swiper_btns {
  justify-content: center;
  gap: 3rem;
  margin-top: -1.9rem;
  padding-left: 0.4rem;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .product_show .gallery {
    width: 48%;
  }
  .product_show .main {
    gap: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .product_show .tcon h1 {
    font-size: 4.6rem;
  }
  .product_show .figures ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .product_show {
    padding: 90px 0 50px;
  }
  .product_show .breadcrumbs {
    font-size: 11px;
    line-height: 1.6;
  }
  .product_show .main {
    flex-direction: column;
    gap: 30px;
    margin-top: 24px;
  }
  .product_show .lt {
    max-width: none;
    padding-top: 0;
  }
  .product_show .tcon h1 {
    font-size: 28px;
    margin-top: 10px;
  }
  .product_show .tcon p {
    margin-top: 12px;
  }
  .product_show .btns {
    gap: 10px;
    margin-top: 20px;
  }
  .product_show .btns .btn_quote {
    padding: 0 20px;
  }
  .product_show .figures {
    margin-top: 28px;
  }
  .product_show .figures ul {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    padding-top: 20px;
  }
  .product_show .figures li:nth-child(2n) {
    padding-left: 16px;
  }
  .product_show .figures li:nth-child(2n)::before {
    top: 2px;
    height: 44px;
  }
  .product_show .figures strong {
    font-size: 24px;
  }
  .product_show .figures span {
    font-size: 13px;
    margin-top: 6px;
  }
  .product_show .gallery {
    width: 100%;
  }
  .product_show .product_show_gallery_swiper {
    border-radius: 16px;
  }
  .product_show .product_show_thumbs_swiper {
    margin-top: 14px;
  }
  .product_show .product_show_thumbs_swiper .swiper-slide {
    width: 72px;
    border-radius: 8px;
  }
  .product_related {
    padding: 20px 0 60px;
  }
  .product_related .head.flex {
    align-items: flex-start;
  }
  .product_related .head .btn {
    margin-bottom: 0;
  }
  .product_related .swiper_content {
    padding: 10px 20px 30px;
    margin-top: 16px;
  }
  .product_related .item {
    padding: 10px 10px 24px;
    border-radius: 14px;
  }
  .product_related .item .cat {
    font-size: 12px;
    line-height: 26px;
    margin: 16px 0 0 10px;
  }
  .product_related .item .title {
    font-size: 18px;
    padding: 0 10px;
    margin-top: 12px;
  }
  .product_related .item .desc {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
    margin-top: 8px;
  }
  .product_related .item .btn_i {
    font-size: 15px;
    margin: 20px 0 0 10px;
  }
  .product_related .swiper_btns {
    margin-top: 0;
    padding: 0;
  }
}
.product_overview {
  padding: 15.8rem 0px 15.8rem;
  background-color: #fff;
}
.product_overview .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}
.product_overview .tcon {
  flex: 1;
  max-width: 64rem;
  padding-top: 0.9rem;
}
.product_overview .tcon p {
  max-width: 60rem;
}
.product_overview .card {
  width: 60.8rem;
  flex-shrink: 0;
  padding: 2.9rem 3.1rem 1.6rem;
  border-radius: 1.6rem;
  border: 1px solid #e4e9f2;
  background-color: #fff;
}
.product_overview .card .title {
  color: #0a0c1b;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
}
.product_overview .card .title h3 {
  font-size: inherit;
  font-weight: inherit;
}
.product_overview .table {
  margin-top: 1.7rem;
}
.product_overview table {
  width: 100%;
  border-collapse: collapse;
}
.product_overview tr + tr {
  border-top: 1px solid #e4e9f2;
}
.product_overview th,
.product_overview td {
  height: 5.76rem;
  padding: 0.6rem 0px;
  text-align: left;
  vertical-align: middle;
}
.product_overview th {
  width: 19.35rem;
  padding-right: 1.6rem;
  color: #0a0c1b;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.product_overview td {
  color: #0a0c1b;
  font-size: 1.45rem;
  line-height: 2.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
  .product_overview .card {
    width: 48%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .product_overview .content {
    flex-direction: column;
  }
  .product_overview .tcon,
  .product_overview .tcon p {
    max-width: none;
  }
  .product_overview .card {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .tcon p + p {
    margin-top: 10px;
  }
  .product_overview {
    padding: 50px 0px 60px;
  }
  .product_overview .content {
    flex-direction: column;
    gap: 30px;
  }
  .product_overview .tcon {
    max-width: none;
    padding-top: 0px;
  }
  .product_overview .tcon p {
    max-width: none;
  }
  .product_overview .card {
    width: 100%;
    padding: 20px 16px 8px;
    border-radius: 12px;
  }
  .product_overview .card .title {
    font-size: 18px;
  }
  .product_overview .table {
    margin-top: 10px;
  }
  .product_overview th,
  .product_overview td {
    height: 46px;
    font-size: 13px;
    line-height: 1.5;
  }
  .product_overview th {
    width: 40%;
    padding-right: 10px;
  }
}
.product_applications {
  overflow: hidden;
  padding: 11.2rem 0px 11.4rem;
}
.product_applications .tcon .subtitle {
  color: #7fa3ff;
}
.product_applications .tcon h2 {
  color: #fff;
}
.product_applications .tcon p {
  max-width: 74rem;
  color: rgba(255, 255, 255, 0.8);
}
.product_applications .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem 2.97rem;
  margin-top: 6.8rem;
}
.product_applications .card {
  display: block;
  position: relative;
  height: 100%;
  min-height: 22rem;
  padding: 3.84rem 3.4rem 3rem 3.8rem;
  color: #fff;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s;
}
.product_applications .card::after {
  content: "";
  position: absolute;
  right: 3.9rem;
  bottom: 4.15rem;
  width: 0.8rem;
  height: 1.4rem;
  transition: 0.3s;
  background: url("../img/chevron-r-w.svg") center center / contain no-repeat;
}
.product_applications .card .icon {
  display: block;
  overflow: hidden;
  width: 5.692rem;
  height: 5.692rem;
  margin-bottom: 3.3rem;
  border-radius: 1.2rem;
  background-color: #144fce;
  transition: 0.3s;
}
.product_applications .card .icon img {
  display: block;
  width: 5.692rem;
  height: 5.692rem;
}
.product_applications .card .title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.9rem;
}
.product_applications .card .title h3 {
  font-size: inherit;
  font-weight: inherit;
}
.product_applications .card .desc {
  overflow: hidden;
  max-height: 0px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.6rem;
  line-height: 2.6rem;
  transition: 0.3s;
}
.product_applications .card .desc p {
  padding-top: 1rem;
}
.product_applications .cards:not(:hover) li.active .card,
.product_applications .cards li:hover .card {
  background-color: rgba(255, 255, 255, 0.06);
}
.product_applications .cards:not(:hover) li.active .card::after,
.product_applications .cards li:hover .card::after {
  opacity: 0;
}
.product_applications .cards:not(:hover) li.active .icon,
.product_applications .cards li:hover .icon {
  height: 0px;
  margin-bottom: 0px;
  opacity: 0;
}
.product_applications .cards:not(:hover) li.active .desc,
.product_applications .cards li:hover .desc {
  max-height: 14rem;
  opacity: 1;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
  .product_applications .card {
    padding: 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .product_applications .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .product_applications {
    padding: 50px 0px 60px;
  }
  .product_applications .cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .product_applications .card {
    min-height: 0px;
    padding: 18px 44px 18px 18px;
    border-radius: 12px;
  }
  .product_applications .card::after {
    right: 18px;
    bottom: auto;
    top: 50%;
    margin-top: -7px;
  }
  .product_applications .card .icon,
  .product_applications .card .icon img {
    width: 44px;
    height: 44px;
  }
  .product_applications .card .icon {
    margin-bottom: 14px;
    border-radius: 10px;
  }
  .product_applications .card .title {
    font-size: 18px;
    line-height: 1.3;
  }
  .product_applications .card .title br {
    display: none;
  }
  .product_applications .card .desc {
    font-size: 14px;
    line-height: 1.6;
    min-height: unset;
    max-height: unset;
    opacity: 1;
  }
  .product_applications .cards:not(:hover) li.active .icon,
  .product_applications .cards li:hover .icon{
    height: 44px;
    opacity: 1;
    margin-bottom: 10px;
  }
}
.product_parameters {
  padding: 15.3rem 0px 15.8rem;
  background-color: var(--bg);
}
.product_parameters .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.product_parameters .head .btns {
  margin: 0px 0.2rem 0.9rem 0px;
}
.product_parameters .head .btn {
  padding: 0px 3rem 0px 3.1rem;
}
.product_parameters .table {
  overflow: hidden;
  margin-top: 7.2rem;
  border-radius: 1.6rem;
  border: 1px solid #e4e9f2;
  background-color: #fff;
}
.product_parameters table {
  width: 100%;
  border-collapse: collapse;
}
.product_parameters th,
.product_parameters td {
  width: 20%;
  text-align: left;
  vertical-align: middle;
  border-left: 1px solid rgb(255 255 255 / 0.2);
  padding: 0.6rem 1.6rem 0.6rem 2.8rem;
}
.product_parameters th:first-child,
.product_parameters td:first-child{
  border-left: none;
}
.product_parameters th {
  height: 6.1rem;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.64rem;
  line-height: 2.2rem;
  background-color: var(--primary);
}
.product_parameters td {
  height: 5.77rem;
  color: #0a0c1b;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2rem;
  border-top: 1px solid #e4e9f2;
  border-left: 1px solid #e4e9f2;
}
.product_parameters tbody tr:first-child td {
  height: 6.47rem;
  border-top: none;
}
.product_parameters tbody tr {
  transition: 0.3s;
}
.product_parameters tbody tr:hover {
  background-color: #f8fafc;
}
.product_parameters .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.07rem;
  margin-top: 3.47rem;
}
.product_parameters .card {
  height: 100%;
  min-height: 20rem;
  padding: 3.4rem 2.8rem 3rem 3rem;
  border-radius: 1.2rem;
  border: 1px solid #ebeef3;
  background-color: #fff;
}
.product_parameters .card h3 {
  color: #0a0a0a;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.2;
}
.product_parameters .card p {
  color: var(--text);
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 1.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .product_parameters .table {
    overflow-x: auto;
  }
  .product_parameters table {
    min-width: 800px;
  }
  .product_parameters .cards {
    grid-template-columns: 1fr;
  }
  .product_parameters .card {
    min-height: 0px;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 8px;
  }
  .product_parameters {
    padding: 50px 0px 60px;
  }
  .product_parameters .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .product_parameters .head .btns {
    margin: 0px;
  }
  .product_parameters .head .btn {
    padding: 0px 20px;
  }
  .product_parameters .table {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: 12px;
  }
  .product_parameters table {
    min-width: 620px;
  }
  .product_parameters th,
  .product_parameters td {
    font-size: 13px;
    line-height: 1.4;
    padding: 6px 10px 6px 14px;
  }
  .product_parameters th {
    height: 46px;
  }
  .product_parameters td,
  .product_parameters tbody tr:first-child td {
    height: 44px;
  }
  .product_parameters .cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .product_parameters .card {
    min-height: 0px;
    padding: 20px 18px;
    border-radius: 12px;
  }
  .product_parameters .card h3 {
    font-size: 18px;
  }
  .product_parameters .card p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
  }
}
.product_documents {
  padding: 11.8rem 0px 10rem;
  background-color: #fff;
}
.product_documents .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.product_documents .tcon {
  flex: 1;
  max-width: 64rem;
}
.product_documents .tcon p {
  max-width: 60rem;
}
.product_documents .tcon .note {
  position: relative;
  max-width: 55rem;
  margin-top: 1.6rem;
  padding-left: 1.3rem;
}
.product_documents .tcon .note::before {
  content: "*";
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.product_documents .tcon .note p {
  font-size: 1.5rem;
  line-height: 2.4rem;
  margin-top: 0px;
}
.product_documents .docs {
  width: 64rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid #e4e9f2;
  background-color: #fff;
}
.product_documents .docs li + li {
  border-top: 1px solid #e4e9f2;
}
.product_documents .doc {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 10.78rem;
  padding: 1.6rem 3.4rem 1.6rem 3.58rem;
  transition: 0.3s;
}
.product_documents .doc::after {
  content: "";
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.05rem;
  margin-left: auto;
  transition: 0.3s;
  background: url("../img/arrow-r-b.svg") center center / contain no-repeat;
}
.product_documents .doc .icon {
  display: block;
  flex-shrink: 0;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 0.6rem;
  background-color: #f2f5fa;
}
.product_documents .doc .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.product_documents .doc .info {
  flex: 1;
  padding-top: 0.2rem;
}
.product_documents .doc h3 {
  color: #0a0c1b;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.2rem;
  transition: 0.3s;
}
.product_documents .doc p {
  color: #8b93a7;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 0.45rem;
}
.product_documents .doc:hover {
  background-color: #f8fafc;
}
.product_documents .doc:hover h3 {
  color: var(--primary);
}
.product_documents .doc:hover::after {
  transform: translateX(30%);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
  .product_documents .docs {
    width: 50%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .product_documents .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .product_documents .tcon {
    max-width: none;
  }
  .product_documents .docs {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .product_documents {
    padding: 50px 0px 40px;
  }
  .product_documents .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .product_documents .tcon {
    max-width: none;
  }
  .product_documents .tcon .note {
    margin-top: 10px;
    padding-left: 12px;
  }
  .product_documents .tcon .note::before,
  .product_documents .tcon .note p {
    font-size: 12px;
    line-height: 1.6;
  }
  .product_documents .docs {
    width: 100%;
    border-radius: 12px;
  }
  .product_documents .doc {
    gap: 12px;
    min-height: 0px;
    padding: 14px 16px;
  }
  .product_documents .doc .icon {
    width: 40px;
    height: 40px;
  }
  .product_documents .doc h3 {
    font-size: 15px;
    line-height: 1.4;
  }
  .product_documents .doc p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 2px;
  }
}
