/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* Primary Button */

.hero-slider__button.button--primary a {
  display: flex !important :
}

/* Primary Button */
.custom-button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 100px;
    background: #1D65A1;
    width: 252px;
    height: 52px;
    color: #fff;
    font-family: Anton, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    padding-left: 20px; /* Padding to position text */
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 4px;
  
    text-decoration: none;
    transition: transform 0.5s ease
}

.button__interior {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Makes sure interior takes full button width */
}

.button__text {
    margin-right: auto; /* Pushes the text to the left */
}

.button__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 15px; /* Space between text and icons */
    transition: transform 0.5s ease, stroke 0.3s ease; /* Smooth rotation and stroke change */

}

.button__icon-circle {
    display: inline-block;
    transition: transform 0.5s ease, stroke 0.3s ease; /* Smooth rotation and stroke change */

}

.button__icon-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;  /* Smooth movement and scaling */
}
.custom-button--primary:hover {
   color: #fff;
   transform: scale(1.05);
  
/*    border: 1px solid white; */
/*    background: #5bb2f7; */
}
/* Hover effects specifically for icons */
.custom-button--primary:hover .button__icons {
    transform: translateX(8px) scale(1.005); /* Move arrow along X-axis and scale up */
}

.custom-button--primary.button--reverse:hover .button__icons{
      transform: translateX(-8px) scale(1.005); /* Move arrow along X-axis and scale up */
}

.button-icons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-icon {
    display: flex;
}

.arrow-icon {
   position: absolute;
   top:50%;
   left:50%;
   transform: translate(-50%, -50%);
}
/* Simple Button */

.custom-button--primary.button--simple {
    background-color: transparent; /* Make the background transparent */
    color: #fff; /* Example: keep the text white */
    border: 1px solid #fff; /* Add a visible border to differentiate */
}

/* .button.button--simple {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 !important;
  position: relative;
} */

/* .button.button--simple:after {
  left: 0;
  position: absolute;
  width: 100%;
} */

/* .button.button--simple:hover,
.button.button--simple:focus {
  background-color: transparent;
  border: none;
}
 */
/* .button.button--simple:active {
  background-color: transparent;
  border: none;
} */

/* Button Icons */

.button .button__icon svg {
  display: block;
  fill: inherit;
  height: 1.25rem;
  margin-right: 1rem;
}

.button.button--icon-right .button__icon {
  order: 1;
}

.button.button--icon-right .button__icon svg {
  margin-left: 1rem;
  margin-right: 0;
}