/*== Font css ==*/
	@font-face { font-family: 'Roboto';	font-style: italic;	font-weight: 100 900; font-stretch: 100%; font-display: swap; src: url(../fonts/roboto-italic.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100 900; font-stretch: 100%; font-display: swap; src: url(../fonts/roboto-normal.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/*== Font css End ==*/

/*== Variable ==*/
:root {
	--primary-color:   #FB7400;
	--secondary-color: #363839;
	--black-color:     #000000;
	--light-color:     #EDEFF0;
	--white-color:     #FFFFFF;
	--body-text-color: #000000;

	--font-body:  "Roboto", sans-serif;
	--font-title: "Roboto", sans-serif;
}
/*== Variable End ==*/

/*== Basic css ==*/
	*, *::before, *::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	body { font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.5; color: var(--body-text-color); }
	a { color: var(--primary-color); text-decoration: underline; }
	a:hover, a:focus { color: inherit; text-decoration: none; }
	p { margin-bottom: 1rem; }
	img { max-width: 100%; height: auto; }
	b { font-weight: 600; }
	strong { font-weight: 700; }
	.transition { -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; transition-duration: 0.5s; }
	a.phonelink, a.phonelink:hover, a.phonelink:focus { cursor: default; text-decoration: none !important; color: inherit !important; }
	hr { opacity: 0.1; }
	@media (max-width: 1024px) {
		a.phonelink { text-decoration: underline !important; }
	}
	@media (min-width: 768px) {
		body { font-size: 18px; }
		p { margin-bottom: 1.5rem; }
	}
/*== Basic css End ==*/

/*== Taxonomy ==*/
	.text-primary { color: var(--primary-color) !important; }
	.text-secondary { color: var(--secondary-color) !important; }
	.text-dark { color: var(--black-color) !important; }
	.fw-medium { font-weight: 500 !important; }
	.fw-sbold { font-weight: 600 !important; }
	.fs-small { font-size: 14px !important; }
	.fs-normal { font-size: 16px !important; }
	.fs-large { font-size: 18px !important; }
	.text-uppercase-none { text-transform: none !important; }

	.fill-primary   { fill: var(--primary-color) !important; }
	.fill-secondary { fill: var(--secondary-color) !important; }
	.fill-dark 		{ fill: var(--black-color) !important; }
	.fill-white 	{ fill: var(--white-color) !important; }
/*== Taxonomy End ==*/

/*== Backgrounds ==*/
	.bg-primary { background-color: var(--primary-color) !important; }
	.bg-secondary { background-color: var(--secondary-color) !important; }
	.bg-light { background-color: var(--light-color) !important; }
	.bg-dark { background-color: var(--black-color) !important; }
	.bg-cover { background-size: cover !important; }
	.bg-contain { background-size: contain !important; }
	.bg-start { background-position: left !important; }
	.bg-start-top { background-position: left top !important; }
	.bg-end { background-position: right !important; }
	.bg-end-top { background-position: right top !important; }
	.bg-center { background-position: center !important; }
	.bg-center-top { background-position: center top !important; }
	.bg-center-bottom { background-position: center bottom !important; }
	.bg-repeat { background-repeat: repeat !important; }
	.bg-repeat-x { background-repeat: repeat-x !important; }
	.bg-repeat-y { background-repeat: repeat-y !important; }
	.bg-norepeat { background-repeat: no-repeat !important; }
	.object-cover { object-fit: cover; object-position: center; }
	.object-center-top { object-position: center top; }
	.object-center-bottom { object-position: center bottom; }
	.object-start { object-position: left; }
	.object-end { object-position: right; }
/*== Backgrounds End ==*/

/*== Border ==*/
	.border-primary { border-color: var(--primary-color) !important; }
	.border-secondary { border-color: var(--secondary-color) !important; }
	.border-light { border-color: var(--light-color) !important; }
	.border-dark { border-color: var(--black-color) !important; }
/*== Border End ==*/

/*== Position ==*/
	@media (min-width: 576px) {
		.position-sm-absolute { position: absolute !important; }
	}
	@media (min-width: 768px) {
		.position-md-absolute { position: absolute !important; }
	}
	@media (min-width: 992px) {
		.position-lg-absolute { position: absolute !important; }
	}
	@media (min-width: 1200px) {
		.position-xl-absolute { position: absolute !important; }
	}
	@media (min-width: 1400px) {
		.position-xxl-absolute { position: absolute !important; }
	}
/*== Position End ==*/

/*== Sizing ==*/
	@media (min-width: 576px) {
		.w-sm-25   { width: 25% !important; }
		.w-sm-50   { width: 50% !important; }
		.w-sm-75   { width: 75% !important; }
		.w-sm-100  { width: 100% !important; }
		.w-sm-auto { width: auto !important; }
		.mw-sm-25   { max-width: 25% !important; }
		.mw-sm-50   { max-width: 50% !important; }
		.mw-sm-75   { max-width: 75% !important; }
		.mw-sm-100  { max-width: 100% !important; }
		.mw-sm-auto { max-width: auto !important; }
	}
	@media (min-width: 768px) {
		.w-md-25   { width: 25% !important; }
		.w-md-50   { width: 50% !important; }
		.w-md-75   { width: 75% !important; }
		.w-md-100  { width: 100% !important; }
		.w-md-auto { width: auto !important; }
		.mw-md-25   { max-width: 25% !important; }
		.mw-md-50   { max-width: 50% !important; }
		.mw-md-75   { max-width: 75% !important; }
		.mw-md-100  { max-width: 100% !important; }
		.mw-md-auto { max-width: auto !important; }
	}
	@media (min-width: 992px) {
		.w-lg-25   { width: 25% !important; }
		.w-lg-50   { width: 50% !important; }
		.w-lg-75   { width: 75% !important; }
		.w-lg-100  { width: 100% !important; }
		.w-lg-auto { width: auto !important; }
		.mw-lg-25   { max-width: 25% !important; }
		.mw-lg-50   { max-width: 50% !important; }
		.mw-lg-75   { max-width: 75% !important; }
		.mw-lg-100  { max-width: 100% !important; }
		.mw-lg-auto { max-width: auto !important; }
	}
	@media (min-width: 1200px) {
		.w-xl-25   { width: 25% !important; }
		.w-xl-50   { width: 50% !important; }
		.w-xl-75   { width: 75% !important; }
		.w-xl-100  { width: 100% !important; }
		.w-xl-auto { width: auto !important; }
		.mw-xl-25   { max-width: 25% !important; }
		.mw-xl-50   { max-width: 50% !important; }
		.mw-xl-75   { max-width: 75% !important; }
		.mw-xl-100  { max-width: 100% !important; }
		.mw-xl-auto { max-width: auto !important; }
	}
	@media (min-width: 1400px) {
		.w-xxl-25   { width: 25% !important; }
		.w-xxl-50   { width: 50% !important; }
		.w-xxl-75   { width: 75% !important; }
		.w-xxl-100  { width: 100% !important; }
		.w-xxl-auto { width: auto !important; }
		.mw-xxl-25   { max-width: 25% !important; }
		.mw-xxl-50   { max-width: 50% !important; }
		.mw-xxl-75   { max-width: 75% !important; }
		.mw-xxl-100  { max-width: 100% !important; }
		.mw-xxl-auto { max-width: auto !important; }
	}
/*== Sizing End ==*/

/*== Heading ==*/
	.title1 { font-size: 82px; font-weight: 700; line-height: 86px; text-transform: uppercase; margin-bottom: 1rem; }	
	.title2 { font-size: 60px; font-weight: 100; line-height: 64px; text-transform: none; margin-bottom: 1rem; }
	.title3 { font-size: 50px; font-weight: 500; line-height: 1.2; text-transform: uppercase; margin-bottom: 1rem; }
	.title4 { font-size: 30px; font-weight: 400; line-height: 1.2; text-transform: none; margin-bottom: 0.6rem; }
	.title5 { font-size: 24px; font-weight: 700; line-height: 1.2; text-transform: none; margin-bottom: 0.6rem; }

	@media (min-width: 768px) {
		.title1 { font-size: 42px; line-height: 48px; }
		.title2 { font-size: 32px; line-height: 36px;}
		.title3 { font-size: 28px; line-height: 32px;}
		.title4 { font-size: 22px; line-height: 26px;}
		.title5 { font-size: 18px; line-height: 24px;}
	}
	@media (min-width: 991px) {
		.title1 { font-size: 57px; line-height: 64px; }
		.title2 { font-size: 46px; line-height: 52px;}
		.title3 { font-size: 36px; line-height: 42px;}
		.title4 { font-size: 22px; line-height: 28px;  }
	}
	@media (min-width: 1400px) {
		.title1 { font-size: 82px; line-height: 86px;}
		.title2 { font-size: 65px; line-height: 70px;}
		.title3 { font-size: 50px; line-height: 1.2; }
		.title4 { font-size: 30px; line-height: 1.1;  }
		
	}
	@media (max-width: 767px) {
		.title1 { font-size: 36px; line-height: 42px;}
		.title2 { font-size: 28px; line-height: 34px;}
		.title3 { font-size: 24px; line-height: 28px; }
		.title4 { font-size: 17px; line-height: 21px;}
		.title5 { font-size: 16px; line-height: 20px;}
	}
	
/*== Heading End ==*/

/*== Header ==*/
	.page-header { font-size: 15px; font-weight: 400; line-height: 1.4; }
	.page-header .site-logo img { width: auto; max-height: 40px; }
	.sticky-fixed { position: fixed; left: 0; right: 0; top: 0; z-index: 1020; -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; }
	.top-strip .list-icon { display: flex; gap: 1rem; }

	@media (min-width: 768px) {
		.page-header .site-logo img { max-height: inherit; }
	}
/*== Header End ==*/

/*== Footer ==*/
	.table-hours { max-width: 225px; width: 100%; text-align: left; }
	.table-hours tr td:first-child { width: 139px; }
	.table-hours tr td{ height: 30px;}
	.slinks { list-style: none; margin: 0; padding: 0; display: flex; gap: .5rem; }
	.slinks a { display: block; text-decoration: none; }
	.slinks li { display: inline-block; -webkit-transition: .6s ease; transition: .6s ease; }
	.slinks li + li { margin-left: 10px; }
	.slinks li a svg path { -webkit-transition: .4s ease; transition: .4s ease; }
	.slinks li a svg.whatsapp path { fill: #00FF54; }
	.slinks li a:hover svg path { fill: var(--white-color) !important; }
	.tooltip-inner { background-color: var(--white-color); color: var(--primary-color); }
	.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before { border-top-color: var(--white-color); }
	.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before { border-bottom-color: var(--white-color); }
	.page-footer { font-size: 15px; line-height: 1.4; }
	.page-footer a { color: inherit; }
	.copyright-text { font-family: Verdana, Geneva, sans-serif; font-size: 11px; line-height: 1.4; }
	.copyright-text a { color: inherit; }
	.copyright-text a:hover { color: var(--primary-color); }
	.footer-menu a{ color: var(--white-color);}
	.footer-menu a:hover{ color: var(--primary-color);}
	@media (min-width: 768px) {
		.table-hours { max-width: 310px; }
	}
/*== Footer end ==*/

/*== Menu ==*/
	.menu-fade { position: fixed; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; z-index: 1020; background-color: rgba(0,0,0,.1); display: none; }
	.navbar-toggler { width: 25px; height: 21px; padding: 0; outline: none !important; vertical-align: middle; display: inline-block; }
	.navbar-toggler:focus { box-shadow: none; }
	.navbar-toggler .i-line { width: 100%; height: 2px; border-radius: 10px; background-color: var(--white-color); position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; }
	.navbar-toggler .i-line.top { top: 0; }
	.navbar-toggler .i-line.middle { top: 50%; margin-top: -1.5px; }
	.navbar-toggler .i-line.bottom { bottom: 0; }
	.closed .i-line.middle { width: 0; opacity: 0; }
	.closed .i-line.top { top: 9px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg); }
	.closed .i-line.bottom { bottom: 7px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); transform: rotate(-45deg); }
	.navbar .nav-item { outline: none; }
	.navbar .nav-link { color: var(--white-color); font-size: 14px; font-weight: 300; line-height: 1.4; text-transform: uppercase; text-decoration: none; padding: 14px 16px; }
	.active .nav-link, .open .nav-link, .nav-item:hover .nav-link, .nav-item:focus .nav-link { background-color: transparent; color: var(--primary-color); text-decoration: none; }
	.navbar .dropdown-menu { font-size: 14px; font-weight: 400; line-height: 1.2; text-transform: uppercase; background-color: var(--black-color); color: var(--primary-color); margin: 0; border: none; border-radius: 0; padding: 5px 0; }
	.navbar .dropdown-menu .dropdown-item { color: var(--primary-color); text-decoration: none; padding: 6px 16px; white-space: normal; }
	.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus, .navbar .dropdown-menu .dropdown-item:active { background-color: transparent; color: var(--white-color); }
	.navbar .open > .dropdown-menu { display: block; }
	.sidebar-nav { z-index: 1021; position: fixed; left: -250px; top: 0; width: 100%; max-width: 250px; height: 100%; text-align: left; -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; }
	.sidebar-nav .container, .sidebar-nav .container-fluid { height: 100%; }
	.sidebar-nav .navbar-collapse { display: block; overflow-y: auto; height: 100% !important; }
	.sidebar-nav .navbar-nav > .nav-item { border-bottom: rgba(100,100,100,.2) 1px solid; transform: translateY(-10px); opacity: 0; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out; }
	.sidebar-nav .navbar-nav .dropdown-toggle { padding-right: 28px; }
	.sidebar-nav .dropdown-toggle::after { position: absolute; right: 15px; top: 23px; border-width: 5px; opacity: .7; -webkit-transform: rotate(-90deg); transform: rotate(-90deg);  -webkit-transition-duration: .4s; transition-duration: .4s; }
	.sidebar-nav .show::after { -webkit-transform: rotate(0); transform: rotate(0); }
	.sidebar-nav .navbar-nav .show-item { transform: translateY(0px); opacity: 1; animation-name: forwards; animation-duration: 1s; animation-iteration-count: 1; animation-timing-function: ease; }
	@keyframes forwards {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0px); opacity: 1; }
    }
	@media (min-width: 768px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 5px 5px; font-size: 0.62rem; }
		.navbar-expand-md .dropdown-menu { min-width: 8.1rem; font-size: 11px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { white-space: nowrap; padding: 7px 11px; -webkit-transition-duration: .4s; transition-duration: .4s; }
		.navbar-expand-md .dropdown-menu .dropdown-item:hover { -webkit-transform: translateX(5px); transform: translateX(5px); }
		.navbar .dropdown-toggle::after { display: none; }
	}
	@media (min-width: 992px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 5px 7px; font-size: 13px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { padding: 7px 16px; }
		.navbar-expand-md .dropdown-menu { min-width: 8.9rem; font-size: 14px; }
	}
	@media (min-width: 1200px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 5px 10px; font-size: 13px;  }
		.navbar-expand-md .dropdown-menu .dropdown-item { padding: 7px 27px; }
		.navbar-expand-md .dropdown-menu { min-width: 11.64rem; }
	}
	@media (min-width: 1400px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 5px 15px; font-size: 14px; }
	}
/*== Menu End ==*/

/*== Form ==*/
	.site-form { font-size: 1rem; }
	.form-control, .form-select { border-color: #ced4da; color: var(--black-color); font-size: 16px; font-weight: 400; line-height: 1.4; height: calc(1.5em + .75rem + 4px); border-radius: 0; box-shadow: none; outline: none; }
	.form-control:focus, .form-select:focus { box-shadow: none; border-color: #202833; }
	.form-select { background-size: 15px; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); }
	textarea.form-control, .form-floating>textarea.form-control { height: 70px; }
	.g-recaptcha { -webkit-transform: scale(.8); transform: scale(.8); -webkit-transform-origin: center; transform-origin: center; }
	.form-check { padding-left: 2rem; margin-bottom: 0.5rem; }
	.form-check-input { margin-top: 2px; width: 18px; height: 18px; margin-left: -2rem !important; }
	.form-check-input[type=checkbox] { border-radius: 0 !important; }
	.form-check-input:focus { box-shadow: none; }
	.form-check-input:checked { background-color: var(--primary-color); border-color: var(--primary-color); }
	.form-check-label { line-height: 1.3; }
	
	.form-light .form-control, .form-light .form-select, .form-light .form-check-input { background-color: transparent; color: var(--white-color); border-color: rgba(255,255,255,.55); }
	.form-light .form-control:focus, .form-light .form-select:focus { border-color: var(--white-color); }
	.form-light .form-select option { color: var(--black-color); }
	input[type="checkbox"]:required { border-color: red; }
	.input-group .form-floating { flex: 1; }
	.form-floating>label { white-space: nowrap; }
	.form-control[type=file] { font-size: inherit; line-height: 1.7; }
	input::placeholder {
  color:var(--black-color); /* or any color you want */
  opacity: 1;  /* Optional: ensures the placeholder isn't faded */
}

/*== Form End ==*/

/*== Button ==*/
	.btn { font-size: 14px; font-weight: 400; text-transform: uppercase; padding: 9px 20px; text-decoration: none; border-radius: .6rem; box-shadow: none !important; transition: all .3s ease-in-out; }
	
	.btn-primary { color: var(--white-color); background-color: var(--primary-color); border-color: var(--primary-color); }
	.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active { color: var(--primary-color); background-color: var(--black-color); border-color: var(--primary-color); }
	
	.btn-secondary { color: var(--primary-color); background-color: var(--white-color); border: var(--primary-color) 1px solid;  font-size: 18px!important; line-height: 22px; -webkit-transition-duration: 0.5s;    -moz-transition-duration: 0.5s;    -o-transition-duration: 0.5s;    transition-duration: 0.5s;}
	.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active, .hot-btn a:hover .btn-secondary, .hot-btn a .btn-secondary:hover, .hot-btn a:focus .btn-secondary, .hot-btn a .btn-secondary:focus{ color: var(--white-color); background-color: var(--black-color); border: var(--white-color) 1px solid;}
	
	.btn-secondary span{ background-color: var(--primary-color); width: 36px; height: 36px; display: inline-block; padding: 7px;  -webkit-transition-duration: 0.5s;    -moz-transition-duration: 0.5s;    -o-transition-duration: 0.5s;    transition-duration: 0.5s;}
	.btn-secondary span img{ filter: brightness(10); -webkit-transition-duration: 0.5s;    -moz-transition-duration: 0.5s;    -o-transition-duration: 0.5s;    transition-duration: 0.5s;}
	
	.btn-secondary:hover span, .btn-secondary span:hover, .btn-secondary:focus span, .btn-secondary span:focus{ background-color: var(--white-color); }
	.btn-secondary:hover span img, .btn-secondary span img:hover, .btn-secondary:focus span img, .btn-secondary span img:focus, .hot-btn a:hover .btn-secondary span img{ filter: brightness(0); rotate: 360deg;}

	.btn-dark { color: var(--white-color); background-color: var(--dark-color); border-color: var(--dark-color); }
	.btn-dark:hover, .btn-dark:focus, .btn-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--black-color); border-color: var(--black-color); }
	
	.btn-outline-primary { color: var(--primary-color); border-color: var(--primary-color); }
	.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--primary-color); border-color: var(--primary-color); }
	
	.btn-outline-secondary { color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--secondary-color); border-color: var(--secondary-color); }
	
	.btn-outline-dark { color: var(--dark-color); border-color: var(--dark-color) }
	.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--dark-color); border-color: var(--dark-color); }
	
	.btns-group { max-width: 300px; }
	
	.btn-scrollTop { position: fixed; bottom: 150px; right: 10px; z-index: 1000; width: 3rem; height: 3rem; border-radius: 50%; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3e%3cpath fill='%23FFFFFF' d='M11.77,23c0.646,0,11.995,0,12.441,0c0.578,0,1.008-0.485,0.67-0.965c-0.271-0.384-5.739-8.06-6.208-8.715 c-0.308-0.431-1.04-0.424-1.348,0c-0.344,0.471-5.839,8.177-6.222,8.734C10.824,22.464,11.133,23,11.77,23z'/%3e%3c/svg%3e"); background-position: center; background-size: 80%; background-repeat: no-repeat; border: none; outline: none; -webkit-box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.6) !important; box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.6) !important; }
	@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .btn-scrollTop { right: 20px; } }
/*== Button End ==*/

/*== Carousel ==*/
	.carousel-indicators [data-bs-target] { width: 4px; height: 4px; border-radius: 50%; border: 2px solid var(--primary-color); background-color: var(--primary-color); opacity: 1; margin: 0 7px; }
	.carousel-indicators .active { width: 7px; height: 7px; background-color: transparent; border-color: var(--primary-color); }
	#carouselSliderHome .carousel-item { min-height: 420px; }
	#carouselSliderHome .carousel-indicators [data-bs-target] { background-color: var(--white-color); border-color: var(--white-color); }
	#carouselSliderHome .carousel-indicators .active { background-color: transparent; border-color: var(--white-color); }
	
/*== Carousel End ==*/

/*== List Styles ==*/
	.list-icon { list-style: none; margin: 0; padding: 0; }
	.list-icon a { color: inherit; }
	.list-icon li { display: flex; gap: .5rem; }
	.list-icon li svg { min-height: 18px; }
	.list-group { padding-left: 22px; margin-bottom: 0.5rem; text-align: left; }
	.list-group li { margin-bottom: 0.6rem; }
	@media (min-width: 768px) {
		.list-group { margin-bottom: 1rem; }
	}
/*== List Styles End ==*/

/*== Common Styles ==*/
	.hot-btn a{ height: 300px; color: var(--black-color); width: 300px;}	
	.hot-btn a:hover{ background-color: var(--primary-color)!important; color: var(--white-color); }
	.hot-btn a div svg{ fill: var(--primary-color);}
	.hot-btn a:hover svg{ fill: var(--white-color);}
	.footer-nav a{ font-size: 14px; }
	.bottom-m-2{ bottom: -2px;}
	.text-none {    text-transform: none !important;  }
		.breadcrumb { background-color: transparent; font-weight: 400; }
	.breadcrumb, .breadcrumb h2 { font-size: 13px; font-weight: 400; }
	.breadcrumb a { color: var(--black-color); text-decoration: none; }
	.breadcrumb a:hover { color: var(--primary-color); }
	.breadcrumb-item { display: inline-block; }
	.breadcrumb-item+.breadcrumb-item::before { content: '→'; font-size: 18px; line-height: 1; opacity: .5; }
/*== Common Styles ==*/

/*== Responsive ==*/
@media (min-width: 576px) {
	
	
}
@media (min-width: 768px) {
	.btn{ padding: 5px 10px; font-size: 12px;}
	.logos  img{ padding:0 15px ; width: 15%;}
	.table-hours tr td:first-child{ width: 120px;}
	.footer-nav a{ font-size: 11px; }
}
@media (min-width: 991px) {
	.btn{ padding: 6px 20px;}
	.hot-btn a{height: 210px; width: 210px; }
	.hot-btn a .fs-4{font-size: 16px!important;}
	.hot-btn a p{  font-size: 13px; line-height: 18px;}
	.btn-secondary span{ height: 29px; width: 29px; padding: 3px;}
	.inner-hbtn a{ height: 290px; width: 290px;}
	
}
@media (min-width: 1200px) {
	.hot-btn a{height: 260px; width: 260px;}
	.btn-secondary span{ height: 36px; width: 36px; padding: 7px;}
	.hot-btn a p{  font-size: 18px; line-height: 24px;}
	.logos  img{ padding:0  ; width: auto;}
	.btn{  font-size: 14px;}
	.footer-nav a{ font-size: 14px; }
	.table-hours tr td:first-child{ width: 150px;}
	.hot-btn a .fs-4{font-size: 20px!important;}
}
@media (min-width: 1400px) {
	.hot-btn a{height: 300px; width: 300px;}
	.hot-btn a .fs-4{font-size: 24px!important;}
}
@media (max-width: 767px) {
	.logos  img{ padding:15px ; width:28%;}
}
@media (max-width: 575px) {
	.btn{ padding: 9px;}	
	.slinks{ display:inline-block; margin: 0  auto;}
	.table-hours{ margin: 0 auto;}
}
/*== Responsive end ==*/