/*--------------------------------------*/

/* Responsive
/*--------------------------------------*/

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	header .navbar .nav-item .nav-link{
		width: 142px;
		font-size: 14px;
	}
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	.top-bar .text{
		display: none;
	}
	header .navbar .nav-item .nav-link{
		width: 120px;
        font-size: 13px;
	}
	header .navbar.fixed-top .nav-item .nav-link{
		width: auto;
        padding-left: 14px;
        padding-right: 14px;
	}
	
}

/* Apply styles starting from medium devices and up to extra large devices*/
@media (min-width: 991.98px) and (max-width: 1199.98px) {
	
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	.top-bar{
		height: 60px;
	}
	.top-bar .logo img{
		max-height: 45px;
	}
	.top-bar .top-bar-btn{
		padding: 0;
	}
	header .navbar-brand .logo{
		height: 60px;
	}
	header .navbar .nav-item .nav-link{
		justify-content: start;
		border-left: 0;
	}
	header .navbar.fixed-top .nav-item .nav-link{
		font-size: 14px;
	}
	header .navbar .nav-item:last-child .nav-link{
		border-right: 0;
	}
	header .navbar .nav-item .nav-link.active,
	header .navbar .nav-item .nav-link:hover{
		background-color: transparent;
		color: var(--color-secondary);
	}
	header .navbar .dropdown .show i{
		transform: rotate(180deg);
	}
	header .navbar .dropdown .dropdown-menu{
		position: relative;
		top: -40px;
		padding: 0;
	}
	footer .footer-info{
		margin-bottom: 30px;
		text-align: center;
	}
	
	
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.btn{
        padding: 12px 30px;
        letter-spacing: 0;
    }
	.page-heading h1{
		font-size: 35px;
	}
	.breadcrumb-item a,
	.breadcrumb-item.active{
		font-size: 18px;
	}
	.hero-section .carousel-caption .btn.btn-primary{
		font-size: 10px;
		padding: 8px 16px;
	}
	footer .footer-link,
	footer .footer-contact,
	footer .footer-menu a{
		font-size: 14.5px;
	}
	footer .footer-contact p i{
		width: 20px;
	}
	.lines,
	.lines-right{
		border: 0;
	}
	.lines::after,
	.lines-right::before{
		height: 0;
	}
    
}

@media (max-width: 640px) {
	
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.btn{
        font-size: 16px;
    }
	
	footer .footer-link,
	footer .footer-contact,
	footer .footer-menu a{
		font-size: 16px;
	}
	footer .footer-contact p i{
		width: 25px;
	}
}

/* `xs` returns only a ruleset and no media query */
@media (max-width: 480px) {
	.top-bar .top-bar-btn .btn{
		font-size: 10px;
		padding: 12px 11px;
	}
}
/*--------------------------------------*/