.mainWrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 100px 0;
  overflow: hidden;
}

.wrappen_block {
  position: relative;
  width: 100%;
  height: 100%;
}

.productCard_block {
  position: relative;
  min-height: 600px;
  box-shadow: 0 5px 21px rgba(0, 0, 0, 0.08);
  background: #f8f9fa;
}

/* LEFT SIDE */
.productCard_leftSide {
  position: relative;
max-width: 450px;
}
.productCard_leftSide img{
max-width: 100%;
}

.productCard_brendBlock {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 184px;
    max-height: 75px;
    background-color: #536dfe;
    z-index: 2;
    padding: 20px;
    border-radius: 0 15px 15px 0;
}
.productCard_brendBlock__imageBlock {
  color: #fff;
}
.productCard_brendBlock__imageBlock img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*   RIGHT SIDE */
.productCard_rightSide {
  position: relative;
  padding-top: 34px;
  padding-left: 27px;
  padding-right: 40px;
  width: 100%;
  min-height: 600px;
}

.block_specification {
  float: right;
  margin-top: 8px;
  cursor: pointer;
  color: #536dfe;
  transition: all 0.5s;
}
.block_specification__button {
  display: inline-block;
  margin-right: 7px;
  height: 100%;
  font-size: 17px;
  text-transform: uppercase;
  transform: rotate(0);
  transition: transform 0.5s;
  transform-origin: center center;
}
.block_specification:hover .block_specification__button__rotate {
  transition: transform 0.5s;
  transform: rotate(1turn);
}
.block_specification:hover {
  color: #f1425d;
}

.block_specification__text {
  width: 30px;
  height: 11px;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}


.block_name {
  width: 100%;
  color: #263238;
  font-weight: 400;
  line-height: 35px;
}
.block_name__mainName {
  margin: 0;
  padding: 0;
  font-size: 29px;
  margin-bottom: 30px;
}
.block_name__addName {
  margin: 0;
  padding: 0;
  font-size: 24px;
}

.block_product {
  position: relative;
  width: 100%;
}
.block_product__advantagesProduct {
  width: 271px;
  height: 41px;
  margin-top: 14px;
  color: #646b6f;
  font-size: 17px;
  line-height: 24px;
}
.block_product__link {
  line-height: 23px;
  color: #536dfe;
}

.block_informationAboutDevice {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.text_specification {
  padding: 0;
  color: #37474f;
  font-size: 13px;
}
.product-info{
padding-left: 0;
margin: 10px 0;
}
.product-info li{
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: bold;
}
.product-info li i{
color: #0d6efd;
}

.product-info li p{
color: #6c757d;
}
.product-info li p:first-of-type{
color: #324fa6;
}
.social-links{
    display: flex;
    gap: 1rem;
    padding: 0 10px
}
.social-links a:hover{
  animation: pulse 1s infinite;
  animation-timing-function: linear;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1);}
  100% { transform: scale(1); }
  }

