
.primary {
  color: var(--primary-color) !important;
}
.heading-highlighted {
color: var(--black);
    text-transform: uppercase;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: normal;
    background-image: var(  --gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 0;
    
}
.text-highlighted {
color: var(--black);
    text-transform: capitalize;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: normal;
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 0;
    
    
}

.parallax {
   background-attachment: fixed!important;
}
.gradient-bg {
    background: var(--gradient-primary)!important;
}
.bg-textured{
    background: url(../images/backgounds/bg-overlay.png);
}
.hr{
    display: block;
    height: 7px;
    width: 150px;
    background: var(--primary-color);
    border-radius: 5px;
}
.button-outline {
  position: relative;
  display: inline-block;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.button-outline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 25px;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.button-outline:hover::before {
  width: 200%;
  height: 500%;
}

.button-outline:hover {
  color: var(--secondary-color);
}

.button-outline:hover i {
  transform: translateX(5px);
  transition: transform 0.4s ease;
}


.button-outline-light {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.button-outline-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #ffffff;;
  border-radius: 10px;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.button-outline-light:hover::before {
  width: 200%;
  height: 500%;
}

.button-outline-light:hover {
  color:var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button-outline-light:hover i {
  transform: translateX(5px);
  transition: transform 0.4s ease;
}
