/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.container-fluid > div.section
{
    margin: 0 -15px;
    padding-top: 150px;
    padding-bottom: 150px;
}

body
{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
}

.main-wrapper
{
    overflow-x: hidden;
}

@font-face {
    font-family: 'SofiaProRegular';
    src: url(../fonts/SofiaProRegular.woff2) format('woff2');
}

@font-face {
    font-family: 'SofiaProBold';
    src: url(../fonts/SofiaProBold.woff2) format('woff2');
}
  
@font-face {
    font-family: 'SofiaProRegular-Italic';
    src: url(../fonts/SofiaProRegular-Italic.woff2) format('woff2');
}


@font-face {
    font-family: 'CenturyGothicRegular';
    src: url(../fonts/CenturyGothicRegular.woff2) format('woff2');
}

@font-face {
    font-family: 'CenturyGothicProBold';
    src: url(../fonts/CenturyGothicPro-Bold.woff2) format('woff2');
}

h2, h3, h4, h5, h6
{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}


.top-nav
{
    
    position: fixed;
    flex-direction: row;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    backdrop-filter: blur(3.5px) brightness(60%);
}

.top-nav a.top-phone:link{
  color: #FFFFFF;
  text-decoration: none;
}

.nav-wrapper
{
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
}

.top-nav .block
{
    display: inline-block;
}

img.logo {
    width: 130px;
}

.section.hero-section
{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 0 auto;
}


fieldset{
  max-width: 100% !important;
}  

.form-control, .form-select, .form-control:focus, .form-select:focus,
fieldset input, fieldset select
{
  width: 100% !important;
  border-radius: 0px;
  background-color: #303134;
  color: #fff;
  padding: 15px 25px;
  border: none;
  font-size: 1em;
  margin-bottom: 1rem !important;
}

.form-control::placeholder,
fieldset input::placeholder{
  color: #757575;
}

fieldset label{
  display: none;
}

.form-select option,
fieldset option
{
  background-color: #303134;
  color: #fff;
}

.hs_recaptcha, .hs-submit {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-bottom: 1rem;
}

.hs-submit input {
    width: 100%;
    background-color: #0D43ED;
    color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    border: none;
}




.hero-banner
{
  background-image: url('https://23215603.fs1.hubspotusercontent-na1.net/hubfs/23215603/NYNorth/hero-phone.png');
  background-position: bottom right;
  background-size: auto 90%;
  background-repeat: no-repeat;
}



.btn.btn-primary
{
  background-color: #0D43ED;
  color: #fff;
  border-radius: 50px;
  padding: 15px 25px;
}

@media screen and (max-width: 768px)
{
  .hero-banner
  {
    background-image: none;
  }

  .hero-banner form
  {
    padding: 40px;
  }
}

.gallery {
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(6, 500px);
	grid-template-rows: 1fr;
	grid-column-gap: .5rem;
	grid-row-gap: 1rem;
	overflow-x: scroll;
	height: 365px;
	scroll-snap-type: none;
	scroll-padding: 1rem;
	overflow-y: hidden;
	animation: autoScroll infinite linear;
}

.gallery:hover {
    animation-play-state: paused; /* Pause marquee during hover */
    scroll-snap-type: both mandatory; /* Enable snapping for manual interaction */
}


.active {
	scroll-snap-type: unset;
}

li {
	scroll-snap-align: center;
	display: inline-block;
	border-radius: 3px;
	padding: 140px 40px;
	text-align: center;
	background-repeat: no-repeat;
	width: 460px;
	background-size: contain;
	white-space: normal;
	user-select: none;
}

/* Parent wrapper to control the visible scrollbar width */
/* Parent wrapper */
.scrollbar-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 1rem;
}

/* Progress bar container */
.progress-bar-container {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #f0f0f0;
    overflow: hidden;
    max-width: 400px;
    bottom: 70px;
    left: 50%;
    transform: translate(-50%, 0);
}

/* Progress bar */
.progress-bar {
    height: 100%;
    width: 0%; /* Start with 0% width */
    background-color: #0F48E3; /* Progress color */
    transition: width 0.1s ease-out;
}

/* Target the ul.gallery element */
ul.gallery {
	scrollbar-width: thin;
	/* For Firefox: Make scrollbar smaller */
	scrollbar-color: #0F48E3 #f0f0f0;
	/* For Firefox: Thumb and track colors */

	width: calc(100vw);
	/* Ensure content remains in one line for horizontal scroll */
	margin: auto;
	margin-bottom: 80px !important;
    scrollbar-width: none; /* Hide default scrollbar */

}

/* Webkit-based browsers */
ul.gallery::-webkit-scrollbar {
	height: 6px;
	/* Make the scrollbar smaller by reducing its height */
	max-width: 500px;
}

ul.gallery::-webkit-scrollbar-thumb {
	background-color: #0F48E3;
	/* Color of the scrollbar thumb */
	border-radius: 4px;
	/* Rounded edges for the thumb */
	max-width: 500px;
	margin: 0 auto;
}

ul.gallery::-webkit-scrollbar-thumb:hover {
	background-color: #0F48E3;
	/* Darker color on hover */
}

ul.gallery::-webkit-scrollbar-track {
	background-color: #f0f0f0;
	/* Background of the scrollbar track */
	border-radius: 4px;
	/* Optional: Rounded edges for the track */
	max-width: 500px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.scrollbar-wrapper {
		width: 100%;
	}

	ul.gallery {
		width: 100%;
		margin: 0px;
		grid-template-columns: repeat(6, 120vw);
	}

	li
	{
		width: 95vw;
		padding: 110px 35px;
		max-width: 464px;
	}
}

@keyframes autoScroll {
    0% {
        transform: translateX(0); /* Start at the beginning */
    }
    100% {
        transform: translateX(-100%); /* Scroll to the end */
    }
}

.text-bg-black
{
  background-color: #000;
}

.section.parallax-section.text-bg-black.text-white {
  padding-top: 0px;
  padding-bottom: 100px;
}

.parallax-wrapper
{
  max-height: 700px;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.parallax-wrapper .parallax
{
  position: absolute;
  top: 0px;
  height: 120%;
}

.parallax-wrapper .parallax-1
{
  left: 0;
}

.parallax-wrapper .parallax-2
{
  left: 195px;
}

.parallax-wrapper img
{
    max-width: 219px;
    width: 100%;
}

.section.parallax-section
{
  padding-bottom: 60px;
}
.bg-blue
{
    background-color: #0F48E3;
}

.section.bg-blue.section-cta.text-white.text-center.justify-content-center.row {
    margin-top: -100px;
    border-top-left-radius: 120px;
    padding-bottom: 250px !important;
}

.star-logo
{
    max-width: 113px;
    padding-bottom: 50px;
}
.footer-section
{
    border-top-right-radius: 120px;
    margin-top: -100px !important;
}

.disclaimer
{
    font-size: 12px;
    padding-top: 40px;
}


@media screen and (max-width: 991px) {
  
  .hs-submit, .hs_recaptcha{
    display: block;
    width: 100%;
}
  
  .hero-banner {
    background-position: 130% bottom;
  }
  
  .parallax-wrapper .parallax{
    width: 50%;
  }
  
  .parallax-wrapper .parallax-2{
    left: 126px;
}

@media screen and (max-width: 875px) {
  
  .hero-banner {
    background-size: auto 70%;
  }
  
}