
/* ==========================================
   PREMIUM H2
   ========================================== */

.uc-premium-h2 .t-title {
  position: relative;
  margin: 0px auto;
  margin-bottom: 3px;

  text-align: center;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;

  color: #1d3327 !important;

  max-width: 900px !important;
}


/* Подзаголовочная линия */

.uc-premium-h2::after {
  content: "";

  display: block;

  width: 180px;
  height: 1px;

  margin: 3px auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(217,201,139,.85),
      transparent
    );
}



@media (max-width: 640px){

  .uc-premium-h2{

  margin: 0px auto;
  margin-bottom: 3px;

    font-size: 30px !important;
    line-height: 1.18;

    letter-spacing: -0.02em;
  }

  .uc-premium-h2::before{
    width: 70px;
    margin-bottom: 18px;
  }

  .uc-premium-h2::after{
    width: 120px;
    margin-top: 18px;
  }

}



.uc-premium-h2 span{
  display:inline-block;
  position:relative;
}

.uc-premium-h2 span::after{
  content:"";

  position:absolute;
  left:0;
  right:0;
  bottom:-6px;

  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(217,201,139,.5),
      transparent
    );
}



