/* contact form */
.mb-5 {
  margin-bottom: 20px;
}

.form-wrapper {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  background: white;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  color: #AE4F7F;
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid rgba(220, 219, 221, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
  background: #fff;
  font-size: 16px;
  outline: none;
  resize: none;
  font-weight: 400;
  line-height: 20px;
  color: #8E8D8D;
}

::placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.form-input:focus {
  border-color: #AE4F7F;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.btn {
  display: block;
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #AE4F7F;
  color: white;
  cursor: pointer;
}

.btn:hover {
  background: #652b48;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}
.w-full {
  width: 100%;
}
/* /contact form */


/* social section */
.social-section {
  background: rgba(250, 250, 250, 1);
  padding: 1.5rem 0;
}

.social-link {
  margin: 40px auto;
}

.social-link .card-content {
  flex-direction: row;
  padding: 0;
  text-align: left;
}

.social-link .icon-wrapper {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  align-items: center;
  text-align: center;
  background: transparent;
  border: 2px solid #AE4F7F;
  margin-bottom: 0;
}

.social-link .icon-wrapper:hover {
  border: 2px solid #652b48;
  cursor: pointer;
}

.social-link .card-icon {
  width: 20px;
  height: 20px;
}

.social-link .social-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  margin-left: .5rem;
}

.social-link h2.social-name {
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;  
  color: #AE4F7F;
}

.social-link {
  color: #AE4F7F;
}

.social-link h1.company {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: #AE4F7F;
}

.social-link h2.social-name:hover,
.social-link h1.company:hover {
  color: #652b48;
  cursor: pointer;
}

.social-link .card-row {
  display: flex;
}
/* /social section */

.contact-section .contain-wrapper {
  display: flex;    
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
}

.contact-section .call-to-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;  
  width: 100%;
  align-items: flex-start;
}

.contact-section .call-to-action h1.title {
  font-weight: 600;
  font-size: 32.286px;
  line-height: 34px;
  color: #AE4F7F;
  margin: 2rem 0;
}


@media all and (max-width:800px) {
  .contact-section iframe {
    width: 100%;
  }
  
  .img-wrapper.right-side {
    width: 100%;
  }

}


@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}


@media all and (max-width:460px) { 
  .contain-wrapper,
  .card-row {
    flex-direction: column-reverse;
  }

  .card-content {
    margin-bottom: 20px;
  }
}