@media only screen and (min-width: 2500px)
{
}

@media (min-width: 2000px) and (max-width: 2499px)
{
}

@media (min-width: 1900px) and (max-width: 1999px)
{
}

@media (min-width: 1800px) and (max-width: 1899px)
{
}

@media (min-width: 1600px) and (max-width: 1799px)
{
}

@media (min-width: 1400px) and (max-width: 1599px)
{
}

@media (min-width: 1300px) and (max-width: 1399px)
{
}

/* Only larger Devices - Larger New LCD/LED Monitors*/
@media (min-width: 1200px) and (max-width: 1300px)
{
}

/* From Medium Devices Up To Larger Devices - Medium Old Monitors */
@media (min-width: 980px) and (max-width: 1199px)
{
}

/* From Small Devices Up To Medium Devices - Tab */
@media (min-width: 768px) and (max-width: 979px)
{
}

@media screen and (orientation:landscape) and (min-width: 768px) and (max-width: 979px)
{
}

/* Only Small Devices Only - Mobile */
@media (max-width: 767px)
{
	.navbar
	{
		background-color: #ffffff;
	}
	.navbar button
	{
	    background-color: transparent;
    	border: none;
    	box-shadow: none;
	}
	.navbar .navbar-nav .nav-link
	{
		color: #9D001E;
		padding: 20px 30px;
	}
	.offcanvas-title
	{
		color: #9D001E;
	}
	.navbar-toggler:focus
	{
		box-shadow: none;
	}
	.slide-content-inner
	{
		overflow-y: auto;
		height: 76vh;
		scroll-behavior: smooth;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.slide-content-inner::-webkit-scrollbar
	{
		display: none;
	}
	.owl-theme .owl-nav
	{
		display: flex;
		width: 50%;
		left: auto;
		margin-left: auto;
		justify-content: flex-end;
		top: -60px;
	}
	.matrics-list {
		column-count: 1;
	}
	.card-news .card-body .badge
	{
		font-size: 12px;
		padding: 5px 15px;
		text-wrap: auto;
		text-align: left;
		display: inline-block;
	}
}

@media (min-width: 568px) and (max-width: 737px)
{
}

/* Extra Small Devices Only - Small Mobile */
@media (min-width: 370px) and (max-width: 567px)
{
}