.flagship_banner-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flagship_banner-section img {
    margin: 0 auto;
}
.flagship_banner-section::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    position: absolute;
    z-index: 2;
}

.flagship_banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    text-align: center;
				padding: 50px 70px;
}

.flagship_banner-inner * {
    color: var(--white-color);
}

.flagship_banner-inner h2 {
    font-size: clamp(2.3rem, 3vw, 6rem);
    font-weight: 400;
    margin-bottom: clamp(0rem, 1vw, 2rem);
}

.flagship_banner-inner p {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    font-weight: 600;
				line-height: clamp(20px, 1.4vw, 30px);
    max-width: 550px;
				margin: 0 auto;
				    margin-bottom: clamp(1rem, 1vw, 2rem);

}

.flagship_banner-inner a {
    font-weight: 700;
    text-decoration: underline !important;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 1.4vw, 1.6rem);
}

.flagship_banner-inner a:hover {
    opacity: 0.8;
    color: var(--white-color);
}


@media screen and (max-width:767px) {
	.flagship_banner-section img {
				min-height: 220px;
				object-fit: cover;
}
}