/* Global Styles */
@font-face {
    font-family: 'OPTITimes-Roman';
    src: url('./fonts/OPTITimes-Roman.woff2') format('woff2'),
        url('./fonts/OPTITimes-Roman.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body,
html {
	height: 100%;
	margin: 0;
    font-family: 'OPTITimes-Roman';
	color: #fff;
	text-align: center;
	
}
ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
a{text-decoration: none;}

/* Background Video */
.video-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -2;
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

/* Overlay on Video */
.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	/* Dark overlay */
	z-index: -1;
}

/* Navbar */
.navbar {
 background: rgb(52 52 52 / 60%);
	padding: 2px 0;
}

.navbar a {
	color: #fff !important;
	font-weight: 00;
	transition: 0.3s;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.6px;

}

li.nav-item {
	padding: 0px 20px;
}

.navbar a:hover {
	color: #1b71f7 !important;
}
.justify-content-center {
    justify-content: right !important;
}

/* Centered Content */
.content {
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 20px;
  
}
.content .slogan{ font-size:45px; color:#fff; 	font-weight: 700;}
.logo {
	max-width: 300px;
	animation: fadeIn 2s ease-in-out;
}

.slogan {
	font-size: 1.8rem;
	margin-top: 10px;
	font-weight: 600;
	animation: fadeInUp 2s ease-in-out;
}

/* Cities Section */
.cities {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 40px;
	font-size: 1.5rem;
	font-weight: 500;
	animation: fadeInUp 2s ease-in-out;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
	color: #a7a7a7;
}

.cities div:hover {
	color: #28a745;
}
.cities {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px; /* space between cities */
  }

  .cities div {
    padding: 2px 15px;
    border-left: 1px solid #999; /* Add border to the left of each city */
  }

  .cities div:first-child {
    border-left: none; /* Remove border from the first city */
  }

  .cities a {
    text-decoration: none;
    color: #979595;;
    font-weight: bold;
  }

  .small-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
  }

.finra-text {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.0rem;
	opacity: 0.8;
	 color:#2479fd;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Download Button */
.download-btn {
	position: fixed;
	bottom: 155px;
	right: 40px;
	background: #28a745;
	color: white;
	padding: 15px 20px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: 0px 0px 10px rgba(40, 167, 69, 0.8);
	transition: all 0.3s ease-in-out;
}

.download-btn:hover {
	background: #218838;
	transform: scale(1.1);
	box-shadow: 0px 0px 20px rgba(40, 167, 69, 1);
}



/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Fix */

 .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140vw;
    height: 140vh;
    transform: translate(-50%, -50%);
}

@media (max-width: 1440px) {
	li.nav-item {
		padding: 0px 10px;
	}

	.cities {
		font-size: 1.2rem !important;
	}
}

@media (max-width: 1366px) {
	li.nav-item {
		padding: 0px 17px;
	}

	.cities {
		font-size: 0.9rem !important;
	}
	
	.navbar a{
	   font-size: 16px;
	}


}

@media (max-width: 1280px) {
	li.nav-item {
		padding: 0px 16px;
	}
		.cities {
		font-size: 0.9rem !important;
	}
	.navbar a{font-size:18px;}
	
	.video-container iframe {
	    width: 120vw;
        height: 120vh;
	}

}

@media (max-width: 1150px) {
    .video-container iframe {
        width: 140vw;
        height: 140vh;
    }
}

@media (max-width: 1024px) {
	li.nav-item {
		padding: 0px 6px;
	}
	.navbar a{font-size:16px;}

	.cities {
	        font-size: 0.9rem !important;
        bottom: 18%;
	}

    .download-btn {
        position: fixed;
        bottom: 180px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.finra-text {
		bottom: 11%;
	}
	

}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	.finra-text {
		bottom: 11%;
	}

	li.nav-item {
		padding: 0px 24px;
		text-align: left;
	}
	.download-btn {
    position: fixed;
    bottom: 320px;}
	


	.cities {
		position: absolute;
		bottom: 17%;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 40px;
		font-size: 1.1rem;
		font-weight: 500;
		animation: fadeInUp 2s ease-in-out;
		text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
		color: #a7a7a7;
	}
	
	    .video-container iframe {
        width: 180vw;
        height: 180vh;
    }
    
}

@media (max-width: 768px) {
	.cities {
		flex-direction: column;
		text-align: center;
	}

	.download-btn {
		bottom: 15px;
		right: 15px;
	}


	.cities {
		gap: 25px;
		bottom: 20%;
		font-size: 22px !important;
	}

	.finra-text {
		position: absolute;
		bottom: 14%;
	}

	li.nav-item {
		padding: 0px 24px;
		text-align: left;
	}
    .video-container iframe {
        width: 180vh;
        height: 160vh;
    }
    
    .cities div{
        border-bottom:1px solid #999;
        border-left:0;
    }
}

@media (max-width: 767px) {
	.cities {
		position: absolute;
		bottom: 20%;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 3px;
		font-size: 1.1rem;
		font-weight: 500;
		animation: fadeInUp 2s ease-in-out;
		text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
		color: #a7a7a7;
	}

	.content .slogan {
    font-size: 21px;
    color: #fff;
    font-weight: 700;
}

	li.nav-item {
		padding: 0px 24px;
		text-align: left;
	}
}

.branches {
	position: absolute;
	bottom: -101px;
	width: 100%;
}

.contact-text span {
	font-size: 28px;
	font-weight: 600;
	color: red;
}

.contact-text span:hover {
	color: green;
}

a.logo {
	position: absolute;
	top: 67px;
	left: 769px;
}

.bottom-area span {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}

.images-part {
	border: 1px dashed #e7e4e4;
	padding: 5px;
}
.modal.show .modal-dialog {
    transform: none;
    margin-top: 155px;
}
.col-lg-6.md-mb-10.text-lg-end.text-center.order-last {
    color: #fff;
}
img.logo {
    max-width: 130px;
 
}
ul.check-lists {
    padding-left: 16px;
}
ul.check-lists li a {
    color: #333;
    font-size: 18px;
}
div a {
    color: #b9b3b3;
}
div a:hover{color:#013fd1 !important;}

.h2 { color:#2479fd; font-size: 30px;}
.download-btn:hover{ color:#bb0b0b;}

