
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

li{
	list-style:none;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-width: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 800px) {
  .header .logo img{
     max-width: 40px;
     margin-right: 8px;
  }
  
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

.main_menu i{
	background:#fff;
	color:#000;
	padding:2px 4px 0px 3px;
	font-size:35px;
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	cursor:pointer;
}
@media (max-width: 800px) {
  
  .main_menu i{
      font-size:20px;
      
  }
}

/*******/
.sidenav {
    height: 100%; 
    width: 0; 
    position: fixed; 
    z-index: 1; 
    top: 0;
    right: 0;
    background-color: #fffffff5; 
    overflow-x: hidden; 
    padding-top: 60px; 
    transition: 0.5s;
	z-index:999;
	border-radius: 30px 0px 0px 30px;
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    font-family: Gotham;
    color: #818181;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color:#FF3300;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 26px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
		padding-top: 15px;
		z-index:999;
	}
    .sidenav a {
		font-size: 14px;
	
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.bton{
	border:none;
	margin:.5rem;
	background:#efeded91;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	color:#000;
}

.style_img{
	width:30%;
	text-align:center;
	margin:3rem auto;
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}
.manuals a{
	padding:5px 17px;
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .sitename {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: #fab601;
}
.footer .footer-about .sitename j{
  font-size: 22px;
  
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a img{
    width:30px;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer h5 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #fab601;
}
.footer h5 j {
    font-size: 22px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  text-align: justify;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}
.footer .copyright .sitename {
    font-size: 12px;
    color: #fab601;
}
.footer .copyright .sitename j {
    font-size: 16px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}


.contact-btn a{
	margin:2rem;
	border:1px solid #00CC66;
	padding:7px 16px;
	border-radius:50px;
	color:#00CC66;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-btn a:hover{
	margin:2rem;
	border:1px solid #00CC66;
	padding:7px 16px;
	border-radius:50px;
	color:#000;
	background:#00CC66;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #108748;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color:#99FFCC;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
}
/***********************/
/* WhatsApp Button */

.whatsapp{
    position:fixed;
    
    bottom:40px;
    left:40px;
    z-index:100;
}
.whatsapp img{
	width:50px;
    height:50px;
}
.my-whatsApp{
    margin-top:16px;
}
.book_now{
    position:fixed;
    bottom:295px;
    right:-2px;
	width:120px;
    background-color:rgb(19 153 10 / 73%);
    color:#FFF;
	border:2px solid #fab601;
    border-radius:8px 0px 0px 8px;
    text-align:center;
    font-size: 12px;
	font-family: 'Raleway';
    padding: 5px 7px;
    box-shadow: 2px 2px 3px #999;
    z-index:800;
	line-height:2em;
}
.book_now:hover{
	width: 125px;
    font-weight: 600;
    color: white;
    background: #0cb611;
}
.dealership{
    position:fixed;
    bottom:252px;
    right:-2px;
	width:120px;
    background-color:rgb(19 153 10 / 73%);
    color:#FFF;
	border:2px solid #fab601;
    border-radius:8px 0px 0px 8px;
    text-align:center;
    font-size: 12px;
	font-family: 'Raleway';
    padding: 5px 7px;
    box-shadow: 2px 2px 3px #999;
    z-index:800;
	line-height:2em;
}
.dealership:hover{
	width: 125px;
    font-weight: 600;
    color: white;
    background: #0cb611;
}
.enquiry{
    position:fixed;
    bottom:210px;
    right:-2px;
	width:120px;
    background-color:rgb(19 153 10 / 73%);
    color:#FFF;
	border:2px solid #fab601;
    border-radius:8px 0px 0px 8px;
    text-align:center;
    font-size: 12px;
	font-family:'Raleway';
    padding: 5px 7px;
    box-shadow: 2px 2px 3px #999;
    z-index:800;
	line-height:2em;
}
.enquiry:hover{
	width: 125px;
    font-weight: 600;
    color: white;
    background: #0cb611;
}
/**************************/
.facilities{
	padding:60px 0px;
}
.facilities .faci_item{
	border: 2px solid #e0a11f;
    background: #efefee6b;
	padding:30px;
	border-radius:5px;
}
.facilities .faci_item .faci_cont h2{
	font-size:22px;
	font-weight:600;
	color:#000;
}
.facilities .faci_item .faci_cont p{
	font-size:12px;
	color:#666666;
}
/********************************/
.feedback{
	padding:60px 0px;
}
.feedback .feed_item{
	border:2px solid #fab601;
	border-radius:5px;
	padding:20px;
}
.feedback .feed_item h2{
	font-size:22px;
	font-weight:600;
	color:#000;
	padding-bottom:5px;
}
.feedback .feed_item p{
	font-size:12px;
}
/*-----------------------------
category section
-------------------------------*/

.category_sec{
	background:#edecec;
	margin:0
}
.cate-img img{
	border-radius:50%;
	border:2px  solid #ccc;
	padding: 5px;
}
.cetegory-itmes{
	border-radius:50%;
	padding: 5px;
	text-align:center;
	margin:0 2px;
	box-shadow:none;
}
.cetegory-itmes a{
	text-decoration:none;
	font-size:14px;
	color:#000;
	font-weight:700;
	text-align:center;
}
.cate-title{
	display:flex;
	flex-derection:column;
	justify-content:center;
}

@media screen and (max-width:1200px){
	.cetegory-itmes{
		width:100%;
		border-radius:50%;
		object-fit:cover;
		padding: 5px;
		text-align:center;
		margin:20px 0px;
	}
	.cate-img img{
		width:100%;
		border-radius:50%;
		object-fit:cover;
		border:2px  solid #ccc;
		padding: 5px;
	}
	.cetegory-itmes a{
		text-decoration:none;
		color:#000;
		font-weight:400;
		text-align:center;
		font-size:15px;
	}
}
@media screen and (max-width:575px){
	
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding: 10px 0px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}



.section-title p {
  color: #119911;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.view_more {
  color: #258134;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view_more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.view_more:hover {
  padding-right: 19px;
}

.view_more:hover i {
  margin-left: 10px;
}

.btn-first {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 17px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  background:#eb0808;
  border: 2px solid rgb(255 90 44);
  transition: all 0.3s;
}

.btn-first:hover {
  background: rgb(5 80 107);
  border: 2px solid rgb(8 40 194);
  color:#fff;
  transform: scale(1.08);
}
/*/**********************/
.deale{
	background:#20252f;
	padding:50px 0px;
}
.deale h2{
	color:#fff;
	font-size:36px;
	font-weight:600;
}
.deale h2 span{
	color:#119911;
}
/*--------------------------------------------------------------
# index About Section
--------------------------------------------------------------*/
.about .content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
	font-family: revert;
	margin-bottom:0px;
	text-transform: uppercase;
}
.about .content h2 j{
    font-size:57px;
}
.about .about_first{
    color:#119911;
    text-align:center;
}
.about p span{
    font-weight:500;
}

.about p{
	font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2em;
    font-weight: 400;
    text-align: justify;
}
.about p j{
	font-size:20px; 
	font-weight:600;
}
.content span{
  color:#119911;
  font-size: 2.6rem;
}



/*************product***********************/
.product{
	background:#f3f5f6;
}
.product .product_cat{
	background:#fff;
	padding:20px;
}
.product .product_cat .pro_header h2{
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.product .product_cat .pro_header{
	padding-bottom:10px;
}
.product .por_item .pro_img{
	overflow:hidden;
	position:relative;
}


.product .por_item .pro_img img {
  transition: 0.5s;
}

.product .por_item .pro_img .pro_off {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color:#108748;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
  border-radius:20px
}
.product .por_item:hover .pro_img img {
  transform: scale(1.1);
}
.product .por_item{
	padding:15px;
	border:2px solid #CCCCCC;
	background:#fff;
	border-radius: 5px;
	margin:5px;
}
.product .por_item .pro_cont h2{
	line-height:0.5em;
}
.product .por_item .pro_cont h2 a{
	font-size:14px;
	font-weight:600;
	color:#333333;
	padding:10px 0px;
	line-height:0.5em;
		
}
.product .por_item .pro_cont h2 a:hover{
	color:#006600;
}
.product .por_item .pro_cont span{
	font-weight:600;
	font-size:14px;
}
.product .por_item .pro_cont .offer{
	font-size:16px;
	color:#FF0000;
}
.view_pro {
  color: #fff;
  background:#108748;
  font-weight: 600;
  font-size: 14px;
  width:100%;
  letter-spacing: 1px;
  padding: 7px 10px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view_pro:hover {
  background:#006600;
  color:#fff;
}

/********************************************************/
.side_menu{
	background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0 30px rgb(0 0 0 / 10%);
}
.side_menu h2{
	font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.side_menu h2 j{
    font-size:25px;
}
.side_menu ul{
	list-style: none;
    padding: 0;
    font-size: 15px;
}
.side_menu ul li{
	padding-bottom:7px;
	display:flex;
	align-item:center;
}

.side_menu ul li a{
	color:#414241;
	font-size:12px;
}
.side_menu ul li img{
       width:40px;
       padding-right:10px;
}
.side_menu ul li:hover a{
	color:#d8322e;
}
.help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}
.help-box .help-icon {
  font-size: 48px;
}

.help-box h4,
.help-box a {
  color: var(--contrast-color);
}
.pro_detail h2{
    font-size:20px;
    font-weight:600;
    color:#d89513;
    text-transform: uppercase;
}
.pro_detail h2 j{
    font-size:25px;
}

.product_view .grid_list{
    padding: 10px;
    background:#dee1e6;
	border-radius:10px;
}

.product_view .grid_list h4{
	font-size:16px;
	font-weight:600;
	color:#108748;
}
.product_view .buttons i{
    font-size: 18px;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 1px 4px 5px #8d8b8b;
}
.product_view .buttons i:hover{
	background:#d20001;
	color:#fff;
}

.product_view .fa:hover{
    color: darkcyan;
}

.product_view .por_item .pro_img{
	overflow:hidden;
	position:relative;
}


.product_view .por_item .pro_img img {
  transition: 0.5s;
}

.product_view .por_item .pro_img .pro_off {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color:#108748;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
  border-radius:20px
}
.product_view .por_item:hover .pro_img img {
  transform: scale(1.1);
}
.product_view .por_item{
	padding:15px;
	border:2px solid #CCCCCC;
	background:#fff;
	border-radius:5px;
}
.product_view .por_item .pro_cont h2{
	line-height:0.5em;
}
.product_view .por_item .pro_cont h2 a{
	font-size:20px;
	font-weight:600;
	color:#333333;
	padding:10px 0px;
	line-height:1.5em;
		
}
.stock{
	color:#006600;
}
.stock i{
	font-size:16px;
}
.product_view .por_item .pro_cont h2 a:hover{
	color:#006600;
}
.product_view .por_item .pro_cont span{
	font-weight:600;
	font-size:14px;
}
.product_view .por_item .pro_cont .offer{
	font-size:16px;
	color:#FF0000;
}

/******************/
.pro_bannar img{
	border-radius: 5%;
	padding:5px;
}
/******************/

.product_slider {
  background:#e9e6e6;
  padding: 80px 0 60px 0;
  position: relative;
}

.product_slider h2{
	font-size:30px;
	font-weight:700;
	color:#e9ad19;
	z-index:700;
	position:relative;
}
.product_slider h2 j{
    font-size:40px;
}
.product_slider img {
  width: 100%;
  display: block;
}
.product_slider .img-display {
  overflow: hidden;
  z-index:700;
  position:relative;
}
.product_slider .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.product_slider .img-showcase img {
  min-width: 100%;
}
.product_slider .img-select {
  display: flex;
  z-index:700;
  position:relative;
}
.product_slider .img-item {
    margin: 0.3rem;
    background: #ffffff;
    width: 100%;
    border-radius: 5px;
    border: 2px solid #fab601;
}
.product_slider .img-item:nth-child(1),
.product_slider .img-item:nth-child(2),
.product_slider .img-item:nth-child(3) {
  margin-right: 0;
}
.product_slider .img-item:hover {
  opacity: 0.8;
}


@media screen and (min-width: 992px) {
  .card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
  .card-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
}

/********************************/

.pro_video {
  background:url(../img/ecodryft_bg_banner.png) center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.pro_video::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.pro_video .video_item{
	background:#ffffff66;
	padding:20px;
	border-radius:10px;
}
.pro_video .video_item h2{
	color:#fff;
	font-weight:600;
	font-size:30px;
}
.pro_video .video_item ul{
	list-style:circle;
	color:#fff;
	font-size:14px;
}
.pro_video .swiper-pagination {
  	margin-top: 30px;
    position: relative;
    text-align: left;
}

.pro_video .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  opacity: 0.5;
}

.pro_video .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #108748;
  opacity: 1;
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  height: 100%;
  width:100%;
}

.clients .swiper-wrapper {
  height: 100%;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00CC66;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    background: url(../img/etrance_bg_banner.png) center center no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    position: relative;
}
.features::before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 43%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.features .sec-title h2{
	color:#fff;
	font-size:36px;
	font-weight:700;
	position:relative;
	z-index:999;
}
.tab-content .vehicle_img{
	background: #e5dfdf4d;
	backdrop-filter: blur(5px);
    border-radius: 50%;
	height: 100%;
	position:relative;
	top:100px;
	border:1px solid #fff;
}

.tab-content .vehicle_img img{
	margin-top:23px;
	height: 500px;
}

.feat_btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  white-space: nowrap;
  border-radius: 25px;
  transition: 0.5s;
  margin: 10px;
  border: 1px solid rgb(128 126 126 / 50%);
  background-color: rgb(128 126 126 / 50%);
  color: #000;
  text-align: left;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: #000;
    background-color: #fff;
}
.feat_btn img{
	max-width:40px;
	padding:5px;
	background:#fff;
	border-radius: 10px;
}

.feat_btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.vehicls h3{
	/*margin-top:3rem;*/
}

.vehicls ul{
	padding:0;
}

.vehicls ul a li{
	white-space: nowrap;
	border:1px solid #fff;
	padding:.5rem .6rem;
	margin-top:1rem;
	width: 130px;
	text-align:center;
	border-radius: 5px;
	background: #fff;
	color:#009966;
}

.vehicle_details h3{
	color:#FFFFFF;
	font-weight:600;	
}

.vehicle_details ul{
	padding:0;
	margin-bottom:3rem;
}

.vehicle_details ul li{
	white-space: nowrap;
	padding:.7rem .5rem;
	margin-top:1rem;
	color:#fff;
	background:#00000038;
	backdrop-filter:blur(10px);
	border-radius: 5px;
	width:100%;
}



.mid_box .vehicle_img {
	text-align:center;
	height:100%;
	width:100%;
	margin-top:18rem;
	padding-bottom:2rem;
}

@media (max-width: 1200px) {
	.tab-content .vehicle_img{
	background: none;
	backdrop-filter: none;
    border-radius: 50%;
	height: 100%;
	position:relative;
	top:0px;
	border:none;
	}
	
	.vehicle_details ul li{
		white-space: wrap;
		
	}
}


@media (max-width: 768px) {
  .features-item h1 {
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
	padding:40px 0px;
}
.services{
	padding:40px 0px;
}

.services h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    font-family: revert;
}
.services span {
    color: #119911;
}
.services p {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2em;
    font-weight: 400;
}
.services .service-item {
  background-color: #141414;
  text-align: center;
  border: 2px solid #c69435;
  padding: 30px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius:5px;
}



.services .service-item .icon {
  background: #ffffffbf;
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .service-item h3 j{
	font-size:25px;
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 18px;
  transition: 0.3s;
  color:#fff;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align:justify;
  color:#c1bfbf;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero{
	padding:40px 0px;
}
.hero h2 span {
  color: var(--accent-color);
}

/*.hero p {
  margin: 10px 0 0 0;
  text-align:justify;
}*/

.hero .icon-box{
  padding: 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  /*text-align: center;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.hero .box1{
	background: linear-gradient(0deg, rgba(110, 225, 109, 0.2), rgba(110, 225, 109, 0.2));
	border:1px solid #0378037a;
	border-radius:10px;
}

.hero .box2{
	background: linear-gradient(0deg, rgba(41, 180, 223, 0.19), rgba(41, 180, 223, 0.19));
	border:1px solid #0bb2af7a;
	border-radius:10px;
}

.hero .box3{
	background: linear-gradient(0deg, rgba(255, 156, 156, 0.33), rgba(255, 156, 156, 0.33));
	border:1px solid #ff67c37a;
	border-radius:10px;
}


.hero .icon-box p{
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align:justify;
}

/*.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #00CC66;
  padding: .5rem;
}*/


.hero .icon-box h3 a {
  color: #000;
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 18px;
  transition: ease-in-out 0.3s;
  text-align:center;
}

.hero .icon-box:hover {
  box-shadow: rgba(0, 0, 0, 0.20) 0px 2px 5px;
  transform: translateY(-10px);
}



@media (max-width: 768px) {

}
/**************************/
/**************************/
.support{
	background:#4d4d4d;
	padding:0px;
}	
.support .cont{
	padding:10px;
}
.support .cont h2{
	font-size: 36px;
    font-weight: 600;
    color: #fff;
    font-family: revert;
}
.support .cont h2 span {
    color: #119911;
    font-weight: 600;
    font-size:36px;
}
.support .cont p{
	font-size:16px;
	line-height:2em;
	text-align:justify;
	color:#fff;
}
.support .cont p j{
	font-size:22px;
	font-weight:600;
}
/********************/
.choose_us{
	padding:20px 0px;
}
.choose_us h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    font-family: revert;
}
.choose_us span {
    color: #119911;
}
.choose_us p {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2em;
    font-weight: 400;
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
 /* background-color: rgb(24, 61, 56);*/
}


.slide_ev img{
	/*background: #e5dfdf4d;
	backdrop-filter: blur(5px);
    border-radius: 50%;
	padding:5rem 11rem;*/
	position:relative;
	top:110px;
	height: 500px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color:#e9ecef;
  padding:50px 0px;
  
}

.testimonials .testimonial-item {
  padding:4rem 0;
} 

.testimonial-content{
	background-color:#fff;
	padding:2rem;
	border-radius:10px;
	/*width:30%;*/
}

.testimonial-content h3{
	border-left:5px solid #00CC66;
	padding-left:5px;
	font-size:18px;
}

.testimonial-content h3 span{
	font-size:28px;
}

.testimonial-content button{
	border:1px solid #00CC99;
	color:#00CC99;
	background:transparent;
	font-size:16px;
	padding:5px 15px;
	border-radius: 5px;
}




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img img{
	border-radius:5px;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: transparent;
  color: #03d353;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border:1px solid #03d353;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: #03d353;
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.member-info button{
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 15px;
  white-space:nowrap;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 1rem;
  border: 1px solid #03d353;
  background-color: #ffffff;
  color: #03d353;
  text-align: left;
  /* height: 100%; */
}

.member-info button:hover {
  color: var(--contrast-color);
  background: #03d353;
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-item img {
    width: 100%;
    height: 300px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Scooter page Section
--------------------------------------------------------------*/
.prod_div_view{
	border-right:1px solid #000;
}


.prod_display_img {
	margin-bottom:10px;
}

.prod_views .etrance_img{
	height:300px;
	border-radius:10px;
}


.prod_views img{
	border-radius:10px;
}

#scooter{
	background: #eeeeee;
}

#scooter .container-fluid{
    background: url(../img/bg_vector.png);
	background-repeat: no-repeat;
    background-size: 100%;
}


.product_details{
	background: url(../img/etrance_bg_banner.png);
	background-repeat:no-repeat;
	height:100%;
}




.details{
	background:#0000006b;
	backdrop-filter: blur(5px);
	padding:3rem 1rem;
	color:#fff;
	border:1px solid #fff;
	border-radius:1rem;
}

.details .section-title{
	padding:0;
}

.details h2{
	color:#fff;
}

.details p{
	color:#00CC99;
}

.details ul li{
	line-height:2.5;
	list-style-type: disc;
}



/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/

.about_sec img{
	border-radius:1rem;
}

.about_sec p{
	text-align:justify;
}

.inves-btn{
	background-color: #eeeeeeb3;
    padding: 1rem;
	box-shadow: rgba(0, 0, 0, 0.20) 0px 1px 4px;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: transparent;
  color:#fff;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border:1px solid #fff;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background:#fff;
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.member-info button{
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 15px;
  white-space:nowrap;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 1rem;
  border: 1px solid #03d353;
  background-color: #ffffff;
  color: #03d353;
  text-align: left;
  /* height: 100%; */
}

.member-info button:hover {
  color: var(--contrast-color);
  background: #03d353;
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.team .section-title{
	padding:0;
}

/**----------------------
****director sec
------------------------**/

.dir_sec .direc_box{
	background-color:#e6e6e68a;
	text-align:justify;
	margin-top:4rem;
	position:relative;
	/*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
}

.dir_sec .direc_box .dir_items{
	padding:1rem 2rem;
}

.dir_items h5{
	text-align:center;
	font-weight:600;
}

.dir_items h5 span{
	text-align:center;
	font-size:15px;
}


.direc_box .dir_img img{
	position: absolute;
    bottom: 0;
    left: 0;
    height: 20rem;
}

.direc_box .dir_img{
	white-space:nowrap;
	text-align:center;
}

@media (max-width: 1200px) {
		.direc_box .dir_img img{
		position: relative;
		bottom: 0;
		left: 0;
		height: 50%;
	}
}

/**----------------------
****success page sec
------------------------**/
.success{
	padding:60px 0px;
}
.success .succ_item{
	border:2px solid #FF9900;
	padding:20px;
	border-radius:5px;
	margin:10px;
}
.success .succ_item .succ_img img{
	border-radius:5px;
}
.success .succ_item .succ_cont{
	text-align:justify;
	font-weight:500;
	line-height:1.8;
}
.success .succ_item .succ_cont h2{
	font-size:22px;
	font-weight:600;
	color:#000;
}
.success .succ_item .succ_cont p{
	font-size:12px;
	color:#666666;
}
.success .succ_item .succ_cont p span{
	font-size:18px;
	font-weight:600;
}
.success_story{
	text-align:justify;
	font-weight:500;
	line-height:1.8;
}

.success_story p span{
	font-size:22px;
	color:#00CC99;
	font-weight:600;
}



/**----------------------
****contact page sec
------------------------**/


.form-input input{
	width:100%;
	padding:0.7rem;
	line-height:1;
	margin: 10px auto;
	outline:none;
}

.form-input textarea{
	width:100%;
	padding:0.5rem;
	line-height:1;
	margin: 10px auto;
	outline:none;
}


.contact_sec .cont-box{
	background:#fff;
	border: 1px solid #ccc;
	display:flex;
	justify-content:start;
	align-items:center;
	padding:.5rem;
	margin:7px 0;
	border-radius:5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact_sec .cont-box h1{
	font-size:20px;
	margin:0px;
}

.contact_sec .cont-box i{
	font-size:20px;
	margin:0 10px;
	padding:.6rem .9rem;
	border-radius:50%;
	border:1px solid #ccc;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
	transition:.5s ease;
}

.contact_sec .cont-box:hover i{
	background:#0099FF;
}

.cont-box .cont-box-item p{
	font-size:14px;
	padding:0;
	margin:0;
}

.contact-inputs{
	background:#efeeeea8;
	padding:2rem 1rem;
	text-align:center;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}



.send-msg-btn{
	text-align:center;
	background:#0066FF;
	padding:.5rem 1rem;
	border-radius:50px;
	border:none;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	color:#fff;
	font-weight:300;
}



.contact_sec .map{
	background:#fff;
	border: 1px solid #ccc;
	display:flex;
	justify-content:start;
	align-items:center;
	padding: 5px 2rem;
	border-radius:5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/**----------------------
****book_nowpage
------------------------**/
.book_nowpage{
	background:#CCCCCC;
}
.book_nowpage .book{
	background:#fff;
	padding:100px 20px;
}

/*********************/
/**************************************************************/
.sidebar_links {
    position: fixed;
    bottom: 130px;
    right: -175px;
    width: 200px;
    z-index:700;
    height: auto;
    background:#0000005e;
    z-index:999;
    border-radius:10px;
    padding:10px 0px;
    transition: all 0.5s;
}
.sidebar_links:hover {
    right: -5px;
    background:#000;
}


.sidebar_links a{
    border:1px solid #fff;
    padding:5px 15px;
    color:#fff;
    font-size:12px;
    border-radius: 5px;
}

.sidebar_links i {
  margin-right: 20px;
  color:#fff;
  font-size:24px;
}

.sidebar_links .youtube:hover {
  background-color: #E52D27;
}

.sidebar_links .linkedin:hover {
  background-color: #0976B4;
}