/*----------------------------------
  SECTION TITLE 
  -----------------------------------*/
.maha-home-contact-wrap .section-title-wrap {
  position: relative;
  margin-bottom: 40px;
}

.maha-home-contact-wrap .section-title-wrap .section-title {
  display: inline-block;
  position: relative;
  margin: 5px 0 40px;
  text-transform: capitalize;
  line-height: 1.4;
  font-size: calc(1.525rem + 3.3vw);
}

.maha-home-contact-wrap .section-title-wrap p {
  font-family: var(--font-family);
}

@media (min-width: 1200px) {
  .maha-home-contact-wrap .section-title-wrap .section-title {
    font-size: 2rem;
  }
}

.maha-home-contact-wrap .section-title-wrap .section-title::before,
.maha-home-contact-wrap .section-title-wrap .section-title::after {
  /*content: "";*/
  /*position: absolute;*/
  /*bottom: -10px;*/
  /*width: 20px;*/
  /*height: 8px;*/
  /*border-radius: 4px;*/
  /*background-clip: padding-box;*/
  /* stops bg color from leaking outside the border: */
  /*background-color: var(--color-primary);*/
  /*-webkit-animation: animate 6s linear infinite;*/
  /*animation: animate 6s linear infinite;*/
}

.maha-home-contact-wrap .section-title-wrap .section-title::before {
  right: 50%;
  margin-right: 4px;
}

.maha-home-contact-wrap .section-title-wrap .section-title::after {
  left: 50%;
  margin-left: 4px;
}

.maha-home-contact-wrap .section-title-wrap p {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 1200px;
}

@-webkit-keyframes animate {
  0% {
    width: 20px;
  }

  25% {
    width: 50px;
  }

  50% {
    width: 50px;
  }

  75% {
    width: 100px;
  }

  100% {
    width: 100px;
  }
}

@keyframes animate {
  0% {
    width: 20px;
  }

  25% {
    width: 50px;
  }

  50% {
    width: 50px;
  }

  75% {
    width: 100px;
  }

  100% {
    width: 100px;
  }
}

/*-------------------------------
  BUTTON
  --------------------------------*/
.maha-home-contact-wrap .button-wrapper {
  position: relative;
  padding: 1.5rem 0;
  -webkit-filter: url("#goo");
  filter: url("#goo");
}

.maha-home-contact-wrap .button {
  display: inline-block;
  position: relative;
  min-width: 8.23em;
  min-width: 200px;
  font-family: var(--title-font-family);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--title-text-color);
  border-radius: 4px;
  background-clip: padding-box;
  padding: 1.03em 1.32em;
  line-height: 1;
  background: var(--color-second);
  color: #fff;
}

.maha-home-contact-wrap .button:hover {
  /*color: var(--color-second);*/
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(138, 43, 226, 0); }
  100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}
.maha-home-contact-wrap .button:before,
.maha-home-contact-wrap .button:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4.4em;
  height: 2.95em;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  z-index: -1;
  background: var(--color-primary);
}

.maha-home-contact-wrap .button:before {
  top: -25%;
  left: 20%;
}

.maha-home-contact-wrap .button:after {
  bottom: -25%;
  right: 20%;
}

.maha-home-contact-wrap .button:hover:before,
.maha-home-contact-wrap .button:hover:after {
  -webkit-transform: none;
  transform: none;
}

/*-----------------------------
  CONTACT SECTION
  ------------------------------*/
.maha-home-contact-wrap {
  position: relative;
  background-size: auto;
  background-size: cover;
  padding: 120px 0;
}

@media (min-width: 1200px) {
  .maha-home-contact-wrap {
    padding: 100px 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .maha-home-contact-wrap {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .maha-home-contact-wrap {
    padding: 50px 0;
  }
}


.maha-home-contact-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  filter: alpha(opacity=85);
  background-color:#000000;
  z-index: 0;
}

.maha-home-contact-wrap .row>* {
  z-index: 1;
}

.maha-home-contact-wrap .section-title-wrap .section-title-text,
.maha-home-contact-wrap .section-title-wrap p,
.maha-home-contact-wrap h5 {
  color: #fff;
}