.content {
  padding: 50px 0;
  overflow: hidden;
}
.content .row1 {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
.content .row1 .l {
  width: 50%;
  padding: 50px;
  background: #f2f2f2;
  color: #684682;
}
.content .row1 .l h3 {
  margin: 20px 0;
}
.content .row1 .l a {
  display: inline-block;
  background: #ffdd59;
  border-radius: 17px;
  color: #684682;
  border: 5px solid #684682;
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.content .row1 .r {
  width: 50%;
  background: #66d7de;
  padding: 50px;
  text-align: center;
}
.content .row1 .r img {
  height: 180px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
.content .row1 p {
  font-size: 14px;
  color: #306a6c;
}
.content .row1 a {
  font-size: 14px;
  text-decoration: underline;
}
.content .row2 {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 5px solid #684682;
}
.content .row2 h3 {
  text-align: center;
  font-size: 28px;
  color: #684682;
  font-weight: 400;
}
.content .row2 .form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
}
.content .row2 .form-info {
  margin-bottom: 15px;
}
.content .row2 .form-info p {
  margin: 0 0 5px;
  font-weight: bold;
  color: #595d64;
}
.content .row2 .form-info input,
.content .row2 .form-info textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.content .row2 button {
  width: 100%;
  padding: 10px;
  background-color: #1c2f3a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.content .row2 button:hover {
  background-color: #3c40c6;
}
.content .row3 {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.content .row3 .info {
  width: 32%;
  background: #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin: 0 10px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.content .row3 .info .address {
  width: 50px;
  height: 50px;
  background: #684682;
  border-radius: 50%;
  padding: 10px;
  margin-right: 30px;
  transition: 0.2s;
}
.content .row3 .info .address img {
  width: 100%;
}
.content .row3 .info .text h5 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
}
.content .row3 .info .text p {
  font-size: 14px;
  line-height: 2;
}
.content .row3 .info:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
.content .row3 .info:hover .address {
  background: #91c3ba;
}
@media screen and (max-width: 980px) {
  .content .row1 {
    flex-wrap: wrap;
  }
  .content .row1 .l {
    width: 100%;
  }
  .content .row1 .r {
    width: 100%;
  }
  .content .row2 .form {
    width: 100%;
  }
}

.row9 {
  margin: 50px auto;
}
.row9 .list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.row9 .info {
  width: 24%;
  background: #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.row9 .info .address {
  width: 50px;
  height: auto;
  background: #684682;
  border-radius: 50%;
  padding: 10px;
  margin-right: 30px;
  transition: 0.2s;
}
.row9 .info .address img {
  width: 100%;
}
.row9 .info .text h5 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.row9 .info .text p {
  font-size: 14px;
  line-height: 2;
}
.row9 .info:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
.row9 .info:hover .address {
  background: #91c3ba;
}
@media screen and (max-width: 980px) {
  .content .row9 .list {
  flex-wrap: wrap;
  }
  .content .row9 .info {
  margin-top: 20px;
  width: 49%;
  display: block;
  }
    
    
}
@media screen and (max-width: 500px) {
  .row9 .info .address {
  transition: 0.2s;
  }  
}