.contact-section {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 100px;
  position: relative;
  overflow: hidden;
  max-width: 1240px;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon img {
  width: 80px;
  border-radius: 10px;
}

.contact-text h3 {
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
}

.contact-link a {
  display: flex;
  background: white;
  color: black;
  border-radius: 50%;
  width: 46px;
  text-decoration: none;
  height: 46px;
  justify-content: center;
  align-items: center;
}

.contact-text {
  /* width: 100%; */
  flex: 1;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
}  

.contact-text p{
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 767.96px) {
  section.contact-section {
      padding: 80px 24px;
  }
  
  .contact-content {
      display: block;
      float: left;
  }
  
  .contact-text {
      margin: 15px 0;
  }
  
  .contact-link a {
      float: right;
  }
}