.shipp-section {
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	background: var(--styx-base-color-1);
}

.shipp-title-wrapp {
	display: flex;
	flex-direction: column;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 3rem 0;
}

.shipp-title-wrapp .shipp-title {
	font-family: Rubik;
	font-size: 2.2rem;
    text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.shipp-title-wrapp .shipp-extra-title {
	font-family: Rubik;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 4.4rem;
    letter-spacing: 2px;
}

.shipp-wrapp {
    position: relative;
    width: min(800px, 80vw);
    aspect-ratio: 2 / 1; 
}

.shipp-target {
	position: absolute;
	overflow: visible;
}

.shipp-target img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shipp-target-01, .shipp-target-02, .shipp-target-03 {
	width: 400px;
}

.shipp-svg-01 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -28%);
    z-index: 2;
	width: 500px;
}

.shipp-svg-02 {
    top: 0;
    left: 0;
    transform: translate(-2%, 36%);
    z-index: 3;
	width: 370px;
}

.shipp-svg-03 {
	top: 0;
    right: 0;
    transform: translate(4%, 19%);
    z-index: 1;
    width: 410px;
}

.shipp-img {
	transform-origin: 50% 50%;
	transform: scale(1);
	opacity: 1;
	transition:
		transform .35s var(--styx-anim-param-1),
		opacity  .35s var(--styx-anim-param-1);
}

.shipp-wrapp:has(.shipp-target:hover) .shipp-img {
	transform: scale(0.95);
	opacity: 0.65;
}

.shipp-wrapp:has(.shipp-target:hover) .shipp-target:hover .shipp-img {
	transform: scale(1.05);
	opacity: 1;
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {
	
.shipp-title-wrapp .shipp-title {
	font-size: 1.3rem;
}

.shipp-svg-01 {
    transform: translate(-50%, -40%);
	width: 90vw;
}

.shipp-svg-02 {
    top: 0;
    left: 0;
    transform: translate(-13%, 61%);
    z-index: 3;
	width: 45vw;
}

.shipp-svg-03 {
	top: 0;
    right: 0;
    transform: translate(13%, 49%);
    z-index: 1;
    width: 46vw;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {

}
