/*===========================
     CONTACT css
     (Avatto - added section)
===========================*/
.contact-area {
  position: relative;
  z-index: 5;
  background-color: #F8FAFC;
  overflow: hidden; }
  .contact-area .contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    z-index: -1; }
    .contact-area .contact-shape.shape-1 {
      background: -webkit-linear-gradient(#fe8464 0%, #fe6e9a 100%);
      background: linear-gradient(#fe8464 0%, #fe6e9a 100%);
      width: 60px;
      height: 60px;
      left: 40px;
      top: 90px;
      -webkit-animation: animation1 2s linear infinite;
      animation: animation1 2s linear infinite; }
    .contact-area .contact-shape.shape-2 {
      background: -webkit-linear-gradient(#33c8c1 0%, #119bd2 100%);
      background: linear-gradient(#33c8c1 0%, #119bd2 100%);
      width: 26px;
      height: 26px;
      right: 8%;
      top: 60px;
      -webkit-animation: animation1 2s linear infinite;
      animation: animation1 2s linear infinite; }
    .contact-area .contact-shape.shape-3 {
      background: -webkit-linear-gradient(#361cc1 0%, #2e82ef 100%);
      background: linear-gradient(#361cc1 0%, #2e82ef 100%);
      width: 18px;
      height: 18px;
      right: 22%;
      bottom: 80px;
      -webkit-animation: animation1 2s linear infinite;
      animation: animation1 2s linear infinite; }
  @media (max-width: 767px) {
    .contact-area .contact-shape {
      display: none; } }

/*===== Contact form wrapper =====*/
.contact-form-wrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(56, 66, 77, 0.08);
  box-shadow: 0px 10px 40px 0px rgba(56, 66, 77, 0.08); }
  @media (max-width: 767px) {
    .contact-form-wrapper {
      padding: 30px 20px; } }
  .contact-form-wrapper .form-title {
    font-size: 24px;
    font-weight: 600;
    color: #38424D;
    margin-bottom: 8px; }
  .contact-form-wrapper .form-subtitle {
    font-size: 15px;
    color: #747E88;
    margin-bottom: 25px; }

.single-form {
  margin-top: 20px; }
  .single-form label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #38424D;
    margin-bottom: 8px; }
    .single-form label span {
      color: #fe6e9a; }
  .single-form input,
  .single-form textarea {
    width: 100%;
    height: 55px;
    border: 1px solid #E6EAEF;
    background-color: #FBFCFD;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 15px;
    color: #38424D;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .single-form textarea {
    height: 140px;
    resize: none;
    padding: 16px 20px;
    line-height: 1.6; }
  .single-form input::-webkit-input-placeholder,
  .single-form textarea::-webkit-input-placeholder {
    color: #A3ACB5; }
  .single-form input::-moz-placeholder,
  .single-form textarea::-moz-placeholder {
    color: #A3ACB5; }
  .single-form input:focus,
  .single-form textarea:focus {
    outline: none;
    border-color: #0898E7;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 15px 0px rgba(8, 152, 231, 0.12);
    box-shadow: 0px 4px 15px 0px rgba(8, 152, 231, 0.12); }
  .single-form input.is-invalid,
  .single-form textarea.is-invalid {
    border-color: #fe6e9a; }

.contact-form .main-btn {
  width: 100%;
  border: none; }
.contact-form .main-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed; }

.form-message {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 5px;
  font-size: 15px; }
  .form-message.success {
    display: block;
    background-color: rgba(51, 200, 193, 0.12);
    color: #1B9A94; }
  .form-message.error {
    display: block;
    background-color: rgba(254, 110, 154, 0.12);
    color: #E24A78; }

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0; }

/*===== Contact info cards =====*/
.contact-info-wrapper {
  padding-left: 15px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info-wrapper {
      padding-left: 0; } }
  @media (max-width: 767px) {
    .contact-info-wrapper {
      padding-left: 0; } }

.single-contact-info {
  background-color: #fff;
  border-radius: 10px;
  padding: 28px 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 6px 30px 0px rgba(56, 66, 77, 0.06);
  box-shadow: 0px 6px 30px 0px rgba(56, 66, 77, 0.06);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .single-contact-info:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0px 12px 40px 0px rgba(56, 66, 77, 0.12);
    box-shadow: 0px 12px 40px 0px rgba(56, 66, 77, 0.12); }
  .single-contact-info .contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    margin-right: 20px; }
    .single-contact-info .contact-icon i {
      font-size: 22px;
      color: #fff;
      line-height: 55px; }
  .single-contact-info.info-color-1 .contact-icon {
    background: -webkit-linear-gradient(#fe8464 0%, #fe6e9a 100%);
    background: linear-gradient(#fe8464 0%, #fe6e9a 100%);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(254, 110, 154, 0.35);
    box-shadow: 0px 4px 12px 0px rgba(254, 110, 154, 0.35); }
  .single-contact-info.info-color-2 .contact-icon {
    background: -webkit-linear-gradient(#33c8c1 0%, #119bd2 100%);
    background: linear-gradient(#33c8c1 0%, #119bd2 100%);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(17, 155, 210, 0.35);
    box-shadow: 0px 4px 12px 0px rgba(17, 155, 210, 0.35); }
  .single-contact-info.info-color-3 .contact-icon {
    background: -webkit-linear-gradient(#361cc1 0%, #2e82ef 100%);
    background: linear-gradient(#361cc1 0%, #2e82ef 100%);
    -webkit-box-shadow: 0px 4px 12px 0px rgba(46, 130, 239, 0.35);
    box-shadow: 0px 4px 12px 0px rgba(46, 130, 239, 0.35); }
  .single-contact-info .contact-info-content .info-title {
    font-size: 18px;
    font-weight: 600;
    color: #38424D;
    margin-bottom: 8px; }
  .single-contact-info .contact-info-content .text {
    font-size: 15px;
    line-height: 26px;
    color: #747E88;
    margin: 0; }
  .single-contact-info .contact-info-content a {
    color: #747E88;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: inline-block; }
    .single-contact-info .contact-info-content a:hover {
      color: #0898E7; }
  .single-contact-info .contact-info-content .phone-list a {
    display: block;
    line-height: 30px; }
  .single-contact-info .contact-info-content .map-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0898E7; }
    .single-contact-info .contact-info-content .map-link i {
      font-size: 13px;
      margin-left: 4px; }

/*===== Map =====*/
.contact-map-wrapper {
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(56, 66, 77, 0.10);
  box-shadow: 0px 10px 40px 0px rgba(56, 66, 77, 0.10);
  line-height: 0; }
  .contact-map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block; }
  @media (max-width: 767px) {
    .contact-map-wrapper iframe {
      height: 300px; } }
