﻿@import url("../libs/bootstrap-5.3.3-dist/css/bootstrap.min.css");
@import url("../libs/jquery/jquery-ui/jquery-ui.css");
@import url("../libs/owlcarousel/owl.carousel.min.css");
@import url("../libs/slick/slick.css");
@import url("../libs/slick/slick-theme.css");
@import url("../libs/slick/animate.css");
@import url("../libs/fancybox/jquery.fancybox.min.css");
@import url("../libs/aos/aos.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../fonts/fontawesome-free-5.15.4-web/css/all.min.css");
@import url("../fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* General
* ----------------------------------------------------------------------------------------
*/

:root {
 --black-color: #272727;
 --red-color: #c70606;
}
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-size: 1.05em;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	color: var(--bs-dark);
	line-height: 1.3em;
}
a {
	color: var(--black-color);
	text-transform: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover, a :focus {
	text-decoration: none;
	box-shadow: none;
	color: var(--red-color);
}
a:focus {
	outline: 0 solid;
}
.red-link {
	color: var(--red-color) !important;
}
.red-link:hover {
	color: var(--bs-dark) !important;
}
img {
	max-width: 100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-size: 1.2em;
}
ul {
	padding: 0px !important;
	margin: 0px !important;
	list-style: none;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex-item {
	height: 100% !important;
	flex: 1;
}
main {
	overflow-x: hidden;
}
.owl-stage {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.owl-item {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: auto !important;
}
.mt-n1 {
	margin-top: -0.6rem !important;
}
/*
* ----------------------------------------------------------------------------------------
* Pseudotable
* ----------------------------------------------------------------------------------------
*/
.pseudotable .row.striped:nth-child(odd) {
	background: var(--bs-gray-100);
}
/*
* ----------------------------------------------------------------------------------------
* Pagination
* ----------------------------------------------------------------------------------------
*/
.pagination .page-link {
	color: var(--bs-dark) !important;
}
.pagination .page-link.active {
	background-color: var(--red-color) !important;
	color: var(--bs-white) !important;
	border: 1px solid var(--red-color) !important;
}
.pagination .page-link:hover {
	border: 1px solid var(--red-color) !important;
	box-shadow: 0 5px 12px rgba(0,0,0,.12);
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s
}
/*
* ----------------------------------------------------------------------------------------
* Blockquote
* ----------------------------------------------------------------------------------------
*/
blockquote {
	padding: 1.2em 30px 1.2em 75px;
	line-height: 1.6;
	position: relative;
}
blockquote::before {
	font-family: Arial;
	content: "\201C";
	color: var(--bs-gray-500);
	font-size: 4em;
	position: absolute;
	left: 10px;
	top: -10px;
}
blockquote::after {
	content: '';
}
/*
* ----------------------------------------------------------------------------------------
* Recaptcha
* ----------------------------------------------------------------------------------------
*/
.grecaptcha-badge {
	visibility: hidden !important;
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/
.footer {
	background: -webkit-linear-gradient(160deg, var(--red-color) 60%, var(--bs-dark) 60%);
}
/*
* ----------------------------------------------------------------------------------------
* Card Product
* ----------------------------------------------------------------------------------------
*/

.flex-cards {
	display: flex;
	flex-wrap: wrap;
}
.flex-cards .card {
	flex: 1;
}
.card-product:hover {
	box-shadow: 0 5px 12px rgba(0,0,0,.12);
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s
}
.card-product:hover {
	border: 1px solid var(--bs-gray-300);
}
.card-product .card-product-action {
	top: 10%;
	left: 90%;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	transition: all .3s ease 0s;
	visibility: hidden;
	width: 100%;
	z-index: 9
}
.card-product:hover .card-product-action {
	opacity: 1;
	visibility: visible
}
.card-product:hover .card-product-action .btn {
	opacity: 1;
	transform: translateX(0)
}
.card-product-action .btn {
	align-items: center;
	border-radius: .5rem;
	box-shadow: 0 2px 4px -1px rgba(145,158,171,.2), 0 4px 5px 0 rgba(145,158,171,.14), 0 1px 10px 0 rgba(145,158,171,.12);
	display: inline-flex;
	font-size: 14px;
	height: 34px;
	justify-content: center;
	line-height: 34px;
	text-align: center;
	transition: all .3s ease 0s;
	vertical-align: middle;
	width: 34px
}
.card-image {
	display: inline-block;
	width: auto;
	margin: 0px auto;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
.card-image {
	width: 80%;
}
}
/*
* ----------------------------------------------------------------------------------------
* Img Flex
* ----------------------------------------------------------------------------------------
*/
.img-flex {
	display: inline-flex;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
}
.img-flex img {
	object-position: center;
	transition: all 1.2s cubic-bezier(0.87, 0, 0.13, 1);
	margin: auto;
}
.img-flex:hover img:nth-child(1) {
	transform: translateX(-100%);
	filter: blur(20px);
	scale: 1.5;
}
.img-flex img:nth-child(2) {
	transform: translateX(100%);
	filter: blur(20px);
	scale: 1.5;
}
.img-flex:hover img:nth-child(2) {
	transform: translateX(-100%);
	filter: blur(0);
	scale: 1;
}
/*
* ----------------------------------------------------------------------------------------
* Button
* ----------------------------------------------------------------------------------------
*/
.btn-light {
	padding: 10px 25px;
	border: 1px solid var(--bs-dark);
	font-weight: 500;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	z-index: 2;
	overflow: hidden;
}
.btn-light:after {
	position: absolute;
	content: " ";
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
.btn-light:hover {
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
	color: var(--bs-white);
}
.btn-light:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: #000;
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
.btn-default {
	padding: 10px 25px;
	border: 1px solid var(--red-color);
	font-weight: 500;
	color: var(--bs-white);
	background: var(--red-color);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	z-index: 2;
	overflow: hidden;
}
.btn-default:after {
	position: absolute;
	content: " ";
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
.btn-default:hover {
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
	color: var(--bs-white);
	border: 1px solid var(--bs-black);
}
.btn-default:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: #000;
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
/*
* ----------------------------------------------------------------------------------------
* Header & Navbar
* ----------------------------------------------------------------------------------------
*/

header:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	content: "";
	width: 50%;
	height: 230px;
	z-index: -1;
	border-top: 230px solid var(--red-color);
	border-left: 230px solid var(--red-color);
	border-right: 50px solid transparent;
	border-bottom: 0px solid transparent;
}
header:after {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 230px;
	z-index: -2;
	border-top: 230px solid var(--bs-dark);
}
header img.img-fluid {
	width: 80%;
}
header [class*="bi bi-"] {
	background-color: var(--red-color);
	border-radius: 50px;
	color: var(--bs-white);
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin: auto 3px;
	font-size: 18px;
	text-align: center;
	position: relative;
	z-index: 1
}
header a:hover [class*="bi bi-"] {
	background-color: var(--bs-dark);
}
.navbar .btn {
	color: var(--bs-white);
	border: var(--red-color) 1px solid !important;
	background-color: var(--red-color) !important;
}
.navbar .btn:hover {
	color: var(--bs-white);
	border: var(--bs-white) 1px solid !important;
	background-color: var(--black-color) !important;
}
.navbar .nav-link, .navbar .nav-link.active {
	color: var(--bs-dark);
}
.navbar .nav-link:hover, .navbar .nav-link.active {
	color: var(--red-color);
}
.navbar.sticky {
	position: fixed;
	transition: 0.4s;
	width: 100%;
	top: 0;
	background: var(--red-color);
	opacity: 0.9;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.navbar.sticky .btn {
	border: var(--bs-white) 1px solid !important;
}
.navbar.sticky .btn:hover {
	border: var(--black-color) !important;
}

@media (min-width: 992px) {
header:before {
	width: 30%;
}
header:before {
	width: 30%;
	height: 150px;
	border-top: 150px solid var(--red-color);
	border-left: 150px solid var(--red-color);
	border-right: 50px solid transparent;
	border-bottom: 0px solid transparent;
}
header:after {
	content: "";
	width: 100%;
	height: 150px;
	z-index: -2;
	border-top: 150px solid var(--bs-dark);
}
header img.img-fluid {
	width: auto;
}
.navbar .nav-link {
	font-weight: 600;
	margin: 0 0.5em;
}
.navbar .nav-link, .navbar .nav-link.active {
	color: var(--bs-light);
}
.navbar .nav-link:hover, .navbar .nav-link.active {
	color: var(--bs-gray-300);
}
.navbar .nav-item > .dropdown-menu {
	display: block;
	top: 100%;
	margin-top: 5px;
	transform: rotateX(-75deg);
	transform-origin: 0% 0%;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.navbar .nav-item:hover > .dropdown-menu {
	transform: rotateX(0deg);
	visibility: visible;
	transition: .5s;
	opacity: 1;
}
.dropdown .dropdown-toggle {
	width: 100% !important;
	position: relative;
}
.dropdown-toggle::after {
	transform: rotate(0deg);
}
.dropdown-toggle:hover::after {
	transform: rotate(180deg);
}
.navbar.sticky .nav-link {
	color: var(--bs-light);
	font-weight: 600;
}
.navbar.sticky .nav-link:hover {
	color: var(--bs-gray-200);
}
}

@media only screen and (max-width: 992px) {
.navbar-nav {
	width: 100% !important;
}
.dropdown-menu {
	border: none;
}
.navbar-nav .nav-link {
	font-weight: 600;
	padding: 5px 10px;
}
.dropdown .dropdown-toggle {
	width: 100% !important;
	position: relative;
}
.dropdown .dropdown-toggle::after {
	position: absolute;
	top: 0.2em !important;
	right: 0 !important;
	border: none;
	margin-right: 0.5em;
	font-family: "bootstrap-icons";
	content: "\F229";
	color: var(--bs-dark);
}
.dropdown-toggle::after {
	transform: rotate(0deg);
}
.dropdown-toggle.show::after {
	transform: rotate(180deg);
}
}
/*
* ----------------------------------------------------------------------------------------
* Search
* ----------------------------------------------------------------------------------------
*/
.search {
	position: relative;
	margin-left: 20px;
}
.search a i {
	border-radius: 50px;
	color: var(--bs-white);
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin: auto 3px;
	font-size: 18px;
	text-align: center;
	position: relative;
	z-index: 1
}
.search a i.bi-x-lg {
	background-color: var(--bs-dark);
}
.search .search-form {
	background: var(--bs-white) none repeat scroll 0 0;
	-webkit-box-shadow: 1px 1px 7px rgba(0,0,0,.15);
	box-shadow: 1px 1px 7px rgba(0,0,0,.15);
	border-top: 2px solid var(--red-color);
	padding: 15px;
	position: absolute;
	top: 124%;
	width: 300px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
}
.search-form.active-search {
	opacity: 1;
	visibility: visible;
}
.search .search-form:before {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid var(--red-color);
	content: "";
	position: absolute;
}

@media only screen and (max-width: 992px) {
.search a i.bi-search {
	background-color: var(--bs-dark);
}
.search .search-form {
	left: -10%;
	top: 50px;
}
.search .search-form:before {
	left: 15px;
	top: -10px;
}
.search .search-form {
	border-top-color: var(--bs-dark);
}
.search .search-form:before {
	border-bottom-color: var(--bs-dark);
}
}

@media (min-width: 992px) {
.search a i.bi-search {
	background-color: var(--red-color);
}
.search .search-form {
	right: -10%;
}
.search .search-form:before {
	right: 15px;
	top: -10px;
}
.search .search-form {
	border-top-color: var(--red-color);
}
.search .search-form:before {
	border-bottom-color: var(--red-color);
}
}
/*
* ----------------------------------------------------------------------------------------
* Category
* ----------------------------------------------------------------------------------------
*/
.category {
	padding: 24px;
	border-radius: 20px;
	background-color: var(--bs-light);
	border: 1px solid var(--bs-gray-200);
}
.category ul.links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: -5px;
}
.category ul.links li {
	margin: 5px;
}
/*
* ----------------------------------------------------------------------------------------
* Sidebar
* ----------------------------------------------------------------------------------------
*/
.sidebar-nav ul li {
	border: none !important;
}
.sidebar-nav ul li {
	border: none !important;
}
.sidebar-nav ul.sub-menu {
	display: none;
}
.sidebar-nav ul.sub-menu li {
	padding: 0.4em 0 0.4em 0.4em !important;
}
.sidebar-nav .rotate {
	transform: rotate(180deg);
	margin-top: -5px;
}
.sidebar-nav ul li .menu-toggle:hover {
	cursor: pointer;
}
/*
* ----------------------------------------------------------------------------------------
* Present Block
* ----------------------------------------------------------------------------------------
*/
.present-block .box {
	padding: 15px;
	margin-bottom: 1px;
	border: 1px solid var(--red-color);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
.present-block .image {
	overflow: hidden;
}
.present-block .box img {
	transition-duration: 4s;
	margin: 0 auto;
	display: block;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
}
.present-block .box:hover img {
	z-index: 0;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
}
.present-block .box .detail {
	width: 100%;
	background-color: var(--bs-light);
	border: 1px solid var(--bs-gray-200);
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}
.present-block .box .detail p {
	margin-bottom: 12px;
	font-weight: 600;
}
.present-block .box .title {
	padding: 10px;
}
.present-block .box .title h5 {
	margin-bottom: 2px;
	font-size: 16px;
}
.present-block .box .title p {
	font-size: 13px;
	color: var(--bs-secondary);
	line-height: 25px;
}
/*
* ----------------------------------------------------------------------------------------
* Ribbon
* ----------------------------------------------------------------------------------------
*/

.cr {
	width: 200px;
	padding: 5px;
	position: absolute;
	text-align: center;
}
.cr-sticky {
	position: fixed;
}
.cr-top {
	top: 25px;
}
.cr-bottom {
	bottom: 25px;
}
.cr-left {
	left: -50px;
}
.cr-right {
	right: -50px;
}
.cr-top.cr-left, .cr-bottom.cr-right {
	transform: rotate(-45deg);
}
.cr-top.cr-right, .cr-bottom.cr-left {
	transform: rotate(45deg);
}
.cr-white {
	background-color: var(--bs-white);
	color: var(--bs-dark);
}
.cr-black {
	background-color: var(--bs-black);
	color: var(--bs-white);
}
.cr-grey {
	background-color: var(--bs-grey);
	color: var(--bs-white);
}
.cr-blue {
	background-color: var(--bs-blue);
	color: var(--bs-white);
}
.cr-green {
	background-color: var(--bs-green);
	color: var(--bs-white);
}
.cr-orange {
	background-color: var(--bs-orange);
	color: var(--bs-white);
}
.cr-purple {
	background-color: var(--bs-purple);
	color: var(--bs-white);
}
.cr-red {
	background-color: var(--bs-red);
	color: var(--bs-white);
}
.cr-yellow {
	background-color: var(--bs-yellow);
	color: var(--bs-dark);
}
/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
	font-size: 20px;
	font-weight: bold;
}
.ribbon-red {
	color: var(--bs-white);
 --c: var(--red-color);
}
.ribbon-yellow {
	color: var(--bs-dark);
 --c: var(--bs-yellow);
}
.ribbon {
 --r: .4em;
	position: absolute;
	top: 20px;
 left: calc(-1*var(--r));
	line-height: 1.8;
 padding: 0 .5em calc(2*var(--r));
	border-radius: var(--r) 0 0 var(--r);
 background: 
 radial-gradient(100% 50% at left, var(--c) 98%, #0000 101%) 100% 0/.5lh calc(100% - 2*var(--r)), radial-gradient(100% 50% at right, #0005 98%, #0000 101%) 0 100%/var(--r) calc(2*var(--r)), conic-gradient(from 90deg at var(--r) calc(100% - 2*var(--r)), #0000 25%, var(--c) 0) 0 0/calc(101% - .5lh) 100%;
	background-repeat: no-repeat;
}
/*
* ----------------------------------------------------------------------------------------
* Action
* ----------------------------------------------------------------------------------------
*/
.action .image {
	position: relative;
	z-index: -1;
	border: var(--bs-gray-200) 1px solid;
}
.action .image img {
	width: 100%;
	border-radius: 30px;
}
.action .option {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.action .option h5 {
	text-align: center;
	padding-top: 20px;
	font-size: 1.5em;
	text-shadow: 2px 2px var(--bs-white), -2px 2px var(--bs-white), 2px -2px var(--bs-white), -2px -2px var(--bs-white), 2px 2px 5px var(--bs-secondary);
}
.action .option .extra ul {
	width: 100%;
}
.action .option .extra {
	margin-top: 20px;
}
.action .option .extra ul li {
	width: 100%;
	text-align: center;
	position: relative;
}
.action .option .extra ul li:hover .detail {
	bottom: 5px;
	background-color: rgba(255, 255, 255, 0.9);
}
.action .option .extra ul li:hover .detail p {
	opacity: 1;
}
.action .option .extra ul li img {
	width: 100%;
	border-radius: 30px;
}
.action .option .extra ul li a {
	font-size: 14px;
	font-weight: 400;
}
.action .option .extra ul li p {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--bs-secondary);
}
.action .option .extra ul li .detail {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: calc(100% - 10px);
	position: absolute;
	left: 5px;
	bottom: -20px;
	background-color: rgb(255, 255, 255);
	border-radius: 30px;
}
.action .option .extra ul li .detail p {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

@media only screen and (min-width: 992px) {
.action .option h5 {
	text-align: left;
	padding-top: 50px;
	font-size: 2.5em;
	margin-left: -100px;
}
}

@media only screen and (max-width: 380px) {
.action .option .extra ul {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.action .option .extra ul li {
	width: calc(100% - 24px);
}
}
/*
* ----------------------------------------------------------------------------------------
* About
* ----------------------------------------------------------------------------------------
*/

.about-img {
	width: 100%;
	border-radius: 30px;
	position: relative;
	min-height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.about-block {
	background-color: var(--bs-white);
	border-top-left-radius: 30px;
	position: relative;
}
.about-block:before {
	content: "";
	height: 30px;
	width: 30px;
	position: absolute;
	top: -29px;
	left: 97px;
	background-image: url("../images/top-shape.png");
	background-size: 100%;
	background-repeat: no-repeat;
}
.about-block:after {
	content: "";
	height: 30px;
	width: 30px;
	position: absolute;
	bottom: 0;
	left: -29px;
	background-image: url("../images/top-shape.png");
	background-size: 100%;
	background-repeat: no-repeat;
}
.about-item-1 {
	background-color: #fef1f1;
}
.about-item-2 {
	background-color: #e1fcf2;
}
.about-item-3 {
	background-color: #f4f1fe;
}
.about-item-4 {
	background-color: #fbf9e4;
}
.about-box {
	padding: 30px;
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.about-box:hover .about-image img, .about-box:hover .about-image svg {
	-webkit-animation: zoom-in-zoom-out 0.5s ease-out;
	animation: zoom-in-zoom-out 0.5s ease-out;
}
.about-box .about-image {
	width: 50px;
	height: 50px;
}
.about-box .about-image {
	margin-bottom: 12px;
	height: 50px !important;
	width: 50px !important;
}

@media (min-width: 992px) {
.about-block {
	padding: 30px 0 0 30px;
	width: calc(100% + 150px);
	margin-left: -150px;
}
}
 @-webkit-keyframes zoom-in-zoom-out {
 0% {
 -webkit-transform: scale(1, 1);
 transform: scale(1, 1);
 opacity: 1;
}
 50% {
 -webkit-transform: scale(1.2, 1.2);
 transform: scale(1.2, 1.2);
}
 100% {
 -webkit-transform: scale(1, 1);
 transform: scale(1, 1);
 opacity: 1;
}
}
@keyframes zoom-in-zoom-out {
 0% {
 -webkit-transform: scale(1, 1);
 transform: scale(1, 1);
 opacity: 1;
}
 50% {
 -webkit-transform: scale(1.2, 1.2);
 transform: scale(1.2, 1.2);
}
 100% {
 -webkit-transform: scale(1, 1);
 transform: scale(1, 1);
 opacity: 1;
}
}
.about-box .about-title h5 {
	margin-bottom: 2px;
	font-size: 16px;
	text-align: center;
}
.about-box .about-title h5 a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.03rem;
	color: var(--bs-dark);
	text-transform: capitalize;
}
.about-box .about-title p {
	font-size: 13px;
	color: var(--bs-secondary);
	line-height: 25px;
}
/*
* ----------------------------------------------------------------------------------------
* Banner
* ----------------------------------------------------------------------------------------
*/
.banner .justify {
	width: 100%;
	height: 500px;
	min-height: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	border-radius: 30px 30px 0 30px;
	position: relative;
	z-index: -1;
}
.banner .justify:after {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("../images/1.png");
	position: absolute;
	top: 0;
	left: 0;
}
.banner .box {
	background-color: var(--bs-white);
	border-top-left-radius: 30px;
	max-width: 400px;
	padding: 30px 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
	z-index: 5;
}
.banner .box:before {
	content: "";
	background-image: url("../images/left-shape.png");
	background-repeat: no-repeat;
	background-size: 100%;
	height: 30px;
	width: 30px;
	position: absolute;
	z-index: 1;
	left: -30px;
	bottom: 0;
}
.banner .box:after {
	content: "";
	background-image: url("../images/right-shape.png");
	background-repeat: no-repeat;
	background-size: 100%;
	height: 30px;
	width: 30px;
	position: absolute;
	z-index: 1;
	right: 0;
	top: -30px;
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}
.banner .box h4 {
	margin-bottom: 20px;
	font-size: 40px;
	font-weight: bold;
	color: var(--bs-secondary);
}

@media only screen and (max-width: 1399px) {
.banner .box h4 {
	font-size: 36px;
}
}

@media only screen and (max-width: 1199px) {
.banner {
	max-height: 400px;
	min-height: 400px;
}
.banner .box {
	max-width: 300px;
}
.banner .box span {
	font-size: 18px;
}
.banner .box h4 {
	font-size: 28px;
}
.banner .justify {
	height: 400px;
	min-height: 400px;
}
}

@media only screen and (max-width: 991px) {
.banner .box {
	max-width: 250px;
}
.banner .box span {
	font-size: 16px;
}
.banner .box h4 {
	font-size: 22px;
}
}

@media only screen and (max-width: 575px) {
.banner .box {
	margin: 0 auto;
	border-top-right-radius: 30px;
}
.banner .box:after {
	top: auto;
	right: -30px;
	bottom: 0;
	-webkit-transform: none;
	transform: none;
}
.banner .justify {
	border-radius: 30px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Owl Dots
* ----------------------------------------------------------------------------------------
*/
.owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent
}
.owl-dots .owl-dot {
	display: inline-block;
	zoom: 1
}
.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: var(--bs-gray-200);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
	background: var(--red-color)
}
.reviews .box {
	margin-bottom: 1.6%;
	line-height: 1.4;
	border-radius: 5px;
	overflow: hidden;
	background: var(--bs-white);
	border: var(--bs-gray-200) 1px solid;
	box-shadow: 0 3px 7px -1px rgba(0, 0, 0, .1);
	z-index: 0;
}
/*
* ----------------------------------------------------------------------------------------
* Reviews
* ----------------------------------------------------------------------------------------
*/
.reviews .box a {
	color: inherit;
}
.reviews .box .detail {
	padding: 1rem;
	background: var(--bs-white);
	position: relative;
	z-index: 1;
}
.reviews .box .detail h6 {
	margin-top: 5px;
}
.reviews .box p:first-of-type {
	margin-top: 1.25rem;
}
.reviews .box p:first-of-type:before {
	content: "";
	position: absolute;
	height: 5px;
	background: var(--red-color);
	width: 35px;
	margin-top: -1rem;
	border-radius: 3px;
}

@media (min-width: 640px) {
.reviews .box .detail {
	flex-basis: 95%;
}
.reviews .box .detail:before {
	content: "";
	background: var(--bs-white);
	width: 30px;
	position: absolute;
	left: -10px;
	top: 0;
	bottom: 0;
	z-index: -1;
}
}
/* 
---------------------------------------------
Carousel
--------------------------------------------- 
*/
.carousel .content {
	position: relative;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
}
.carousel .control {
	position: absolute;
	top: 50%;
	z-index: 1 !important;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: transparent;
	opacity: 0;
	filter: alpha(opacity=0);
	text-shadow: none;
	transition: all .25s ease;
	padding: 2px;
	outline: 0;
	border: 0;
}

@media (max-width: 575px) {
.carousel .control {
	display: none !important;
}
}
.carousel .slick-dots {
	opacity: 0;
	filter: alpha(opacity=0);
	bottom: 60px;
}
.carousel .slick-dots li button::before {
	font-size: 12px;
}
.carousel .slick-dots li button:hover:before, .carousel .slick-dots li button:focus:before, .carousel .slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--red-color);
}
.carousel .slick-slide {
	outline: 0;
}
.carousel:hover .control, .carousel:hover .control, .carousel:hover .slick-dots {
	opacity: 1;
	filter: alpha(opacity=100);
}
.carousel .control.left {
	left: 20px;
}
.carousel .control.right {
	right: 20px;
}
.carousel .control i {
	background: rgba(0, 0, 0, 0.3);
	color: var(--bs-white);
	line-height: 58px;
	width: 60px;
	height: 60px;
	font-size: 22px;
	border-radius: 0;
	transition: all 500ms ease;
}
.carousel .control i:hover {
	background: var(--red-color);
	color: var(--bs-white);
}
.carousel [data-animation-in] {
	opacity: 0;
}
/* 
/*rating*/
.counterW {
	margin: 0 0 0 60px;
}
.ratingW {
	position: relative;
	margin: 10px 0 0;
}
.ratingW li {
	display: inline-block;
	margin: 0px;
}
.ratingW li a {
	display: block;
	position: relative;
}
.star {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .9em;
	margin-right: .9em;
	margin-bottom: 1.2em;
	border-right: .3em solid transparent;
	border-bottom: .7em solid #ddd;
	border-left: .3em solid transparent;
	/* Controlls the size of the stars. */
	font-size: 24px;
}
.star:before, .star:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: .6em;
	left: -1em;
	border-right: 1em solid transparent;
	border-bottom: .7em solid #ddd;
	border-left: 1em solid transparent;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.star:after {
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
.ratingW li.on .star {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .9em;
	margin-right: .9em;
	margin-bottom: 1.2em;
	border-right: .3em solid transparent;
	border-bottom: .7em solid #FC0;
	border-left: .3em solid transparent;
	/* Controlls the size of the stars. */
	font-size: 24px;
}
.ratingW li.on .star:before, .ratingW li.on .star:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: .6em;
	left: -1em;
	border-right: 1em solid transparent;
	border-bottom: .7em solid #FC0;
	border-left: 1em solid transparent;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.ratingW li.on .star:after {
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
/*
* ----------------------------------------------------------------------------------------
* Button To Top
* ----------------------------------------------------------------------------------------
*/
#button-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 50px;
	width: 50px;
	display: none;
	place-items: center;
	border-radius: 50%;
	cursor: pointer;
	z-index: 999;
}
#button-to-top-progress-value {
	height: calc(100% - 15px);
	width: calc(100% - 15px);
	background-color: var(--bs-white);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.5em;
	color: var(--bs-dark);
}
/*
* ----------------------------------------------------------------------------------------
* Message-bt
* ----------------------------------------------------------------------------------------
*/
.message-bt {
	background: var(--bs-dark);
	border: 2px solid var(--bs-dark);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	height: 50px;
	width: 50px;
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: 999;
	transition: .3s;
}
.message-bt .text-call {
	text-align: center;
	height: 50px;
	width: 50px;
	overflow: hidden;
	display: block;
}
.message-bt:hover {
	z-index: 1;
	background: var(--bs-light);
	color: transparent;
	transition: .3s;
}
.message-bt i {
	color: var(--bs-light);
	font-size: 30px;
	transition: .3s;
	line-height: 45px;
	transition: .5s ease-in-out;
}
.message-bt:hover i {
	color: var(--bs-dark);
	transition: .3s;
}
.message-bt i {
	animation: 1200ms ease 0s normal none 1 running shake;
	animation-iteration-count: infinite;
	-webkit-animation: 1200ms ease 0s normal none 1 running shake;
	-webkit-animation-iteration-count: infinite;
}

@media only screen and (max-width: 768px) {
.message-bt {
	bottom: 160px;
}
}
/*callback-bt*/
.callback-bt {
	background: var(--bs-danger);
	border: 2px solid var(--bs-danger);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	height: 50px;
	width: 50px;
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: 999;
	transition: .3s;
}
.callback-bt .text-call {
	text-align: center;
	height: 50px;
	width: 50px;
	overflow: hidden;
	display: block;
}
.callback-bt:hover {
	z-index: 1;
	background: var(--bs-light);
	color: transparent;
	transition: .3s;
}
.callback-bt i {
	color: var(--bs-light);
	font-size: 30px;
	transition: .3s;
	line-height: 45px;
	transition: .5s ease-in-out;
}
.callback-bt:hover i {
	color: var(--bs-danger);
	transition: .3s;
}
.callback-bt i {
	animation: 1200ms ease 0s normal none 1 running shake;
	animation-iteration-count: infinite;
	-webkit-animation: 1200ms ease 0s normal none 1 running shake;
	-webkit-animation-iteration-count: infinite;
}

/* animations icon */
@keyframes shake {
0% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
10% {
 transform: rotateZ(-30deg);
 -ms-transform: rotateZ(-30deg);
 -webkit-transform: rotateZ(-30deg);
}
20% {
 transform: rotateZ(15deg);
 -ms-transform: rotateZ(15deg);
 -webkit-transform: rotateZ(15deg);
}
30% {
 transform: rotateZ(-10deg);
 -ms-transform: rotateZ(-10deg);
 -webkit-transform: rotateZ(-10deg);
}
40% {
 transform: rotateZ(7.5deg);
 -ms-transform: rotateZ(7.5deg);
 -webkit-transform: rotateZ(7.5deg);
}
50% {
 transform: rotateZ(-6deg);
 -ms-transform: rotateZ(-6deg);
 -webkit-transform: rotateZ(-6deg);
}
60% {
 transform: rotateZ(5deg);
 -ms-transform: rotateZ(5deg);
 -webkit-transform: rotateZ(5deg);
}
70% {
 transform: rotateZ(-4.28571deg);
 -ms-transform: rotateZ(-4.28571deg);
 -webkit-transform: rotateZ(-4.28571deg);
}
80% {
 transform: rotateZ(3.75deg);
 -ms-transform: rotateZ(3.75deg);
 -webkit-transform: rotateZ(3.75deg);
}
90% {
 transform: rotateZ(-3.33333deg);
 -ms-transform: rotateZ(-3.33333deg);
 -webkit-transform: rotateZ(-3.33333deg);
}
100% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
}
 @-webkit-keyframes shake {
0% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
10% {
 transform: rotateZ(-30deg);
 -ms-transform: rotateZ(-30deg);
 -webkit-transform: rotateZ(-30deg);
}
20% {
 transform: rotateZ(15deg);
 -ms-transform: rotateZ(15deg);
 -webkit-transform: rotateZ(15deg);
}
30% {
 transform: rotateZ(-10deg);
 -ms-transform: rotateZ(-10deg);
 -webkit-transform: rotateZ(-10deg);
}
40% {
 transform: rotateZ(7.5deg);
 -ms-transform: rotateZ(7.5deg);
 -webkit-transform: rotateZ(7.5deg);
}
50% {
 transform: rotateZ(-6deg);
 -ms-transform: rotateZ(-6deg);
 -webkit-transform: rotateZ(-6deg);
}
60% {
 transform: rotateZ(5deg);
 -ms-transform: rotateZ(5deg);
 -webkit-transform: rotateZ(5deg);
}
70% {
 transform: rotateZ(-4.28571deg);
 -ms-transform: rotateZ(-4.28571deg);
 -webkit-transform: rotateZ(-4.28571deg);
}
80% {
 transform: rotateZ(3.75deg);
 -ms-transform: rotateZ(3.75deg);
 -webkit-transform: rotateZ(3.75deg);
}
90% {
 transform: rotateZ(-3.33333deg);
 -ms-transform: rotateZ(-3.33333deg);
 -webkit-transform: rotateZ(-3.33333deg);
}
100% {
 transform: rotateZ(0deg);
 -ms-transform: rotateZ(0deg);
 -webkit-transform: rotateZ(0deg);
}
}
