@charset "utf-8";
/* CSS Document */

/*************************************** bouton 1 */

.animated-button1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: ;
  border-radius: 100px;
  font-weight: 600;
  color: #1f387e;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button1 svg {
  position: absolute;
  width: 24px;
  fill: #1f387e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button1 .arr-1 {
  right: 16px;
}

.animated-button1 .arr-2 {
  left: -25%;
}

.animated-button1 .circle {
  position: absolute;
}

.animated-button1 .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button1:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #EDAA02;
  border-radius: 12px;
}

.animated-button1:hover .arr-1 {
  right: -25%;
}

.animated-button1:hover .arr-2 {
  left: 16px;
}

.animated-button1:hover .text {
  transform: translateX(12px);
}

.animated-button1:hover svg {
  fill: #1f387e;
}

.animated-button1:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #EDAA02;
}

.animated-button1:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


/*************************************** bouton 2 */

.animated-button2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: ;
  border-radius: 100px;
  font-weight: 600;
  color: #1f387e;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 svg {
  position: absolute;
  width: 24px;
  fill: #1f387e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 .arr-2 {
  right: -25%;
  top : 17px;
}

.animated-button2 .arr-1 {
  left: 16px;
}

.animated-button2 .circle {
  position: absolute;
}

.animated-button2 .text {
  position: relative;
  z-index: 1;
  transform: translateX(12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #EDAA02;
  border-radius: 12px;
}

.animated-button2:hover .arr-2 {
  right: 16px;
}

.animated-button2:hover .arr-1 {
  left: -25%;
}

.animated-button2:hover .text {
  transform: translateX(-12px);
}

.animated-button2:hover svg {
  fill: #1f387e;
}
	
.animated-button2:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #EDAA02;
}

.animated-button2:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


