.wrap-contact {
  margin-top: 100px;
}

.contact-information {
  position: relative;
  text-align: center;
  line-height: 2rem;
  padding: 35px 0 0 0;
  color: #000;
  border: 2px solid #f1f1f1;
  border-radius: 5px;
  min-height: 140px;
  margin-bottom: 60px;
  box-shadow: 0 2px 0px 0px #f1f1f1;
}

.people_connect { 
	margin-bottom:50px;
}

.contact-information a, .people_connect a {
	color: #5388C3;
	transition: all 0.4s ease;
}

.contact-information a:hover, .people_connect a:hover {
  color: #89B4E5;
}
/*
.contact-information:hover .contact-icon-phone, .contact-information:hover .contact-icon-mail, .contact-information:hover .contact-icon-add {
  transform: scale(0.9);
  background-color: #efcd45;
}
*/

.contact-icon-phone {
  position: absolute;
  left: calc(50% - 35px);
  top: -35px;
  width: 70px;
  height: 70px;
  background-color: #ffdc51;
  border-radius: 50%;
  transition: all 0.5s;
}
.contact-icon-phone:before {
  position: absolute;
  top: 28%;
  left: 28%;
  content: "";
  width: 30px;
  height: 30px;
  background: url(icons/icon-phone-2.svg) no-repeat;
}

.contact-icon-mail {
  position: absolute;
  left: calc(50% - 35px);
  top: -35px;
  width: 70px;
  height: 70px;
  background-color: #ffdc51;
  border-radius: 50%;
  transition: all 0.5s;
}
.contact-icon-mail:before {
  position: absolute;
  top: 28%;
  left: 29%;
  content: "";
  width: 30px;
  height: 30px;
  background: url(icons/icon-mail-2.svg) no-repeat;
}

.contact-icon-add {
  position: absolute;
  left: calc(50% - 35px);
  top: -35px;
  width: 70px;
  height: 70px;
  background-color: #ffdc51;
  border-radius: 50%;
  transition: all 0.5s;
}
.contact-icon-add:before {
  position: absolute;
  top: 28%;
  left: 29%;
  content: "";
  width: 30px;
  height: 30px;
  background: url(icons/icon-map.svg) no-repeat;
}

.contact-main {
  display: flex;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .contact-main {
    flex-direction: column;
  }
}

.contact-pic {
  background: url(../images/contact-pic.jpg) no-repeat;
  background-size: cover;
  width: 35%;
  height: auto;
}
@media (max-width: 768px) {
  .contact-pic {
    width: 100%;
  }
}

.contact-form {
  width: 65%;
  padding: 20px 10px 20px 10px;
  background: #e7e7e7;
}
@media (max-width: 768px) {
  .contact-form {
    width: 100%;
  }
}
.contact-form input, .contact-form option, .contact-form select, .contact-form textarea {
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #c7c7c7;
}
.contact-form select, .contact-form input, .contact-form option, .contact-form textarea, .contact-form input[type=radio] + label, .contact-form input[type=checkbox] + label {
  transition: all 0.5s;
  box-sizing: border-box;
  outline: none;
}
.contact-form ul {
  margin: 2% auto;
  padding-left: 0;
  width: 96%;
}
.contact-form ul li {
  display: inline-block;
  width: 48%;
  margin: 15px 10px 15px 0px;
}
@media (max-width: 920px) {
  .contact-form ul li {
    width: 100%;
  }
}
.contact-form ul li input {
  padding: 0 10px;
  width: 100%;
  height: 40px;
  line-height: 40px;
}
.contact-form ul li input::placeholder, .contact-form ul li textarea::placeholder {
  color: #7c7c7c;
}
.contact-form ul li select {
  color: #7c7c7c;  
  padding: 0 0 0 5px;
  width: 100%;
  height: 40px;
  line-height: 40px;
}
.contact-form ul li select:focus option {
  color: #666;
}
.contact-form ul li option {
  padding: 5px 10px;
}
.contact-form ul li textarea {
  padding: 5px 10px;
  width: 100%;
  height: 100px;
  line-height: 20px;
}
.contact-form ul li input:focus, .contact-form ul li textarea:focus {
  background: rgb(239 205 69 / 18%);
  color: #000;
}
.contact-form ul li input:focus::placeholder, .contact-form ul li textarea:focus::placeholder {
  color: #000;
}
.contact-form ul li.width-full {
  display: block;
  width: 100%;
  margin-right: 0px !important;
}
.contact-form ul li.width-2 {
  width: 20%;
}
@media (max-width: 920px) {
  .contact-form ul li.width-2 {
    width: 100%;
  }
}
.contact-form ul li.contact-msg {
  display: block;
  width: 100%;
}
.contact-form ul.contact-btn li {
  display: flex;
  max-width: 70%;
}
@media (max-width: 600px) {
  .contact-form ul.contact-btn li {
    max-width: 100%;
  }
}
.contact-form .contact-send {
  padding: 5px 0;
  margin-left: 20px;
  height: auto !important;
  color: #fff;
  border-radius: 7px;
  background-color: #255C99;
  border: solid 1px white;
}
.contact-form .contact-send:hover {
  background-color: #89B4E5;
}
.contact-form .contact-clean {
  padding: 5px 0;
  height: auto !important;
  color: #707070;
  border-radius: 7px;
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.contact-form .contact-clean:hover {
  color: #fff;
  background-color: #89B4E5;
}