@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #e88027;
  --secondary-color: #224087;
  --dark-color: #070e14;
  --black-color: #000;
  --white-color: #ffffff;
  --light-color: #f1f6fa;
  --gray-color: #888888;
  --primary-font: 'League Spartan', sans-serif;
  --secondary-font: 'Poppins', sans-serif;
  --transition: ease all 0.6s;
  --bs-border-color: #f2f2f2;
}

body {
  font-size: 15px;
  font-family: var(--secondary-font);
  color: var(--dark-color);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

.accessibility {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-holder {
  flex-grow: 1;
}

figure {
  margin-bottom: 0;
}

.block {
  padding: 50px 0;
}

.sm-body-text {
  font-size: 15px;
}

.md-body-text {
  font-size: 16px;
}

.lg-body-text {
  font-size: 17px;
}

.section-title {
  color: var(--dark-color);
  font-size: 30px;
  margin-bottom: 20px;
}

.rounded {
  border-radius: 15px !important;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li:before {
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.single-content ul {
  margin-bottom: 20px;
}

.bullet-list,
.bullet-list ul,
.single-content ul {
  list-style: disc;
  padding-left: 25px;
}

.bullet-list li,
.check-list li {
  margin-bottom: 5px;
}

.bullet-list li::marker,
.single-content ul li::marker {
  font-size: 25px;
  line-height: 1;
  color: var(--primary-color);
}

.bullet-list li:last-child,
.check-list li:last-child {
  margin-bottom: 0;
}

.bullet-list ul li::marker,
.single-content ul li::marker {
  font-size: 16px;
}

.bullet-list ul li {
  margin-bottom: 2px;
}
.bullet-list ul li:last-child {
  margin-bottom: 10px;
}

.sticky {
  position: sticky;
  top: 100px;
}

.view-link {
  font-family: var(--primary-font);
  font-weight: 500;
}

.view-link svg {
  font-size: 12px;
}

.view-link {
  font-family: var(--primary-font);
  color: var(--secondary-color);
}

.view-link svg {
  font-size: 12px;
  transition: var(--transition);
}

.view-link:hover svg {
  transform: translateX(5px);
}

.card {
  border: none;
  border-radius: 25px;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(184, 38, 49, 0.06);
}

.card.hover-shadow-card:hover {
  border-color: transparent;
  box-shadow: 8px 0 35px rgba(184, 38, 49, 0.15);
}

.card-body {
  padding: 30px;
}

.card-body .icon {
  margin-bottom: 30px;
}

.card-body .icon img {
  height: 60px;
  object-fit: contain;
}

.card-body h3 {
  font-size: 20px;
}

header .container-fluid {
  padding: 0 15px;
}
.floating {
  position: absolute;
}

.sticky-section {
  position: sticky;
  top: 100px;
}

/* ---------------------
Colors
--------------------- */

.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.table-primary {
  --bs-table-bg: var(--primary-color) !important;
  --bs-table-color: var(--white-color);
}

.table-secondary {
  --bs-table-bg: var(--secondary-color) !important;
  --bs-table-color: var(--white-color);
}

.table > :not(caption) > * > * {
  padding: 15px;
}

/* ---------------------
Forms
--------------------- */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='file'],
select {
  height: 50px;
  border-radius: 0 !important;
}

textarea {
  height: 100px;
  border-radius: 0 !important;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
input[type='file'],
textarea,
textarea.form-control {
  padding-left: 20px;
  border-color: #d0d0d0;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  color: var(--white-color);
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 5;
  background-image: none;
  opacity: 1;
}

.btn-close:hover {
  color: var(--white-color);
  opacity: 1;
}

.offcanvas.offcanvas-start{
		width:280px!important;
	}
	.offcanvas-header .btn-close{
		top:15px;
		right:15px;
		background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
	}

/* ---------------------
Buttons
--------------------- */
.btn {
  position: relative;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: var(--transition);
}

.btn-lg {
  font-size: 16px;
  font-weight: 500;
  padding-top: 13px;
  padding-bottom: 13px;
}

.btn .fa-arrow-right {
  font-size: 14px;
  transition: var(--transition);
}

.btn:hover .fa-arrow-right {
  transform: translateX(5px);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-light {
  color: var(--dark-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.btn:after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    to bottom,
    rgba(229, 172, 142, 0),
    rgba(255, 255, 255, 0.4) 50%,
    rgba(229, 172, 142, 0)
  );
  transform: rotateZ(60deg) translate(-5em, 10em);
}
/*This activates the sheen once the button has been hovered*/
.btn:hover::after {
  animation: sheen 1.5s forwards;
}
@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

.nav-pills {
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 30px;
  overflow: scroll;
}

.nav-pills .nav-link {
  font-size: 12px;
  white-space: nowrap;
  color: var(--dark-color);
  font-weight: 500;
  background-color: var(--white-color);
  padding: 5px 20px;
  border-radius: 100px;
  border: 1px solid var(--secondary-color);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

/* Swiper Button */

.swiper-button-next,
.swiper-button-prev {
  top: unset;
  bottom: -0;
  width: auto;
  height: 10px;
}

.swiper-button-next {
  right: unset;
  left: 40px;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--secondary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'Fontawesome';
  font-size: 14px;
  color: var(--black-color);
}

.swiper-button-prev:after {
  content: '\f060';
}

.swiper-button-next:after {
  content: '\f061';
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 50px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--white-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Waves */
/* ------------Waves----------- */

.waves-block-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 70px;
  margin: -35px auto 0 auto;
  z-index: 1;
}

.waves-block svg {
  position: absolute;
  top: 27px;
  left: 30px;
  color: var(--white-color);
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  50% {
    opacity: 0.9;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=90)';
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

.fa-play:before {
  content: '\f04b';
}

.waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  border-radius: 100%;

  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* ---------------------
Page Banner
--------------------- */

.page-banner {
  position: relative;
  padding: 80px 0 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  text-align: center;
  color: var(--white-color);
}

.page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.85;
  z-index: -1;
}

.page-banner h1 {
  font-size: 38px;
  margin-bottom: 0;
}

.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.single-post .breadcrumb {
  justify-content: flex-start;
  padding: 15px 0;
  font-weight: 400;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\f105';
  font-family: 'Fontawesome';
  font-size: 12px;
  margin-top: 3px;
  color: var(--white-color);
}

.single-post .breadcrumb-item + .breadcrumb-item::before {
  color: var(--black-color);
}

.woocommerce-breadcrumb {
  color: var(--primary-color);
  padding: 30px 0;
}

.woocommerce-breadcrumb a {
  color: var(--dark-color);
}

/* ---------------------
Header
--------------------- */

/* Header */

.site-header {
  background-color: var(--white-color);
  padding: 8px 0;
  border-bottom: 1px solid #e2e2e2;
}

.site-branding .site-logo {
  width: 90px;
}

.offcanvas-body {
  padding: 0;
}

.slicknav_menu {
  padding: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
  color: var(--white-color);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f26317+0,fd8b28+100 */
  background: linear-gradient(
    to right,
    rgba(242, 99, 23, 1) 0%,
    rgba(253, 139, 40, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 0;
}

.slicknav_nav .slicknav_row:hover a {
  color: var(--white-color);
}

.slicknav_nav .slicknav_row:hover > a {
  background-color: transparent;
}

.main-navigation {
  display: none;
  font-family: var(--primary-font);
  width: auto;
  margin-left: auto;
}

.main-navigation ul.menu > li {
  padding: 20px 0;
  margin-right: 35px;
}

.main-navigation a {
  font-size: 16px;
}

.current_page_item > a,
.menu-item > a:hover {
  color: var(--white-color);
}

.slicknav_menu {
  background-color: transparent;
}

.slicknav_nav a {
  color: var(--dark-color);
}

.si-wrap {
  padding-left: 20px;
  line-height: 1;
  border-left: 2px solid var(--dark-color);
}

.si-wrap a {
  color: var(--secondary-color);
  margin-right: 15px;
}

.si-wrap a:last-child {
  margin-right: 0;
}

.si-wrap a:hover {
  color: var(--primary-color);
}

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white-color);
  padding: 30px 0;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-slider .swiper-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#224087+0,224087+100&1+1,0.3+100 */
  /*background: linear-gradient(
    to right,
    rgba(34, 64, 135, 1) 0%,
    rgba(34, 64, 135, 1) 1%,
    rgba(34, 64, 135, 0.3) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  z-index: -1;
}

.hero-slider .swiper-slide h1 {
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-slider .swiper-pagination-bullets {
  width: auto;
	left:8px;
}

/* -------------------------------------------------------
                  Category Card
------------------------------------------------------- */
.cat-card {
  text-align: center;
}

.cat-card figure {
  margin-bottom: 10px;
  aspect-ratio: 155 / 110;
  overflow: hidden;
}
.cat-card figure img {
  width: 100%;
  height: 100%;
  transition: ease all 3s;
}

.cat-card figure:hover img {
  transform: scale(1.15);
}

.cat-card h3 {
  font-size: 18px;
  font-weight: 600;
}

/* -------------------------------------------------------
              Intro Section
------------------------------------------------------- */

.intro-section {
  position: relative;
  background-color: var(--secondary-color);
  isolation: isolate;
}

.intro-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/vector-line.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

/* -------------------------------------------------------
                  Product card
------------------------------------------------------- */

.product-card figure {
	position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1.9;
  padding: 10px;
  border: 1px solid #e2e2e2;
  margin-bottom: 15px;
	overflow:hidden;
}

.product-card figure .overlay-content{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	background-color:#224087d1;
	color:#fff;
	padding:15px;
	text-align:center;
	opacity:0;
	visibility:hidden;
	transform:translatey(20px);
	transition:var(--transition);
}

.product-card:hover figure .overlay-content{
	opacity:1;
	visibility:visible;
	transform:translatey(0);
} 
.product-card:hover figure .overlay-content ul{
	list-style:disc;
	padding-left:20px;
	text-align:left;
}
.product-card:hover figure .overlay-content ul li{
	margin-bottom:3px;
}

.product-card .product-card-body .sub-cat {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}
.product-card .product-card-body .product-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.product-card .product-card-body .product-title:hover {
  color: var(--secondary-color);
}

/* -------------------------------------------------------
              Offer Section
------------------------------------------------------- */

.offer-section {
  color: var(--white-color);
  padding: 50px 0;
  background-color: var(--secondary-color);
}
.offer-section .lft {
  display: flex;
  gap: 15px;
}

.offer-section .lft h2 {
  font-size: 26px;
  line-height: 1.2;
}

.offer-section .lft p {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 0;
}

.offer-section .lft img {
  width: 60px;
}

.offer-section .item figure{
	width:100%;
	height:auto;
}
.offer-section .item figure img{
	height:100%;
	width:100%;
	object-fit:cover;
	object-position:center;
}

/* -------------------------------------------------------
                Counter Section
------------------------------------------------------- */

.counter-section {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.counter-item {
  text-align: center;
}

.counter-item .icon {
  position: relative;
  width: 60px;
  object-fit: contain;
  margin: 0 auto 15px auto;
}

.counter-item .icon:before{
	content:"";
	position:absolute;
	top:5px;
	right:-10px;
	width:30px;
	height:30px;
	background-color:#054988;
	border-radius:100px;
	opacity:0.1;
}

.counter-item h2,
.counter-item .symbol {
  font-size: 30px;
  margin-bottom: 0;
}

/* -------------------------------------------------------
                  BLog card
------------------------------------------------------- */

.blog-card .blog-thumb {
  overflow: hidden;
}

.blog-card .blog-thumb img {
  width: 100%;
  aspect-ratio: 23 / 15;
  object-fit: cover;
  transition: ease all 4s;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-card .blog-card-body {
  padding-top: 17px;
}

.blog-card .blog-card-body .post-date {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-card .blog-card-body h3 {
  font-size: 20px;
}

.blog-card .blog-card-body h3:hover a {
  color: var(--primary-color);
}

/* -------------------------------------------------------
                  Footer
------------------------------------------------------- */

.site-footer {
  position: relative;
  color: var(--white-color);
  background-color: var(--primary-color);
  isolation: isolate;
}

.site-footer::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-image: url('../img/footer-circle-shape.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
}

.site-footer .footer-top {
  padding: 80px 0 30px 0;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 20px;
}

.footer-link li {
  margin-bottom: 12px;
}

.footer-link li:last-child {
  margin-bottom: 0;
}

.footer-link .current_page_item > a,
.footer-link .menu-item > a:hover {
  color: var(--secondary-color);
}

.site-footer .contact-wrap {
  margin-bottom: 0;
}

.site-footer .contact-wrap .contact-detail {
  margin-bottom: 10px;
}

.footer-bottom {
	font-size:14px;
  padding: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* -------------------------------------------------------
                  About Page
------------------------------------------------------- */

.history-section {
  background-color: #f6f6f6;
}

/* The actual timeline (the vertical ruler) */
.history-timeline-wrap {
  position: relative;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.history-timeline-wrap::after {
  content: '';
  position: absolute;
  width: 0;
  background-color: transparent;
  top: 0;
  bottom: 0;
  left: 26px;
  border: 2px dashed var(--primary-color);
}

/* Container around content */
.timeline {
  position: relative;
  padding: 0 40px;
  margin-bottom: 50px;
  width: 50%;
}

.timeline h4 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* The circles on the timeline */
.timeline::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -15px;
  background-color: var(--primary-color);
  top: 0;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.timeline.left {
  left: 0;
}

/* Place the container to the right */
.timeline.right {
  left: 50%;
}

/* Fix the circle for containers on the right side */
.timeline.right::after {
  left: -10px;
}

/* The actual content */
.timeline .timeline .conten {
  padding: 20px 30px;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }
	


  /* Full-width containers */
  .timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline::before {
    left: 60px;
    border: medium solid #b99a35;
    border-width: 10px 10px 10px 0;
    border-color: transparent #b99a35 transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .timeline.left::after,
  .timeline.right::after {
    left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .timeline.right {
    left: 0%;
  }
	
}

.mv-card {
  position: relative;
  color: var(--white-color);
  text-align: center;
  padding: 40px 25px;
  background-color: var(--primary-color);
  height: 100%;
  isolation: isolate;
}

.mv-card-wrap:nth-child(even) .mv-card {
  background-color: #3771c8;
}

.mv-card:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-image: url('../img/mv-card-shape.png');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.mv-card h3 {
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 700;
}

.md-img {
  position: relative;
  isolation: isolate;
}

.md-img:before {
  content: '';
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 80%;
  height: 95%;
  background-color: var(--primary-color);
  z-index: -1;
}

.signature {
  max-width: 200px;
  width: 100%;
  margin-bottom: 10px;
}

.md-info h4 {
  font-size: 22px;
  font-family: var(--primary-font);
  margin-bottom: 0;
}

/* -------------------------------------------------------
                  Gallery Page
------------------------------------------------------- */

.albumn_card .thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 270;
  overflow: hidden;
  margin-bottom: 10px;
}

.albumn_card .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.albumn_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.albumn_card .item-count {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--white-color);
  font-weight: 500;
}

.albumn_card .title {
  font-size: 18px;
}
.galllery-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2.9;
  object-fit: cover;
}

/* -------------------------------------------------------
                  eBook Page
------------------------------------------------------- */

.ebook_card {
	display:block;
  text-align: center;
}

.ebook_card .thumb {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.ebook_card .thumb:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 64, 135, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.ebook_card .thumb .view-btn-wrap {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.ebook_card:hover .thumb .view-btn-wrap,
.ebook_card:hover .thumb:before {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.ebook_card .thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 306 / 397;
  object-fit: cover;
}

.ebook_card .title {
  font-size: 16px;
  font-weight: 800;
}

/* -------------------------------------------------------
                  Single Page
------------------------------------------------------- */

.hero-img {
  margin-bottom: 30px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2.5;
  object-fit: cover;
}

.single .blog-meta {
  font-weight: bold;
  color: var(--secondary-color);
}

.single .breadcrumb-section{
	background:var(--primary-color);
}

.single .blog-meta * {
  display: inline-block;
}

.hero-title {
  font-size: 32px;
}

.sidebar {
  padding: 30px;
  margin-bottom: 20px;
  background-color: var(--light-color);
  border-radius: 12px;
}

.sidebar:last-child {
  margin-bottom: 0;
}

.sidebar-left {
  background-color: #f6f6f6;
  padding: 20px;
}

.depart-menu a {
  position: relative;
  display: block;
  padding: 10px 40px 10px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: var(--white-color);
}

.depart-menu a:last-child {
  margin-bottom: 0;
}

.depart-menu a:after {
  content: '\f061';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 10px;
  color: var(--white-color);
  margin-top: -11px;
  background-color: var(--primary-color);
  border-radius: 50px;
  text-align: center;
  font-family: 'Fontawesome';
}

.depart-menu a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.depart-menu a:hover:after {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.sidebar-title {
  font-size: 20px;
  margin-bottom: 25px;
}

.related-blog-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d7d7d7;
}

.related-blog-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.related-blog-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

/* -------------------------------------------------------
                     Contact Page
------------------------------------------------------- */

.contact-box {
  color: var(--white-color);
  padding: 30px;
  background-color: var(--secondary-color);
}

.contact-box h3 {
  font-size: 26px;
}

.contact-wrap {
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h5 {
  font-size: 18px;
}

.contact-item .detail .icon,
.contact-detail .detail .icon {
  float: left;
  margin-right: 10px;
}

.contact-item .detail a,
.contact-detail .detail a {
  display: block;
  overflow: hidden;
}

.contact-box .si-wrap,
.site-footer .si-wrap {
  padding-left: 0;
  border-left: none;
}

.contact-box .si-wrap a,
.site-footer .si-wrap a {
  color: var(--white-color);
}

.site-footer .si-wrap a:hover {
  color: var(--secondary-color);
}

.map-card iframe {
  width: 100%;
  height: 400px;
}
.map-card .map-card-footer {
  text-align: center;
  color: var(--white-color);
  background-color: var(--secondary-color);
  padding: 15px 10px;
}

.map-card .map-card-footer h5 {
  font-size: 18px;
  margin-bottom: 0;
}

/* -------------------------------------------------------
                     Career Page
------------------------------------------------------- */

.career-table thead th {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.career-detail {
  padding: 80px 60px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.career-detail ul {
  list-style: disc;
  padding-left: 18px;
}

.career-detail ul li {
  margin-bottom: 7px;
}

.career-detail ul li:last-child {
  margin-bottom: 0;
}

.content-section {
  margin-bottom: 30px;
}

.content-section h3 {
  font-size: 30px;
  font-weight: 600;
}

/* -------------------------------------------------------
                     Dealers page
------------------------------------------------------- */

.dealer-card {
  padding: 15px;
  border: 1px solid #dcdcdc;
  height: 100%;
  transition: var(--transition);
}

.dealer-card:hover {
  border-color: var(--secondary-color);
}

.dealer-card h3 {
  font-size: 18px;
}

.dealer-card p {
  margin-bottom: 5px;
}

.member-card .member-img img {
  width: 100%;
  aspect-ratio: 300 / 390;
  object-fit: cover;
}

.member-card .member-body {
  text-align: center;
  padding-top: 15px;
}

.member-card .member-body .name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.product-swiper .swiper-slide{
	padding:20px;
	border:1px solid #e2e2e2;
}

.product-navigation .swiper-wrapper {
  flex-direction: row;
  gap: 8px;
  margin-top: 15px;
}
.product-swiper-holder .product-navigation .swiper-slide {
  margin-right: 0 !important;
}
.product-navigation .swiper-slide {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
	border:1px solid #e2e2e2;
	padding:3px;
  transition: opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}

.general-info .title {
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #e9e9e9;
}
.general-info table tr {
  vertical-align: top;
}

.general-info table th,
.general-info table td {
  padding: 7px 0;
}

.general-info table th{
	padding-right:20px;
}

.general-info table th {
  color: var(--primary-color);
  font-weight: 500;
}

/* -------------------------------------------------------
                     Scrollbar
------------------------------------------------------- */

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--light-primary-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* -------------------------------------------------------
                         Shine Effect
------------------------------------------------------- */

.shine-overlay {
  position: relative;
  overflow: hidden;
}
.shine-overlay:hover .shine {
  display: block;
}

.shine {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: skew(30deg);
  animation: shine 5s linear 1;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.wpcf7-spinner {
  position: absolute;
}

.banner-content {
  opacity: 0;
  transform: translateY(70px);
  transition: all 2s ease;
}

.swiper-slide-active .banner-content {
  opacity: 1;
  transform: translateY(0);
}
