/** Customizations **/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --blue: #102fff;
    --white: #ffffff;
    --black: #17171d;
    --border-grey-color: #00000026;
  }

.rotate{
    animation: rotating 10s linear infinite;
}

@keyframes rotating {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
}

.btn-pulse-container{
    position: relative;
    display: block;
}

.bg-pulse,
.button-pulse {
  position: absolute;
  height: 35px;
  width: 120px;
  padding: 2px 12px;
  margin-top: 5px;
  border-radius: 40px;
  margin-right: 10px;
}

.bg-pulse {
  animation: pulse 1.2s ease infinite;
  background: #01004e;
}

.button-pulse {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 99;
  border: none;
  background: #01004e;
  background-size: 18px;
  cursor: pointer;
  outline: none;
}

.button-pulse a {
  position: absolute;
  color: #FFF !important;
  font-size: 17px;
}

.bg-pulse a:hover, .bg-pulse a:focus{
    color: #fff !important;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.wpcf7-form label{
    width: 100%;
    font-weight: bold;
    color: #989898;
}

.wpcf7-form input {
    border-left: 0 !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
}

.wpcf7-form textarea{
    margin-top: 10px;
}

.wpcf7-form input, .wpcf7-form textarea{
    outline: none;
}

.wpcf7-submit{
    border: none !important;
    background: #01004e !important;
    color: #fff !important;
    width: 100% !important;
}