@charset "UTF-8";

#sub.mailform #keyvisual .s-img {
  background-image: url('../img/contact/keyvisual_img.jpg');
}

#contacts {
  padding: 0 0 40px;
}

#contacts > .intro {
  text-align: center;
  margin-bottom: 30px;
}

#contacts > .cont-blc {
  display: flex;
  justify-content: space-around;
}

#contacts > .cont-blc > div {
  position: relative;
  text-align: center;
  padding-left: 45px;
}

#contacts > .cont-blc > div:nth-child(1)::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
	width: 30px;
	height: 40px;
	content: '';
	background: url('../img/common/tel.png') no-repeat left center;
	background-size: contain;
	padding-right: 5px;
	transform: translateY(8px);
}

#contacts > .cont-blc > div:nth-child(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
	width: 30px;
	height: 40px;
  font-family: "Font Awesome 5 Free";
	content: '\f1ac';
  font-weight: 900;
	font-size: 220%;
  color: rgba(26, 91, 39, 1);
  transform: translateY(-20%);
}


#contacts > .cont-blc > div > .ment {
  text-align: left;
  line-height: 1;
  font-size: 90%;
}

#contacts > .cont-blc > div > .num {
  text-decoration: none;
  text-align: left;
  line-height: 1.2;
  letter-spacing: .8px;
  font-size: 200%;
}

@media screen and (max-width: 1000px) {
  #contacts > .cont-blc > div:nth-child(2)::after {
    font-size: 250%;
  }
}

@media screen and (max-width: 767px) {
  #contacts {
    padding: 20px 0;
  }
  #contacts > .cont-blc > div::before {
    top: -7px;
  }
  #contacts > .cont-blc > div:nth-child(2)::after {
    font-size: 270%;
  }
  
}

@media screen and (max-width: 480px) {
  #contacts > .cont-blc {
    justify-content: center;
    flex-direction: column;
  }  
  #contacts > .cont-blc > div {
    margin-bottom: 30px;
  }
  #contacts > .cont-blc > div::before {
    top: 0;
    transform: translateY(0);
  }
}


#form {
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  #form {
    padding: 20px 0;
  }
}