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

.maha-site-footer .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);
  background: #fff;
  border-radius: 1em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  padding: 1.03em 1.32em;
  line-height: 1;
}
.maha-site-footer .button:before,
.maha-site-footer .button:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4.4em;
  height: 2.95em;
  background: #fff;
  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;
}

.maha-site-footer .button-yellow {
  background: var(--color-primary);
  color: #fff;
}
.maha-site-footer .button-yellow:before,
.maha-site-footer .button-yellow:after {
  background: var(--color-primary);
}

.maha-site-footer .button:before {
  top: -25%;
  left: 20%;
}

.maha-site-footer .button:after {
  bottom: -25%;
  right: 20%;
}

.maha-site-footer .button:hover:before,
.maha-site-footer .button:hover:after {
  -webkit-transform: none;
  transform: none;
}

.maha-site-footer .loading-button .drops {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: url("#liquid");
  filter: url("#liquid");
  -webkit-animation: fade-in 0.1s linear 0.4s forwards;
  animation: fade-in 0.1s linear 0.4s forwards;
}
.maha-site-footer .loading-button .drop1,
.maha-site-footer .loading-button .drop2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 21px;
  height: 24px;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  background-color: var(--color-primary);
}
.maha-site-footer .loading-button .drop1 {
  width: 90px;
  height: 16px;
  bottom: 2px;
  border-radius: 0;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.maha-site-footer .loading-button .drop2 {
  -webkit-animation: drop 1.3s cubic-bezier(1, 0.19, 0.66, 0.12) 0.5s infinite;
  animation: drop 1.3s cubic-bezier(1, 0.19, 0.66, 0.12) 0.5s infinite;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@-webkit-keyframes drop {
  0% {
    bottom: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  80% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    bottom: -200px;
  }
}
@keyframes drop {
  0% {
    bottom: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  80% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    bottom: -200px;
  }
}
/*-------------------------------
  FOOTER
  --------------------------------*/
.maha-site-footer {
  position: relative;
  background-color: #18212e;
}
.maha-site-footer .footer-top {
  padding-bottom: 30px;
  padding-top: 120px;
}
.maha-site-footer .footer-top .footer-address {
  display: inline-block;
  padding-left: 0;
  margin-top: 20px;
}
.maha-site-footer .footer-top .footer-address li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  color: #9c9c9c;
  font-size: 22px;
  border-right: 1px solid #7e7e80;
}
.maha-site-footer .footer-top .footer-address li:last-child {
  border-right: 0;
}
.maha-site-footer .footer-top .button-block {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 90px;
}
@media only screen and (min-width: 992px) {
  .maha-site-footer .footer-top .button-block {
    padding-top: 0;
  }
}
.maha-site-footer .footer-top .button-block .btn-tagline {
  position: absolute;
  top: 30px;
  right: 35%;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  .maha-site-footer .footer-top .button-block .btn-tagline {
    top: -70px;
    right: 10px;
  }
}
.maha-site-footer .footer-top .button-block .btn-tagline img {
  position: absolute;
  right: 0;
  margin-top: 20px;
  font-size: 27px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
  -webkit-animation: btnIconMove 2s linear infinite;
  animation: btnIconMove 2s linear infinite;
}
.maha-site-footer .footer-bottom {
  padding-bottom: 100px;
}
.maha-site-footer .footer-bottom .container {
  padding-top: 20px;
  border-top: 2px solid var(--text-color);
}
.maha-site-footer .footer-bottom .social li {
  display: inline-block;
  margin-bottom: 10px;
}
.maha-site-footer .footer-bottom .social li a {
  display: block;
  position: relative;
  height: 42px;
  width: 42px;
  margin-right: 7px;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.maha-site-footer .footer-bottom .social li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}
.maha-site-footer .footer-bottom .social li a .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 100%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.maha-site-footer .footer-bottom .social li a:hover {
  border-color: transparent;
}
.maha-site-footer .footer-bottom .social li a:hover .bg,
.maha-site-footer .footer-bottom .social li a:focus .bg {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: var(--color-second);
}
.maha-site-footer .footer-bottom .copyright {
  display: inline-block;
  color: #9c9c9c;
  font-size: 18px;
}

.footer-bg {
  background: #17262d url(./pics/footer-bg.jpeg) center center no-repeat fixed;
  background-color: rgb(23, 38, 45);
  background-size: auto;
  background-size: cover;
}

@-webkit-keyframes btnIconMove {
  0% {
    -webkit-transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
    transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
  }
  50% {
    -webkit-transform: rotateX(20deg) scale(1, -1) translate(10px, 0px);
    transform: rotateX(20deg) scale(1, -1) translate(10px, 0px);
  }
  100% {
    -webkit-transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
    transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
  }
}

@keyframes btnIconMove {
  0% {
    -webkit-transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
    transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
  }
  50% {
    -webkit-transform: rotateX(20deg) scale(1, -1) translate(10px, 0px);
    transform: rotateX(20deg) scale(1, -1) translate(10px, 0px);
  }
  100% {
    -webkit-transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
    transform: rotateX(20deg) scale(1, -1) translate(3px, 0px);
  }
}

@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }
}

@media (min-width: 992px) {
  .text-lg-end {
    text-align: right !important;
  }
}
