.slider-group {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}


/* CONTENT */

.content-slider {
  width: 40%;
  position: relative;
}

.content-slide {
  opacity: 0;
  position: absolute;
  transition: opacity 0.6s;
}

.content-slide.active {
  opacity: 1;
  position: relative;
}

.content-slide h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content-slide p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #444;
}

/* BUTTON */

.button_cas_animation_custom {
  background: #002d67;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.button_cas_animation_custom span{
	padding: 10px 20px !important;
	font-size: 20px;
	font-family: "Geist";
}
.button_cas_animation_custom:hover span{
	color: #fff;
}

/* IMAGE SLIDER */

.image-slider {
  width: 60%;
  position: relative;
  overflow: hidden;
	display: flex;
	gap: 50px;
}

.image-track {
  display: flex;
	gap: 95px;
  transition: transform 0.6s ease-in-out;
}

.image-slide {
  min-width: 100%;
	 min-width: 100%;
  display: flex;
  justify-content: center;
}

.image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ICONS */

.icon-row {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 25px;
}
.icon-row img{
	backdrop-filter: blur(54px);
	border-radius: 10px;
}

.icon-row span {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

/* BADGE */

.slide-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 32px;
  border-radius: 28px 0 0 0;
}


.slide-badge strong {
  font-size: 40px;
	font-family: "Geist";
	font-weight: 500;
	color: #000;
  display: block;
}

.slide-badge span {
  font-size: 26px;
	font-family: "Geist";
	font-weight: 400;
  color: #030303;
}

/* ARROWS */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  color: #fff;
  cursor: pointer;
  z-index: 10;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.arrow span,
.arrow p{
	color: #C7C8C8;
	max-width: max-content;
/* 	rotate: -90deg; */
}

/* .btn-flex{
	display: flex !important;
	flex-direction: column;
} */

.arrow.left { left: -24%; }
.arrow.right { right: 20px; }

/* SIDE LABEL */

.side-label {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right;
  font-size: 18px;
  color: #bbb;
}
.vertical-indicator {
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #bdbdbd;
  font-family: inherit;
}

/* Arrow */
.vertical-indicator .arrow {
  font-size: 20px;
  color: #bdbdbd;
}

/* Dot */
.vertical-indicator .dot {
  width: 12px;
  height: 12px;
  background: #003366;
  border-radius: 50%;
}

/* Vertical Text */
.vertical-indicator .label {
  writing-mode: vertical-rl;
/*   transform: rotate(180deg); */
  font-size: 18px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Vertical Line */
.vertical-indicator .line {
  width: 2px;
  height: 140px;
  background: #e0e0e0;
}

.content-slider img{
	margin-bottom: 20px;
}
.content-slider h3{
	font-family: "Geist";
	font-size: 30px;
	font-weight: 600;
	color: #030303;
}
.content-slider p{
	font-family: "Geist";
	font-size: 18px;
	font-weight: 400;
	color: #030303;
	margin-bottom: 45px;
}

.button_cas_animation_custom{
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    gap: 10px;
}
.button_cas_animation_custom::before {
    content: "";
    width: 0;
    height: 52px;
    background-image: url("https://www.casaerospace.com/wp-content/uploads/2026/01/download.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.4s ease, background 0.4s ease;
}
.button_cas_animation_custom::after{
	content: "";
    width: 50px;
    height: 52px;
    background-image: url("https://www.casaerospace.com/wp-content/uploads/2026/01/download.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    opacity: 1;
    transition: width 0.4s ease, opacity 0.4s ease;
	background-color: #E6E9EC;
} 
.button_cas_animation_custom:hover::before {
    width: 50px;
	background-color: #E6E9EC;
    opacity: 1;
}
.button_cas_animation_custom:hover::after {
	 width: 0px;
    opacity: 0;
}


.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* .arrow.left {
  left: -18%;
} */

.arrow.right {
  right: -20px;
}

.btn-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
	rotate: 90deg;
}

.btn-flex img{
	rotate: -90deg;
}

.arrow span {
  font-size: 18px;
  color: #c7c8c8;
/*   transform: rotate(-90deg); */
}

.arrow p {
  font-size: 14px;
  color: #c7c8c8;
/*   transform: rotate(-90deg); */
  white-space: nowrap;
}
.vertical-indicator {
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.vertical-indicator .dot {
  width: 12px;
  height: 12px;
  background: #003366;
  border-radius: 50%;
}

.vertical-indicator .line {
  width: 2px;
  height: 140px;
  background: #e0e0e0;
}

.vertical-indicator .label {
  writing-mode: vertical-rl;
/*   transform: rotate(180deg); */
  font-size: 18px;
  color: #bdbdbd;
}
.btn-flex p {
	font-size: 32px;
	margin: 0px;
/* 	transform: rotate(90deg)!important; */
}
.btn-flex span {
	font-size: 40px;
/* 	transform: rotate(90deg) !important; */
}
