.contacts .container {
  position: relative;
  z-index: 10;
  background-color: transparent;
  background-image: linear-gradient(200deg,#065C9C 0%,#045088 100%);
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.3);
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  margin-top: -75px;
}
.contacts .container h2,
.contacts .container .h2{
  color: #FFF;
  font-size: 28px;
  font-family: "Inter",Sans-serif;
  font-weight: 600;
  width: 100%;
  text-align: center;
  grid-column: 1 / 3;
  margin-bottom: 20px;
}
.contacts .container .col {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: transparent;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,.5);
  border-radius: 10px;
  align-items: center;
  position: relative;
}
.contacts .container .col::before {
  content: "";
  margin-top: -20px;
  background-image: url(https://rvd-rukava.ru/wp-content/uploads/2020/07/back-tube.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 320px;
  border-radius: 10px;
  z-index: 0;
  filter: brightness(0.3) sepia(1) hue-rotate(156deg) saturate(5);
}
.contacts .container .col::after {
  content: "";
  margin-top: -20px;
  background-color: #045088;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 320px;
  z-index: 1;
  border-radius: 10px;
  filter: opacity(0.6);
}
.contacts .container .col .name{
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 0px 0;
  font-family: "Inter",Sans-serif;
  filter: none;
}
.contacts .container .col .value{
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size: 28px;
  font-weight: 300;
  font-family: "Inter",Sans-serif;
  filter: none;
}
.contacts .container .buttons_wrapper {
  text-align: center;
  grid-column: 1 / 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0 0;
  gap: 10px;
}

.contacts .container .buttons_wrapper .button_item{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #29A71A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.contacts .container .buttons_wrapper .button_item:hover{
  transform: scale(0.85);
}
.contacts .container .buttons_wrapper .button_item::after{
  content: "\f409";
  transform: none;
  color: #fff;
  font-family: "FontAwesome5Brands";
  font-size: 25px;
  font-weight: 900;
}
.contacts .container .buttons_wrapper .button_item:last-child{
  background-color: #2ca5e0;
}
.contacts .container .buttons_wrapper .button_item:last-child::after{
  content: "\f2c6";
}
