.contactPage {
  .contactSec_1 {
    .bookFormInner {
      padding: 50px;
      background-color: #fff;
      border-radius: 30px;
      box-shadow: 0 0 10px 0px #00000054;

      h2 {
        font-size: 30px;
        color: #077745;
        margin-bottom: 20px;
      }

      .frmWrap {
        &.btnWrap {
          .subBtn {
            z-index: 2;
          }
        }
      }
    }
  }

  .contactText {
    h2 {
      font-size: 30px;
      color: #077745;
      margin-bottom: 10px;
    }

    .contactBox {
      padding: 20px;
      border-radius: 20px;
      background-color: #fff;
      margin-bottom: 20px;
      display: flex;

      .contactInfoIcon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--orange-color);
      }

      .contactInfoTxt {
        width: calc(100% - 60px);
        padding-left: 20px;

        h4 {
          font-size: 20px;
          color: var(--orange-color);
        }

        a {
          color: #000;
          font-weight: 600;
        }
      }

      .numberWrap {
        margin-bottom: 20px;

        ul {
          display: flex;

          li {
            width: 50%;

            p {
              margin-bottom: 5px;
            }

            &:not(:last-child) {
              border-right: 1px solid #ccc;
            }

            &:last-child {
              padding-left: 30px;
            }
          }
        }
      }
    }
  }

}

@media (max-width: 1440px) {
  .contactPage {
    .contactSec_1 {
      .bookFormInner {
        padding: 30px;

        h2 {
          font-size: 25px;
        }

        .frmWrap {
          .inputTxt {
            height: 40px;
            line-height: 25px;

            &.textArea {
              height: 70px;
            }
          }
        }
      }
    }

    .contactText {
      h2 {
        font-size: 25px;
      }

      .contactBox {
        .contactInfoTxt {
          h4 {
            font-size: 17px;
          }
        }

        .contactInfoIcon {
          width: 50px;
          height: 50px;
        }
      }
    }
  }
}

@media (max-width: 1280px) {
  .contactPage {
    .contactText {
      h2 {
        font-size: 22px;
      }

      .contactBox {
        padding: 14px;
        .contactInfoIcon {
          width: 45px;
          height: 45px;
        }

        .contactInfoTxt {
          h4 {
            font-size: 16px;
          }
        }
      }
    }
  }
}

@media(max-width: 991px) {
  .contactPage {
    overflow: hidden;
  }

}

@media(max-width: 768px) {
  .contactText {
    margin-bottom: 45px;

    & .contactBox {
      & .numberWrap {
        ul {
          display: flex;
          flex-wrap: wrap;
        }
      }
    }
  }

  .contactPage {
    .bookFormInner {
      padding: 20px;
    }

    & .contactText {
      & .contactBox {
        & .numberWrap {
          & ul {
            flex-wrap: wrap;

            li {
              width: 100%;

              &:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid #ccc;
                padding-bottom: 10px;
                margin-bottom: 5px;
              }

              &:last-child {
                padding-left: 0px;
              }
            }
          }
        }
      }
    }

    & .contactText {

      h2,
      p {
        text-align: center;
      }

      & .contactBox {
        text-align: left;
        flex-wrap: wrap;

        .numberWrap {
          margin-bottom: 0;
        }

        .contactInfoTxt {
          width: 100%;
          padding-left: 0px;
          padding-top: 10px;
        }

        p {
          text-align: left;

          br {
            display: none;
          }
        }
      }
    }

    & .bookFormInner {
      h2 {
        text-align: center;
      }
    }
  }

  .p_40 {
    padding: 15px;
  }

  .contactSec_1 {
    .btnWrap {
      & .btnMain {
        &.btnOne {
          span {
            font-size: 14px;
            padding: 5px 22px;
            padding-right: 22px;
            background: var(--orange-color);
          }
        }
      }
    }
  }
}

@media(max-width: 575px) {
  .contactPage {
    & .contactText {
      h2 {
        font-size: 20px;
      }
    }
  }
}