/* ----------------- Coming Soon Page CSS Start ----------------- */

.coming-soon-section {
background-color: #ffffff;
padding: 30px 0 !important;
}

.coming-soon-white {
width: 96%;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: flex-start;
text-align: center;
border-radius: 5px;
padding: 40px 0;
position: relative;
animation-iteration-count: infinite;
}

.coming-soon-section .hero-content {
margin-left: 0 !important;
}

.coming-soon-section h3 {
margin: 0 auto !important;
}

.hero-content h3 {
z-index: 10;
position: relative;
font-size: 38px;
width: 500px;
margin-left: 0;
margin-right: auto;
}

.coming-soon-section .hero-content h3 {
color: var(--navy-blue, #02253D);
}

.hero-1 .hero-content p {
max-width: 770px !important;
text-align: left !important;
}

.hero-content.coming-soon > div:first-of-type {
position: relative;
margin-bottom: 10px !important;
height: 200px;
}

.theme-btn.btn-style-one {
margin-top: 20px;
}

.coming-soon-section p {
max-width: 70% !important;
margin: 0 auto 10px auto;
position: relative;
z-index: 10;
background: transparent;
padding: 0;
border-radius: 0;
}

.hero-button {
position: relative;
z-index: 10;
}

.btn-with-arrow-on-dark .icon,
.btn-with-arrow-on-dark::before {
background-color: var(--theme-color-white, #fff) !important;
}

.btn-with-arrow-on-dark .icon svg path {
fill: var(--navy-blue, #02253D);
}

.btn-with-arrow-on-dark:hover {
color: var(--navy-blue, #02253D) !important;
}

/* ---------------- MARQUEE STRIPS ---------------- */

.strip-blue:not(.footer-strip),
.strip-yellow:not(.footer-strip) {
position: absolute;
width: 105vw;
height: 60px;
display: flex;
align-items: center;
overflow: hidden;
font-weight: bold;
white-space: nowrap;
left: 50%;
top: 50%;
transform-origin: center center;
pointer-events: none;
margin: 0;
padding: 0;
}

.strip-blue:not(.footer-strip) {
background-color: var(--navy-blue, #02253D);
color: var(--theme-color-white, #fff);
transform: translate(-50%, -50%) rotate(6deg);
text-transform: uppercase;
}

.strip-yellow:not(.footer-strip) {
background: var(--cpc-gradient);
color: var(--navy-blue, #02253D);
transform: translate(-50%, -50%) rotate(-6deg);
text-transform: uppercase;
}

.scroll-track:not(.footer-strip) {
display: inline-flex;
white-space: nowrap;
}

.scroll-track span:not(.footer-strip) {
display: inline-block;
margin: 0 70px;
font-size: 16px;
letter-spacing: 2px;
}

.strip-blue li,
.strip-yellow li {
list-style: none;
font-size: 16px;
letter-spacing: 2px;
display: inline !important;
}

/* ---------------- BOTTOM SECTION ---------------- */

.coming-soon-bottom {
margin-top: 0;
z-index: 10;
position: relative;
background: transparent;
padding: 0;
border-radius: 0;
margin-left: auto;
margin-right: auto;
max-width: none;
}

.coming-soon-section .coming-soon-bottom p {
text-align: center !important;
}

/* ---------------- ANIMATIONS ---------------- */

@keyframes scroll-left {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}

@keyframes scroll-right {
from { transform: translateX(-50%); }
to { transform: translateX(0); }
}

.scroll-left {
animation: scroll-left 30s linear infinite;
}

.scroll-right {
animation: scroll-right 30s linear infinite;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 991.98px) {
.hero-content h3 {
width: 70%;
font-size: 28px;
}
}

@media (max-width: 575.98px) {
.hero-1 .hero-content p,
.hero-content h3 {
max-width: 90% !important;
width: 90% !important;
}
}

/* ----------------- Coming Soon Page CSS End ----------------- */