﻿/*#region CSS Procate*/
.sv-item {padding: 80px 0 70px;}
.sv-item:nth-child(2n) {background: #f7f7f7;}
.sv-item a {
    display: flex;justify-content: space-evenly;align-items: center;
     text-decoration: none;
     transition: all 0.5s;
}
.sv-itm-img {
    position: relative;
    width: 40%;
    margin: 0;
    z-index: 1;
}
.sv-itm-info{
    width: 50%;
}
.sv-itm-ttl {
line-height: 1.5em;
    text-align: center;
    font-size: 30pt;
    margin-bottom: 20px;
    font-family: 'SFUShadowBTBlackCondensed';
    text-transform: uppercase;
}
.sv-itm-txt, .sv-itm-txt p{
    font-size: 15pt;
    color: #505050;
    font-weight: 600;
}
.sv-itm-btn{
    margin: 25px 0 0;
    font-weight: 600;font-size: 22px;
}
.sv-itm-btn:after{content: "»";margin-left: 5px;font-size: 20px; transition: all 0.7s;}

.sv-item:nth-child(2n) .sv-itm-img {order: 2;}
.sv-itm-img img, .sv-itm-ttl {
  transition: all 0.7s;
}
.sv-itm-img::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    height: 110px;
    width: 110px;
    background: #d4d4d4;
    z-index: -1;
    transition: all 0.5s ease;
}
.sv-itm-img::after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: -7px;
    height: 110px;
    width: 110px;
    background: #d4d4d4;
    z-index: -1;
    transition: all 0.5s ease;
}
.sv-item a:hover .sv-itm-ttl {color: #fab416;}
.sv-item a:hover .sv-itm-btn:after{margin-left:15px;}
@media screen and (max-width:480px) {
    .sv-item {padding: 50px 0;}
    .sv-item a{display:block;}
    .sv-itm-img, .sv-itm-info{width:100%;}
    .sv-itm-img{margin-bottom:30px;}
}
/*#endregion*/
.pro-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pro-item {
  margin: 0 30px 30px 0;
  width: calc(25% - 22.5px);
}
.pro-item:nth-child(4n) {
  margin-right: 0;
}
.pro-itm-main {
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  overflow: hidden;
  margin-bottom: 15px;
}
.pro-itm-img {
  margin: 0;
}
.pro-itm-img img {
  width: 100%;
  max-width: none;
  max-height: 100%;
  transition: all 0.7s;
}
.pro-itm-btn {
  margin: 0;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  transition: all 0.3s;
  z-index: 5;
}
.pro-itm-btn a {
  display: flex;
  width: 50%;
  background: #9dcf85;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  transition: all 0.5s;
}
.pro-itm-btn a:first-child {
  background: #45a814;
}
.pro-itm-btn a:hover {
  background: #6f421b;
}
.pro-itm-ttl {
  text-align: center;
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #6f421b;
}
.pro-item:hover .pro-itm-btn {
  bottom: 0;
}
.pro-itm-img a {
  display: block;
}
.pro-item:hover .pro-itm-img img {
  transform: scale(1.1, 1.1);
  opacity: 0.8;
}
.pro-itm-ttl a {
  text-decoration: none;
} 
@media screen and (max-width: 768px) {
 .pro-item {
    width: calc(50% - 15px);
}
 .pro-item:nth-child(2n) {
    margin-right: 0;
}
}
@media screen and (max-width: 480px) {
.pro-list{justify-content:space-between}
.pro-item {
    width: 49%;
    margin: 0 0 30px;
}
.pro-itm-ttl{
    height: 48px;
    overflow: hidden;
}

}