/**
 * Border Animation Styles
 * SVG-based animated border drawing effect
 */
 
 @media (min-width: 1025px) and (max-width: 1300px) {
    .about-hero-image.border-animation svg {
        width: 82% !important;
    }
} 
 @media (min-width: 1601px) and (max-width: 1920px) {
    .about-hero-image.border-animation svg {
        width: 825px !important;
    }
}

@media (min-width: 1921px) {
    .about-hero-image.border-animation svg {
        width: 92% !important;
    }
}

@media (max-width: 767px) {
	.border-animation {
		padding: 0 0 10px 15px !important;
	}
}

.border-animation {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 0 25px 25px;
}

.border-animation svg {
    position: absolute;
    top: 25px;
    left: 0;
    width: 96%;
    height: 96%;
    pointer-events: none;
    z-index: 1;
}

.border-animation svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    visibility: hidden;
}

.border-animation svg path.animated {
    visibility: visible;
    opacity: 1;
}

/* Content should be above the SVG */
.border-animation > *:not(svg) {
    position: relative;
    z-index: 2;
}

/* Customizable border color */
.border-animation {
    --border-color: #1B365D;
    color: var(--border-color);
}

.border-animation svg path {
    stroke: var(--border-color);
}


@media screen and (max-width: 767px) {
    .swiper-slide .border-animation svg {
        top: 16px;
    }
}