@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Titillium+Web:wght@200;300;400;600;700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: none;
}
body {
	position: relative;
	font-size: 13px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	line-height: 1.7;
	width: 100%;
    -webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
/* Pop Up Details */
#popupMain {
	position: fixed;
	width: 400px;
	height: 400px;
	bottom: 0;
	left: 0px;
	background-color: rgba(248, 250, 247, 1);
	z-index: 9999998;
	-webkit-transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
	transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
	display: none;
}

#popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: auto;
	
	text-align: center;
}
.close {
	position: absolute;
	top: -20px;
	right: -10px;
	text-shadow: 0 1px 0 #fff;
	outline: none;
}
.close:hover,
.close:focus {
	outline: none;
}
.pop-img {
	width: 350px;
	height: 350px;
	text-align: center;
}
.pop-img img {
	width: 100%;
	height: 100%;
}
/*-------------------------------------
	18. Loading 
-------------------------------------*/  
/*18.1 loading - 1*/

.loading-area{width:100%;	height:100%;	position:fixed;	left:0;	top:0;	z-index:9999;	overflow:hidden;}
.loading-box{width:100%;	height:100%;	background-color:#FFF;	position:absolute;	left:0;	top:0;	opacity:1;	z-index:9999;}

.loading-pic{width:100%;	position:absolute;	top:50%;	z-index:99999;	text-align:center;	
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.loading-pic p {
	font-size: 30px;
	line-height: 0;
	font-weight: 600;
	margin-top: 15px;
	letter-spacing: 5px;
}


#header {
    background: #000;
    padding: 20px 0;
    top: 0px;
    z-index: 997;
}
#header.header-transparent {
    background: rgba(0, 0, 0, 0) linear-gradient(rgb(0, 0, 0)0%, rgba(0, 0, 0, 0)100%) repeat scroll 0% 0%;
}
#header.header-scrolled {
    background: black none repeat scroll 0% 0%;
    box-shadow: 0px 0px 30px rgba(127,137,161,0.3);
}
#header .logo {
    margin: 0;
    padding: 0;
    width: 200px;
}
.float-right {
    position: absolute;
    right: 80px;
    top: -20px;
}
.float-right ul {
    position: relative;
    margin-bottom: 0;
    padding: 10px 0;
    
}
.float-right ul li {
    display: inline-block;
}
.float-right ul .contact {
    margin-left: 30px;
}
.float-right ul .contact a {
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}
.float-right ul .contact a i{
    margin-right: 10px;
    color: #fff;
}
.float-right ul li a {
    font-size: 13px;
    color: #f6f7f8;
    display: inline-block;
    transition: all 300ms linear 0s;
    margin-left: 20px;
}
.float-right ul li a i {
    color: #fff;
}
.float-right ul li a:hover i {
    color: #d91a3c;
}
.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
    padding-left: 30px;
    
}
.main-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 0;
    transition: 0.3s;
    font-size: 14px;
    
    text-transform: uppercase;
    font-weight: 600;
}
.main-nav a:hover, 
.main-nav .active > a, 
.main-nav li:hover > a {
    color: #d91a3c;
    text-decoration: none;
}
.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #000;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-top: 2px solid #d91a3c;
    transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}
.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #f8f8f8;
}
.main-nav .drop-down ul a:hover, 
.main-nav .drop-down ul .active > a, 
.main-nav .drop-down ul li:hover > a {
    color: #d91a3c;
}
.main-nav .drop-down > a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
.main-nav .drop-down .drop-down > a {
    padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9998;
    overflow-y: auto;
    right: -300px;
    width: 300px;
    padding-top: 100px;
    background: #000;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.mobile-nav a:hover, 
.mobile-nav .active > a, 
.mobile-nav li:hover > a {
    color: #d91a3c;
    text-decoration: none;
}
.mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
      content: "\f077";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-toggle {
    position: fixed;
    right: 10px;
    top: 30px;
    z-index: 9999;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #fff;
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: transparent;
    overflow: hidden;
    display: none;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    right: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
    
}

/* Hero Section Style CSS */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
}
.hero_slide {
    width: 100%;
    height: 100%;
}
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hero-slide-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}
.hero-slide-container {
	width: 100%;
	height: 100vh;
}
.hero-slide-content {
	max-width: 80%;
    -webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}
.hero-slide-content h1 {
	font-size: 80px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
	font-weight: bold;
	color: #fff;
    text-transform: uppercase;
    line-height: 1.3;
}
.hero-slide-content h3 {
    background: #d91a3c;
    padding: 10px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 30px;
}
.quick-toggle {
	top: 0;
}

/* Intro Section Style CSS */
.intro-section {
    position: relative;
    min-height: 800px;
    padding-top: 90px;
    padding-bottom: 150px;
    background-image: url("../images/green.jpg");
    background-color: #f2f2f2;
}
.intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
}
.intro h3 {
    font-size: 16px;
    font-weight: 300;
	width: 80%;
	margin: auto;
}
.about-intro h2 {
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 10px;
}
.about-intro h3 {
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 10px;
}
.about-intro .intro-text {
    font-size: 14px;
    margin-top: 20px;
    padding: 0 20px;
}

/* intro Section Style CSS */
.intro-content {
    position: relative;
    padding: 0px 10px;
}
.intro-left {
    border-right: 1px solid #000;
    padding-top: 20px;
    padding-bottom: 20px;
}
.intro-left .left-img {
    position: relative;
    width: 45px;
    line-height: 0;
    display: table-cell;
}
.intro-left .left-img img {
    display: block;
    width: 100%;
}
.intro-left .left-content {
    padding-left: 15px;
    display: table-cell;
    vertical-align: top
}
.intro-left .left-content p {
    margin-top: 5px;
    margin-left: 5px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
}
.intro-right {
    padding-top: 20px;
    padding-bottom: 20px;
}
.intro-right .right-img {
    position: relative;
    width: 45px;
    line-height: 0;
    display: table-cell;
}
.intro-right .right-img img {
    display: block;
    width: 100%;
}
.intro-right .right-content {
    padding-left: 15px;
    display: table-cell;
    vertical-align: top
}
.intro-right .right-content p {
    margin-top: 5px;
    margin-left: 5px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
}
.disclimer {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

/* Feature Section Style CSS */
.feature-section {
    position: relative;
    padding-top: 100px;
}
.feature-section .single-feature {
    margin-bottom: 30px;
    background: #fff;
    padding: 50px 30px 40px 30px;
    text-align: center;
}
.feature-section .single-feature .icon {
    width: 100px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.feature-section .single-feature .icon img {
    width: 100%;
    height: 100%;
}
.feature-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}
.feature-carousel .owl-dots .owl-dot {
	width: 14px;
	height: 13px;
	margin-right: 10px;
	background: #e8e8e8;
	display: inline-block;
}
.feature-carousel .owl-dots .owl-dot.active {
	background: #d91a3c;
}

/* Video Section  Style CSS */
.video-section {
    position: relative;
    padding: 100px 0px;
}
.video-section .video-column {
    position: relative;
}
.video-section .video-column .inner-column {
    position: relative;
}
.video-column .inner-column .video-box {
    position: relative;
}
.video-column .inner-column .video-box .image img {
    position: relative;
    width: 100%;
}
.video-box .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: rgba(0,0,0,0.25);
}
.video-box:hover .overlay-box {
    z-index: 1;
    background-color: rgba(0,0,0,0.50);
}
.video-box .overlay-box span {
	position: relative;
	top: 50%;
	color: #fff;
	font-size: 64px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: inline-block;
}

/* Blog Section Style CSS */
.blog-section {
    position: relative;
    padding: 100px 0px;
}
.blog-section .blog-head {
    text-align: center;
    margin-bottom: 50px;
}
.blog-section .blog-head h2 {
    font-size: 50px;
    color: #000;
}
.blog-section .blog-head h4 {
    font-size: 50px;
    font-weight: 300;
}
.blog-section .blog-content {
    padding-top: 20px;
}
.blog-section .blog-content h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}
.blog-section .blog-content p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    padding-bottom: 20px;
    line-height: 2;
}
.blog-section .blog-img {
    position: relative;
    padding-right: 30px;
}
.blog-section .blog-img .blog-front-img {
    position: relative;
    z-index: 1;
}
.blog-section .blog-img .blog-back-img {
    position: absolute;
    z-index: -1;
    right: -20px;
    top: 20px;
}

/* Help Section Style CSS */
.help-section {
    position: relative;
    padding: 100px 0px;
}
.help-section-1 {
	position: relative;
}
.help-col {
    padding: 20px 0px;
    background-color: rgba(217, 26, 60, .3);
}
.help-col-1 {
	padding: 20px 0px;
	background-color: transparent;
}
.help-title h2 {
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}
.help-support h4 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}
.help-support p {
    font-weight: 600;
}

/* Footer Section Style CSS */
.footer-section {
    position: relative;
}
.footer {
    width: 100%;
    position: relative;
    z-index: 1
}
.footer:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    z-index: -1;
}
.footer-widget {
    position: relative;
    margin-top: 30px;
}
.link-widget {
    padding-left: 30px;
}
.footer-logo {
    width: 300px;
    height: auto;
}
.footer-logo img {
    width: 100%;
    height: 100%;
}
.footer-link ul {
    margin: 0;
    padding: 0;
}
.footer-link ul li {
    list-style: none;
    display: block;
    padding-bottom: 10px;
}
.footer-link ul li a {
    font-size: 16px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.footer-link ul li a:hover {
    color: #d91a3c;
}
.footer-link ul li a:focus {
    outline: none;
}
.footer-contact {
    position: relative;
}
.footer-contact ul {
    margin: 0 0 20px;
    list-style: none;
    padding: 0;
    display: block;
}
.footer-contact ul li {
    position: relative;
    padding: 0 0 0 26px;
    margin: 0 0 14px;
    color: #fff;
    border: none;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
	list-style: none;
}
.footer-contact ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 20px;
    font-size: 16px;
    color: #fff;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.footer-contact ul .map span {
    font-size: 20px;
    letter-spacing: 2px;
}
.footer-contact ul .map:before {
    content: "\f3c5"
}
.footer-contact ul .mob:before {
    content: "\f879"
}
.footer-contact ul .mail:before {
    content: "\f0e0"
}
.footer-social ul {
    margin: 0;
    list-style: none;
    padding: 0;
    
}
.footer-social ul li {
    display: inline-block;
    padding-right: 20px;
}
.footer-social ul li a {
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.footer-social ul li a:hover {
    color: #d91a3c;
    outline: none;
}
.footer-social ul li a:focus {
    outline: none;
}
.copyright,
.design {
    position: relative;
    padding-top: 50px;
}
.copyright p,
.design p {
    font-size: 12px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    letter-spacing: 1px;
}
.design p a {
    text-decoration: none;
    color: #fff;
}
.design p a:hover {
    opacity: .5;
}
.design p a:focus {
    outline: none;
}


/* ----- About Page Style CSS ----- */

/* Banner Section Style CSS */
.banner-section {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
    background-image: url("../images/s2.jpg");
}
.banner-section.overlay {
    position: relative;
}
.banner-section.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-section,
.banner-section > .container > .row {
    min-height: 500px;
}
.banner-link {
    padding: 50px 0px;
    
}
.banner-link a {
    display: inline-block;
    color: #fff;
    margin-right: 34px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.banner-link a:after {
    content: "\f30b";
    position: absolute;
    right: -30px;
    top: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.banner-link a:hover {
    color: #d91a3c;
}
.banner-link span {
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
/* About Section Style CSS */
.about-section {
    position: relative;
    padding: 100px 0;
}
.about-img {
    position: relative;
}
.about-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #d91a3c;
    border-radius: 5px;
}
.about-img img {
    position: relative;
    margin: 0;
    left: 15px;
    top: 15px;
    width: 100%;
    display: block;
    border-radius: 5px;
}
.about-head .sm {
    font-size: 16px;
    letter-spacing: 20px;
    color: #d91a3c;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-weight: 300;
}
.about-head h2 {
    display: block;
    margin-bottom: 20px;
    line-height: 60px;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}
.about-head h2 small {
    font-weight: 300;
    font-size: 20px;
}
.about-head h2 {
    font-weight: 700;
}
.about-head h4 {
	font-size: 24px;
	line-height: 1.8;
	padding-bottom: 10px;
}
.about-head h5 {
    position: relative;
    font-size: 14px;
    line-height: 1.2;
    padding-bottom: 10px;
    font-weight: 500;
    padding-left: 20px;
}
.about-head h5:before {
    content: "\f192";
    position: absolute;
    left: 0px;
    top: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: #d91a3c;
}
.about-head p {
    font-size: 14px;
    line-height: 2;
    font-family: 'Roboto', sans-serif;
    color: #727272;
    text-align: justify;
}

/* Why Section Style CSS */
.why-section {
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
}
.head-title h2 {
    font-size: 40px;
    color: #d91a3c;
    text-align: center;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}
.head-title p {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}
.why .solid-box {
    position: relative;
	text-align: center;
	background: #fff;
	padding: 30px;
    margin-top: 50px;
    margin-bottom: 100px;
	min-height: 300px;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}
.why .solid-box:hover {
    background: #d91a3c;
}
.why .solid-box span {
    font-size: 50px;
	color: #d91a3c;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}
.why .solid-box:hover span {
    color: #fff;
}
.why .solid-box h3 {
    font-size: 20px;
	font-family: 'Roboto', sans-serif;
	line-height: 26px;
	color: #000;
	letter-spacing: 2px;
	margin: 10px 0px;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}
.why .solid-box p {
    font-size: 12px;
	line-height: 24px;
	letter-spacing: 1px;
}

/* Team Section Style CSS */
.team-section {
    position: relative;
    padding: 100px 0 50px 0;
    background-image: url("../images/team/team-bg1.png");
}
.our-team {
    position: relative;
    padding-bottom: 50px;
}
.our-team h1 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
}
.team-carousel .item {
    padding: 20px 20px;
}
.team-carousel .owl-dots {
    padding-top: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.team-carousel .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    margin-right: 10px;
    background: rgba(217, 26, 60, .3);
    display: inline-block;
    border-radius: 50%;
}
.team-carousel .owl-dots .owl-dot.active {
    background: #d91a3c;
}
.team-img {
    position: relative;
}
.team-img:before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background-color: #d91a3c;
}
.team-img:after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 50%;
    background-color: rgba(217, 26, 60, .5);
}
.team-img img {
    position: relative;
    margin: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    display: block;
    
}
.team-content {
    padding-right: 50px;
}
.team-content-1 {
    padding-left: 50px;
}
.team-head {
    position: relative;
}
.team-head h1 {
    font-size: 50px;
    color: #d91a3c;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}
.team-head strong {
    font-size: 16px;
}
.line {
    margin: 10px 0 30px 0px;
    position: relative;
    width: 80px;
    height: 4px;
    background-color: #d91a3c;
}
.line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 4px;
    background-color: #d91a3c;
    
}
.team-social {
    position: relative;
    margin: 10px 0;
}
.team-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
}
.team-social ul li {
    display: inline-block;
    padding-right: 10px;
    list-style: none;
    text-align: center;
}
.team-social ul li a {
    display: block;
	color: #000;
	border: 1px solid #000;
	width: 30px;
	height: 30px;
	line-height: 30px;
    -webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}
.team-social ul li a:hover {
    color: #fff;
	background: #d91a3c;
    border: 1px solid #d91a3c;
}
.team-text {
    position: relative;
    padding: 30px 0px;
}
.team-text p {
    font-size: 14px;
    color: #000;
    line-height: 2;
}

/* Our Team Style CSS */
.our-team-section {
    position: relative;
    padding: 90px 0px;
}
.our-main-team {
    text-align: center;
    cursor: pointer;
}
.our-main-team .team-image {
    position: relative;
    overflow: hidden;
}
.our-main-team .team-image:after {
   content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(217, 26, 60, 0.2);
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.3s ease 0s; 
}
.our-main-team:hover .team-image:after {
    bottom: 0;
}
.our-main-team img {
    width: 100%;
    height: auto;
}
.our-main-team .social {
    padding: 0 0 18px 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: -100%;
    right: 10px;
    background: #d91a3c;
    border-radius: 0 0 20px 20px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.our-main-team:hover .social {
    top: 0;
}
.our-main-team .social li a {
    display: block;
    padding: 15px;
    font-size: 15px;
    color: #fff;
}
.our-main-team .social li a:hover {
    color: #000
}
.our-main-team .our-team-content {
    padding: 20px 0;
    background: rgba(217, 26, 60, .3);
}
.our-main-team .title {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #d91a3c;
    text-transform: capitalize;
    margin: 0 0 20px;
}
.our-main-team .title:before {
    content: "";
    width: 25px;
    height: 1px;
    background: #d91a3c;
    position: absolute;
    bottom: -10px;
    right: 50%;
    margin-right: 9px;
    transition-duration: 0.25s;
}
.our-main-team .title:after {
   content: "";
    width: 25px;
    height: 1px;
    background: #d91a3c;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: 9px;
    transition-duration: 0.25s; 
}
.our-main-team .title:before,
.our-main-team .title:after {
    width: 50px;
}
.our-main-team .post {
    display: inline-block;
    font-size: 14px;
    color: #727272;
    text-transform: capitalize;
}
.our-main-team .post:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d91a3c;
    margin: 0 auto;
    position: relative;
    top: -13px;
}

/* Magnus Page Style CSS */

/* Banner Section Style CSS */
.banner-section-1 {
    position: relative;
    background-color: #708693;
}
.banner-section-1.overlay {
    position: relative;
}
.banner-section-1.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-section-1,
.banner-section-1 > .container > .row {
    min-height: 300px;
}
.banner-section-2 {
    position: relative;
    background-color: #000;
}
.banner-section-2,
.banner-section-2 > .container > .row {
    min-height: 200px;
}
/* Specification Section Style CSS */
.speci-section {
    position: relative;
    padding-bottom: 30px;
}
.speci-section .disc {
    padding: 50px 20px;
}
.speci-section .disc h5 {
	font-size: 14px;
	letter-spacing: .8em;
	line-height: 1.1em;
	font-weight: 500;
	color: #ed1d24;
	text-transform: uppercase;
}
.speci-section .disc p {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    line-height: 2;
    letter-spacing: 1px;
    padding-bottom: 30px;
    text-align: justify;
}
.speci-content {
    padding: 30px 20px;
}
.speci-content .head h2 {
    position: relative;
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 7px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
}
.speci ul {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #727272;
}
.speci ul li {
    list-style: none;
    padding: 5px 0;
    color: #727272;
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px dotted #d91a3c;
    text-align: right;
    font-weight: 500;
}
.speci ul span {
    font-weight: 700;
    float: left;
    color: #727272;
}

/* Journey Section Style CSS */
.journey-section {
    position: relative;
}
.journey-head {
    padding-top: 50px;
    padding-bottom: 100px;
}
.journey-head h1 {
    font-size: 50px;
    line-height: 2;
    font-weight: 500;
    padding-bottom: 10px;
}

/* Product Section Style CSS */
.product-section {
    position: relative;
    padding: 100px 0;
}
.product-contant h3 {
    font-size: 40px;
    color: #191919;
    text-align: left;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 10px;
}
.product-contant h2 {
    font-size: 40px;
    color: #191919;
    text-align: left;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 10px;
}
.product-contant p {
    font-size: 16px;
    line-height: 2;
}
.prod-icon {
    position: relative;
    padding-top: 50px;
}
.warranty img {
    width: 50px;
    height: auto;
}
.warranty p {
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
}
.safety img {
    width: 90px;
    height: auto;
    margin-top: -20px;
}
.safety p {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}
.emi img {
    width: 40px;
    height: auto;
}
.emi p {
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
}
.tm {
    padding-top: 30px;
    font-size: 13px;
    color: #727272;
}
.pricing h1 {
    font-size: 30px;
    font-weight: bold;
}
.pricing h3 {
    font-weight: 300;
    font-size: 24px;
    padding-bottom: 20px;
}
.pricing p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

/* Pro-Beats Section Style CSS */
.pro-beats-section {
    position: relative;
    padding-bottom: 50px;
}
.pro-head {
    position: relative;
    padding-bottom: 50px;
}
.pro-head h1 {
    font-size: 50px;
    font-weight: 500;
    padding-bottom: 10px;
    line-height: 1;
    color: #1a1a1a;
}
.pro-head h5 {
    font-size: 30px;
    font-weight: 400;
    color: #333;
}
.extra {
    position: relative;
    text-align: center;
    padding: 0px 10%;
}
.extra h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    padding-bottom: 10px;
}
.extra p {
    font-size: 16px;
    line-height: 2;
    padding-top: 30px;
}

/* Tab Section Style CSS */
.tab-section {
	position: relative;
	padding-top: 20px;
}
.tab-section .nav-pills:before {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	width: 100px;
	height: 2px;
	background-color: #d91a3c;
}
.tab-section .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	border-bottom: 2px solid #ccc;
	padding: 20px 10px 20px 0;
}
.tab-section .nav-pills .nav-link.active {
	font-size: 23px;
	font-weight: 800;
	border-bottom: 2px solid #d91a3c;
}

/* Extra Section Style CSS */
.extra-section {
	position: relative;
	padding: 50px 0px;
}
.extra-comfort h1 {
	font-size: 40px;
	font-weight: 500;
	padding-bottom: 10px;
	color: #000;
	line-height: 1.5;
}
.extra-comfort p {
	font-size: 16px;
	line-height: 2;
	color: #000;
	width: 80%;
	margin: auto;
	font-weight: 300;
}

/* Tab1 Section Style CSS */

.tab-section1 {
	position: relative;
	padding-top: 20px;
}
.tab-section1 .nav-pills:before {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	width: 100px;
	height: 2px;
	background-color: #d91a3c;
}
.tab-section1 .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	border-bottom: 2px solid #ccc;
	padding: 20px 10px 20px 0;
}
.tab-section1 .nav-pills .nav-link.active {
	font-size: 23px;
	font-weight: 800;
	border-bottom: 2px solid #d91a3c;
}
/* Extra Safety Section Style CSS */
.extra-safety h1 {
	font-size: 40px;
	font-weight: 500;
	padding-bottom: 10px;
	color: #000;
	line-height: 1.5;
}
.extra-safety p {
	font-size: 16px;
	line-height: 2;
	color: #000;
	width: 80%;
	margin: auto;
	font-weight: 300;
}

/* Tab1 Section Style CSS */

.tab-section2 {
	position: relative;
	padding-top: 20px;
}
.tab-section2 .nav-pills:before {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	width: 100px;
	height: 2px;
	background-color: #d91a3c;
}
.tab-section2 .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	border-bottom: 2px solid #ccc;
	padding: 30px 10px 30px 0;
}
.tab-section2 .nav-pills .nav-link.active {
	font-size: 23px;
	font-weight: 800;
	border-bottom: 2px solid #d91a3c;
}

/* Extra Style Section Style CSS */
.extra-style h1 {
	font-size: 40px;
	font-weight: 500;
	padding-bottom: 10px;
	color: #000;
	line-height: 1.5;
}
.extra-style p {
	font-size: 16px;
	line-height: 2;
	color: #000;
	width: 80%;
	margin: auto;
	font-weight: 300;
}

/* Tab3 Section Style CSS */

.tab-section3 {
	position: relative;
	padding-top: 20px;
}
.tab-section3 .nav-pills:before {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	width: 100px;
	height: 2px;
	background-color: #d91a3c;
}
.tab-section3 .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	border-bottom: 2px solid #ccc;
	padding: 20px 10px 20px 0;
}
.tab-section3 .nav-pills .nav-link.active {
	font-size: 23px;
	font-weight: 800;
	border-bottom: 2px solid #d91a3c;
}

/* Extra Style Section Style CSS */
.extra-convenience h1 {
	font-size: 40px;
	font-weight: 500;
	padding-bottom: 10px;
	color: #000;
	line-height: 1.5;
}
.extra-convenience p {
	font-size: 16px;
	line-height: 2;
	color: #000;
	width: 80%;
	margin: auto;
	font-weight: 300;
}

/* Tab4 Section Style CSS */

.tab-section4 {
	position: relative;
	padding-top: 20px;
}
.tab-section4 .nav-pills:before {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	width: 100px;
	height: 2px;
	background-color: #d91a3c;
}
.tab-section4 .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	border-bottom: 2px solid #ccc;
	padding: 20px 10px 20px 0;
}
.tab-section4 .nav-pills .nav-link.active {
	font-size: 23px;
	font-weight: 800;
	border-bottom: 2px solid #d91a3c;
}

/* Color Tab Section Style CSS */
.colors-tab-section {
	position: relative;
	padding-top: 20px;
}
.colors-tab-section .colors {
	text-align: left;
}
.colors-tab-section .colors h2 {
	font-size: 40px;
	line-height: 2;
	padding-bottom: 10px;
	font-weight: 500;
}
.colors-tab-section .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	padding: 10px 10px 10px 50px;
}
.colors-tab-section .nav-pills .nav-link span {
	position: absolute;
	width: 30px;
	height: 30px;
	left: 0;
	top: 10px;
	vertical-align: middle;
	border-radius: 50%;
	border: 2px solid #c3c3c3;
}
.colors-tab-section .nav-pills .nav-link .pearl {
	background: #fafbf5;
}
.colors-tab-section .nav-pills .nav-link .red {
	background: #ff0000;
}
.colors-tab-section .nav-pills .nav-link .glacial {
	background: #E9EAE7;
}
.colors-tab-section .nav-pills .nav-link .ocean-blue {
	background: #222B41;
}
.colors-tab-section .nav-pills .nav-link .yellow {
	background: #ffdf00;
}
.colors-tab-section .nav-pills .nav-link .gallatic-gray {
	background: #b2bcdb;
}
.colors-tab-section .nav-pills .nav-link .black {
	background: #27292b;
}
.colors-tab-section .nav-pills .nav-link.active span {
	border: none;
}
.colors-tab-section .nav-pills .nav-link .cherry {
	background: #f7022a;
}
.colors-tab-section .nav-pills .nav-link .blue {
	background: #006994;
}
/* Resources Section Style CSS */
.resources-section {
	position: relative;
	padding: 90px 0;
	background-color: #f2f2f2;
}
.resource-content {
	padding: 20px 0px;
	text-align: center;
}
.resource-content h2 {
	margin-bottom: 50px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 500;
}

/* Zeal EX Page Style CSS */

/* About Zeal Section Style CSS */
.about-zeal {
	position: relative;
	padding: 30px 0px;
}
.about-zeal-head {
	position: relative;
	text-align: center;
}
.about-zeal-head h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	padding-bottom: 10px;
}
.about-zeal-head p {
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}
.about-zeal-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 20px;
}
.about-zeal-content h3 {
	font-size: 40px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 30px;
}
.about-zeal-content p {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
}

/* ampere zeal section Style CSS */
.ampere-zeal-section {
	position: relative;
	padding: 30px 0 100px 0;
}
.ampere-zeal-head {
	padding-bottom: 50px;
	text-align: center;
}
.ampere-zeal-head h2 {
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 10px;
}
.ampere-zeal-head h3 {
	font-size: 40px;
	font-weight: 300;
	line-height: 1.2;
	padding-bottom: 10px;
}
.ampere-zeal-section .kms {
	position: relative;
	border-right: 2px solid #727272;
}
.ampere-zeal-section .kms .image {
	width: 150px;
	height: auto;
	margin-bottom: -50px;
	display: inline-block;
	margin-left: 40px;
}
.ampere-zeal-section .kms .image img {
	width: 100%;
	height: auto;
	display: block;
}
.ampere-zeal-section .kms .text h5 {
	font-size: 20px;
	font-weight: 500;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .kms .text h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .kms .text p {
	font-size: 16px;
	font-weight: 300;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .hrs {
	position: relative;
	border-right: 2px solid #727272;
}
.ampere-zeal-section .hrs .image {
	width: 90px;
	height: auto;
	display: inline-block;
	margin-bottom: 20px;
}
.ampere-zeal-section .hrs .image img {
	width: 100%;
	height: auto;
	display: block;
}
.ampere-zeal-section .hrs .text h5 {
	font-size: 20px;
	font-weight: 500;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .hrs .text h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .hrs .text p {
	font-size: 16px;
	font-weight: 300;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .lit {
	position: relative;
}
.ampere-zeal-section .lit .image {
	width: 60px;
	height: auto;
	display: inline-block;
	margin-bottom: 20px;
}
.ampere-zeal-section .lit .image img {
	width: 100%;
	height: auto;
	display: block;
}
.ampere-zeal-section .lit .text h3 {
	font-size: 30px;
	font-weight: 500;
	line-height: .8;
	padding-bottom: 10px;
}
.ampere-zeal-section .lit .text p {
	font-size: 16px;
	font-weight: 300;
	line-height: .8;
	padding-bottom: 10px;
}

/* Center Section Style CSS */
.center-section {
	position: relative;
	background: #f2f2f2;
	padding: 90px 0px;
}
.cent-head {
	width: 80%;
	margin: auto;
	text-align: center;
}
.cent-head1 {
	width: 100%;
	text-align: center;
}
.cent-head h1,
.cent-head1 h1 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	padding-bottom: 10px;
}
.cent-head p,
.cent-head1 p {
	font-size: 16px;
	line-height: 2;
	font-weight: 300;
	padding: 30px 0px;
}
.cent-head1 p span {
	color: #d91a3c;
}
/* subscribe-section Style CSS */

.subscribe-section {
	position: relative;
	padding: 90px 0px;
}
.sub-head {
	text-align: center;
}
.sub-head h1 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	padding-bottom: 10px;
}
.sub-head p {
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	margin-bottom: 30px;
}
.sub-box {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 550px;
	padding: 50px 30px 50px 30px;
	-webkit-box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.1);
	-ms-box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.1);
	-o-box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.1);
	box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.1);
}
.sub-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.6;
	padding-bottom: 10px;
}
.sub-content p {
	font-size: 16px;
	font-weight: 400;
}
.sub-content p span {
	font-family: 'Lato', sans-serif;
}

/* liberated Section Style CSS */
.liberated-section {
	position: relative;
	padding-bottom: 90px;
}
.liberated {
	padding-bottom: 50px;
}

/* why-zeal-section Style CSS */
.why-zeal-section {
	position: relative;
	padding: 50px 0;
}
.why-zeal-head {
	position: relative;
	text-align: center;
}
.why-zeal-head h2,
.reo-head h2 {
	font-size: 42px;
	line-height: 1.8;
	font-weight: 500;
	padding-bottom: 10px;
}
.why-zeal-head p {
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	padding-bottom: 30px;
}
.why-zeal-item {
	background: #fff;
	margin-bottom: 30px;
	padding-right: 20px;
	min-height: 300px;
	-webkit-transition: all 300ms linear 0s;
	-moz-transition: all 300ms linear 0s;
	-ms-transition: all 300ms linear 0s;
	-o-transition: all 300ms linear 0s;
	transition: all 300ms linear 0s;
}

.why-img,
.reo-img {
	width: 100px;
	height: 100px;
}
.why-img img,
.reo-img img {
	width: 70px;
	height: auto;
}
.why-img .img-1 {
	width: 100px;
	height: auto;
}
.why-zeal-item h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 10px;
}
.why-zeal-item p {
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
}

/* Lighter Section Style CSS */
.lighter-section {
	position: relative;
	padding-bottom: 90px;
}
.lighter-section .light-content {
	position: relative;
	width: 85%;
	margin-left: -90px;
	padding-top: 50%;
}
.lighter-section .light-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	padding-bottom: 10px;
	text-align: left;
}
.lighter-section .light-content h4 {
	font-size: 40px;
	font-weight: 300;
	line-height: 1.1;
	padding-bottom: 10px;
	text-align: left;
	margin-bottom: 40px;
}
.lighter-section .light-content p {
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	padding-bottom: 10px;
	text-align: left;
}

/* Portable Section */
.portable-section {
	position: relative;
	background-image: url("../images/Battery_Zeal.jpg");
	min-height: 600px;
	padding-top: 80px;
}
.portable-head {
	position: relative;
	width: 40%;
}
.portable-head h2 {
	font-size: 40px;
	line-height: 1.1;
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.portable-head .red-line {
	width: 95%;
	height: 1px;
	background-color: #d91a3c;
}
.portable-head p {
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	padding: 15px 0;
	margin-bottom: 0;
}

/* Image Hover Section Style CSS */
.image-hover-section {
    position: relative;
    padding: 90px 0;
    background-color: #f2f2f2;
}
.auto-container {
    max-width: 1680px;
}
.hover-head h2 {
    font-size: 40px;
    color: #000;
    line-height: 1.1;
    text-align: center;
    font-weight: 500;
    padding-bottom: 10px;
}
.hover-head h3 {
    font-size: 40px;
    color: #000;
    line-height: 1;
    text-align: center;
    font-weight: 300;
    padding-bottom: 10px;
}
.our-vehicle {
    position: relative;
    margin: 20px auto 20px auto;
    background-size: contain;
    background-position: top center;
    background-image: url("../images/Zeal-Ex-redscooter.png");
    background-color: #f2f2f2;
    width: 800px;
    min-height: 800px;
    background-repeat: no-repeat;
}
.our-vehicle .add-first {
    width: 300px;
    height: auto;
    position: absolute;
    top: 37%;
    left: 30.1%;
    z-index: 99;
}
.our-vehicle .add-second {
    width: 300px;
    height: auto;
    position: absolute;
    top: 23%;
    left: 58%;
    z-index: 99;
}
.our-vehicle .add-third {
    width: 300px;
    height: auto;
    position: absolute;
    top: 35%;
    left: 83%;
    z-index: 99;
}
.our-vehicle .add-fourth {
    width: 300px;
    height: auto;
    position: absolute;
    top: 40%;
    left: 70%;
    z-index: 99;
}
.our-vehicle .add-fifth {
    width: 300px;
    height: auto;
    position: absolute;
    top: 67.5%;
    left: 33.7%;
    z-index: 99;
}
.our-vehicle .add-sixth {
    width: 300px;
    height: auto;
    position: absolute;
    top: 78%;
    left: 17%;
    z-index: 99;
}
.tooltip-col {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}
.tooltip-col .modular {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background: #d91a3c;
    line-height: 40px;
    text-align: center;
    transition: 0.7s all;
    order: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    
}
.tooltip-col .modular span {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: 0 0;
}
.tooltip-col .modular:hover {
    border: 1px solid #ddd;
    transform: scale(1.2);
}
/*.tooltip-bar {
    width: 2px;
    height: 130px;
    background-color: #d91a3c;
    margin-left: 23px;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: -120px;
}*/
.tooltip-discr {
    visibility: hidden;
    width: 200px;
    height: auto;
    background-color: rgba(217, 26, 60, 1);
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 80px;
    right: -100px;
}
.tooltip-discr:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #d91a3c transparent transparent transparent ;
}
.tooltip-discr p {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    
}
.tooltip-col:hover .tooltip-discr, 
.tooltip-col:hover .tooltip-bar {
    visibility: visible;
}

.vehicle-discription {
    padding: 30px 20px;
}
.vehicle-discription ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.vehicle-discription ul li {
    padding: 5px 0 5px 40px;
    margin: 0 0 20px;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    line-height: 18px;
    font-weight: 500;
}
.vehicle-discription ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #d91a3c;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    color: #fff;
}
.vehicle-discription ul li:nth-child(1):before {
    content: "1";
}
.vehicle-discription ul li:nth-child(2):before {
    content: "2";
}
.vehicle-discription ul li:nth-child(3):before {
    content: "3";
}
.vehicle-discription ul li:nth-child(4):before {
    content: "4";
}
.vehicle-discription ul li:nth-child(5):before {
    content: "5";
}
.vehicle-discription ul li:nth-child(6):before {
    content: "6";
}

/*digital-image-section Style CSS */
.digital-image-section {
    position: relative;
    padding: 50px 0;
}
.digital-image p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin-top: 50px;
    color: #000;
}

/* Reo Page Style CSS */
.reo-upgrade {
	position: relative;
	padding-bottom: 50px;
}
.reo-head {
	position: relative;
	text-align: center;
	margin-bottom: 80px;
}
.reo-head h2 {
	font-size: 40px;
	line-height: .7;
	font-weight: 500;
	padding-bottom: 10px;
}
.reo-head h3 {
	font-size: 40px;
	line-height: 1;
	font-weight: 300;
	padding-bottom: 10px;
}
.reo-item p {
	font-size: 16px;
}
.reo-price {
	position: relative;
	padding: 50px 0;
	background-color: #f2f2f2;
}
.reo-price-head {
	position: relative;
	padding: 50px 0px;
}
.reo-price-head h2 {
	font-size: 42px;
	line-height: 1.8;
	font-weight: 500;
	padding-bottom: 10px;
}
.reo-price-head p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	padding-top: 20px;
}

/* why-zeal-section Style CSS */
.why-Reo-section {
	position: relative;
	padding: 50px 0;
}
.why-Reo-head {
	position: relative;
	text-align: center;
}
.why-Reo-head h2 {
	font-size: 40px;
	line-height: 1.8;
	font-weight: 500;
	padding-bottom: 10px;
}
.why-Reo-head p {
	font-size: 16px;
	line-height: 1.8;
	font-weight: 400;
	padding-bottom: 30px;
}
.why-Reo-item {
	background: #fff;
	margin-bottom: 30px;
	padding-right: 20px;
	min-height: 350px;
	-webkit-transition: all 300ms linear 0s;
	-moz-transition: all 300ms linear 0s;
	-ms-transition: all 300ms linear 0s;
	-o-transition: all 300ms linear 0s;
	transition: all 300ms linear 0s;
}

.why-Reo-item .why-img {
	width: 100px;
	height: 100px;
}
.why-Reo-item .why-img img {
	width: 70px;
	height: auto;
}
.why-Reo-item .why-img .img-1 {
	width: 45px;
	height: auto;
}
.why-Reo-item h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 10px;
}
.why-Reo-item p {
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
}
/* Reo Color Tab Setyle CSS */

.reo-colors-tab-section {
	position: relative;
	padding-top: 20px;
}
.reo-colors-tab-section .colors {
	text-align: left;
}
.reo-colors-tab-section .colors h2 {
	font-size: 40px;
	line-height: 2;
	padding-bottom: 10px;
	font-weight: 500;
}
.reo-colors-tab-section .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	padding: 10px 10px 10px 30px;
}
.reo-colors-tab-section .nav-pills .nav-link span {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 15px;
	vertical-align: middle;
	border-radius: 50%;
	border: 2px solid #c3c3c3;
}
.reo-colors-tab-section .nav-pills .nav-link .blue {
	background: #294f84;
}
.reo-colors-tab-section .nav-pills .nav-link .red {
	background: #d32e1f;
}
.reo-colors-tab-section .nav-pills .nav-link .yellow {
	background: #d5cb4d;
}
.reo-colors-tab-section .nav-pills .nav-link .orange {
	background: #ff7f00;
}
.reo-colors-tab-section .nav-pills .nav-link.active span {
	border: none;
}

/* Reo Elite Page Style CSS */

/* About Reo Section Style CSS */
.about-reo-elite {
	position: relative;
	padding: 0px 0px;
}
.about-reo-elite-head {
	position: relative;
	text-align: center;
}
.about-reo-elite-head h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	padding-bottom: 10px;
}
.about-reo-elite-head p {
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}
.about-reo-elite-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 20px;
}
.about-reo-elite-content h3 {
	font-size: 40px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 30px;
}
.about-reo-elite-content p {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
}
/* Tab8 Section Style CSS */

.tab-section8 {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
.tab-section8 .nav-pills:before {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	width: 100px;
	height: 2px;
	background-color: #d91a3c;
}
.tab-section8 .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	border-bottom: 2px solid #ccc;
	padding: 20px 10px 20px 0;
}
.tab-section8 .nav-pills .nav-link.active {
	font-size: 23px;
	font-weight: 800;
	border-bottom: 2px solid #d91a3c;
}

/* Reo Elite Color Tab */
.reoElite-colors-tab-section {
	position: relative;
	padding-top: 50px;
}
.reoElite-colors-tab-section .colors {
	text-align: left;
}
.reoElite-colors-tab-section .colors h2 {
	font-size: 40px;
	line-height: 2;
	padding-bottom: 10px;
	font-weight: 500;
}
.reoElite-colors-tab-section .nav-pills .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	border-radius: 0;
	margin-bottom: 0;
	float: left;
	position: relative;
	background-color: transparent;
	padding: 10px 10px 10px 30px;
}
.reoElite-colors-tab-section .nav-pills .nav-link span {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 15px;
	vertical-align: middle;
	border-radius: 50%;
	border: 2px solid #c3c3c3;
}
.reoElite-colors-tab-section .nav-pills .nav-link .glossy-red {
	background: #f3340c;
}
.reoElite-colors-tab-section .nav-pills .nav-link .glossy-black {
	background: #000000;
}
.reoElite-colors-tab-section .nav-pills .nav-link .glossy-blue {
	background: #448eff;
}
.reoElite-colors-tab-section .nav-pills .nav-link .glossy-white {
	background: #e1e1e1;
}
.reoElite-colors-tab-section .nav-pills .nav-link.active span {
	border: none;
}

/* Care Page Style CSS */

/* Care Banner Section Style CSS */
.care-banner {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
	background-image: url("../images/care-bg.jpg");
}
.care-banner.overlay {
    position: relative;
}
.care-banner.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.care-banner,
.care-banner > .container > .row {
    min-height: 500px;
}
.care-banner .banner-link {
    padding: 50px 0px;
    
}
.care-banner .banner-link a {
    display: inline-block;
    color: #fff;
    margin-right: 34px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.care-banner .banner-link a:after {
    content: "\f30b";
    position: absolute;
    right: -30px;
    top: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.care-banner .banner-link a:hover {
    color: #d91a3c;
}
.care-banner .banner-link span {
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.care-section {
	position: relative;
	padding: 80px 0;
}
.care-head {
	position: relative;
	padding-bottom: 50px;
}
.care-head h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.4;
	padding-bottom: 10px;
}
.care-head h2 span {
	color: #d91a3c;
}
.about-care {
	position: relative;
	padding-right: 20px;
}
.about-care p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
	padding-bottom: 10px;
	margin-bottom: 10px;
	text-align: justify;
}

/* Contact Page Style CSS */

/* Contact banner Section Style CSS */

.contact-banner {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
	background-image: url("../images/contact-bg.jpg");
}
.contact-banner.overlay {
    position: relative;
}
.contact-banner.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.contact-banner,
.contact-banner > .container > .row {
    min-height: 500px;
}
.contact-banner .banner-link {
    padding: 50px 0px;
    
}
.contact-banner .banner-link a {
    display: inline-block;
    color: #fff;
    margin-right: 34px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-banner .banner-link a:after {
    content: "\f30b";
    position: absolute;
    right: -30px;
    top: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.contact-banner .banner-link a:hover {
    color: #d91a3c;
}
.contact-banner .banner-link span {
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-page {
	position: relative;
}
.contact-page p {
	font-size: 16px;
	font-weight: 300;
	line-height: 2;
}

/* Contact Form */
.contactForm {
	position: relative;
	background-color: rgba(217, 26, 60, .8);
	padding-bottom: 80px;
}
.form-wrapper {
	padding: 55px 70px;
	margin-top: -87px;
	background: #fff;
	-webkit-box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.5);
}
.form-wrapper .contact-title {
	position: relative;
	display: inline-block;
	margin-bottom: 40px;
}
.contact-form .form-group .form-control:hover,
.contact-form .form-group .form-control:active,
.contact-form .form-group .form-control:focus {
	outline: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	border-bottom: 1px solid #1a1a1a;
}

.contact-form lable {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
}
.contact-form .examp lable {
	display: block;
	margin-bottom: 30px;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 0;
	background: #fff;
	border-bottom: 1px solid #1a1a1a;
	border-radius: 0;
	padding: 15px 0px;
	margin-bottom: 20px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	outline: none;
}
.form-inner-box-wrap textarea {
	height: 100px;
	resize: none;
}
.contact-form button,
.contact-form button:focus,
.contact-form button:active {
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	-ms-box-shadow:none;
	box-shadow: none;
	outline: none !important;
}
#error_message {
	margin-bottom: 20px;
	background: #fff;
	padding: 0px;
	text-align: center;
	font-size: 14px;
	line-height: 2;
	color: #d91a3c;
	transition: all 0.5s ease;
}

.contact-thank {
	position: relative;
	min-height: 300px;
	width: 100%;
	background-color: rgba(217, 26, 60, .3);
	padding: 90px 0;
}
.thank h2 {
	font-size: 42px;
	text-align: center;
	line-height: 1.5;
	padding-bottom: 10px;
}
.thank p {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 1.8;
	padding-bottom: 10px;
}
/* 404 Page Stule CSS */
.finance-banner {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-position: center center;
    background: #708693;
}
.finance-banner.overlay {
    position: relative;
}
.finance-banner.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}
.finance-banner,
.finance-banner > .container > .row {
    min-height: 350px;
}
.finance-banner .banner-link {
    padding: 50px 0px;
    
}
.finance-banner .banner-link a {
    display: inline-block;
    color: #fff;
    margin-right: 34px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.finance-banner .banner-link a:after {
    content: "\f30b";
    position: absolute;
    right: -30px;
    top: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.finance-banner .banner-link a:hover {
    color: #d91a3c;
}
.finance-banner .banner-link span {
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 2px;
    text-transform: uppercase;
}
.loan-section {
	position: relative;
	padding: 50px 0;
	min-height: 350px;
}
.loan-content {
	position: relative;
}
.loan-content h2 {
	font-size: 40px;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 10px;
	padding-bottom: 10px;
}
.loan-content p {
	font-size: 16px;
	text-align: center;
	font-weight: 300;
	line-height: 2;
	padding-bottom: 10px;
}
.loan-section p {
	
}





/* New E-Bike Page Style CSS */

.performance {
	position: relative;
	padding: 50px 0px;
	background-color: #f5f5f5;
}
.perfo-head {
	position: relative;
	text-align: center;
	padding-bottom: 30px;
}
.perfo-head h2 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1em;
	font-family: 'Rajdhani', sans-serif;
	text-transform: uppercase;
	letter-spacing: .025em;
}
.perfo-head span {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .8em;
	line-height: 1.1em;
	text-transform: uppercase;
	color: #ed1d24;
	display: block;
	padding: 10px 0;
	width: 100%;
}
.pro-details {
	position: relative;
}
.specific-content {
	position: relative;
	padding-right: 20px;
	text-align: right;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: flex-start;
	margin: 65px 0 0;
}
.pro-content {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 13px 0 0;
}
.pro-title {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: .025em;
	line-height: 1.1em;
	text-transform: uppercase;
	font-family: 'Rajdhani', sans-serif;
	color: #000;
}
.pro-text {
	font-size: 16px;
	font-weight: 300;
	line-height: 27px;
	color: grey;
	margin: 11px 0 0;
}
.pro-mark {
	position: relative;
	display: inline-block;
	margin-top: -4px;
	font-family: 'Rajdhani', sans-serif;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #e4e1e5;
}

.speci-right {
	padding-left: 20px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	text-align: left;
}
.specific-content-1 {
	position: relative;
	text-align: left;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: flex-start;
	margin: 65px 0 0;
}
.pro-content-1 {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 0 0 13px;
}
.pro-title-1 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: .025em;
	line-height: 1.1em;
	text-transform: uppercase;
	font-family: 'Rajdhani', sans-serif;
	color: #000;
}
.pro-text-1 {
	font-size: 16px;
	font-weight: 300;
	line-height: 27px;
	color: grey;
	margin: 11px 0 0;
}
.pro-mark-1 {
	position: relative;
	display: inline-block;
	margin-top: -4px;
	font-family: 'Rajdhani', sans-serif;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #e4e1e5;
}

.specific-image {
	position: relative;
	float: left;
	width: 400px;
	height: 500px;
	margin-top: 10px;
}
.specific-image img {
	height: auto;
	width: 100%;
}

.skell-section {
	position: relative;
	padding: 50px 0px;
}
.about-skell-head {
	position: relative;
	text-align: center;
}
.about-skell-head h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	padding-bottom: 10px;
}
.about-skell-head p {
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}
.about-skell-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 20px;
}
.about-skell-content h2 .fas {
	font-size: 35px;
}
.about-skell-content h3 {
	font-size: 40px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 30px;
}
.about-skell-content p {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
}

.bike-card {
	position: relative;
}
.bike-card .swiper-container {
	padding-left: 15px;
	padding-right: 25px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.models-slider .swiper-pagination {
	position: static;
	width: 100%;
	float: left;
	margin-top: 50px;
}
.model-container {
	position: relative;
	margin: 0 0 30px;
}
.model-inner {
	position: relative;
	display: inline-block;
	width: 100%;
	vertical-align: middle;
	background-color: #f6f6f6;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
}
.model-inner ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.model-inner ul li {
	margin: 0;
	padding: 17px 10%;
}
.model-inner ul li.model-title {
	position: relative;
	padding: 49px 10% 0;
	margin: 0;
}
.model-inner ul li.model-title .model-tagline {
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.1em;
	letter-spacing: .07em;
	color: #ed1d24;
}
.model-inner ul li.model-title .model-tline {
	display: block;
	margin: 2px 0 0;
	font-size: 38px;
	line-height: 1em;
	font-weight: 500;
	letter-spacing: .025em;
	text-transform: uppercase;
	font-family: 'Rajdhani', sans-serif;
	color: #000;
}
.model-inner ul li.model-price {
	position: relative;
	padding-top: 15px;
	padding-bottom: 0;
}
sub {
	bottom: .5ex;
}
.model-inner ul li.model-price .model-currency {
	position: relative;
	font-size: 35px;
	line-height: 1em;
	font-weight: 500;
	color: #000;
	font-family: 'Rajdhani', sans-serif;
	vertical-align: text-bottom;
	top: -3px;
}
.model-inner ul li.model-price .model-pt-price {
	position: relative;
	font-size: 48px;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 500;
	line-height: 1em;
	display: inline-block;
	vertical-align: middle;
	color: #000;
}
.model-inner ul li.model-content {
	padding-top: 12px;
	padding-bottom: 18px;
	font-size: 16px;
	font-weight: 300;
	line-height: 27px;
	color: grey;
}
.model-inner ul li.model-content .model-spec {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.1em;
}
.model-inner ul li.model-content .model-spec .fas {
	font-size: 14px;
	display: block;
	line-height: inherit;
	color: #ed1d24;
	margin-right: 10px;
}
.model-inner ul li.model-btn {
	padding-top: 24px;
	padding-bottom: 60px;
}

.lighter-section .light-content.detel-sec {
	position: relative;
	width: 85%;
	margin-left: -50px;
	padding-top: 30%;
}

.policy {
	position: relative;
	padding: 90px 0px;
}
.policy-head {
	position: relative;
	padding-bottom: 50px;
}
.policy-head p {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
}
.collect {
	position: relative;
	padding: 20px 20px;
	background-color:#f6f7f8;
}

.collect h2 {
	position: relative;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 600;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 1px;
}
.collect .line {
	position: relative;
	width: 45px;
	height: 2px;
	margin-top: 10px;
	margin-bottom: 20px;
	background: #d91a3c;
}
.collect .line:after {
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	top: 5px;
	bottom: 0;
	background: #d91a3c;
}
.collect .strong {
	font-size: 16px;
	font-weight: 900;
	line-height: 1.8;
	font-family: 'Roboto Condensed', sans-serif;
}
.collect p {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	font-family: 'Roboto Condensed', sans-serif;
}
.collect ol {
	list-style: inherit;
	list-style-type: lower-alpha !important;
	padding-left: 35px !important;
}
.collect ol.num {
	list-style: decimal;
	list-style-type: decimal;
	padding-left: 35px !important;
}
.collect ol li {
	font-size: 14px;
	font-weight: 600;
	font-family: 'Roboto Condensed', sans-serif;
	list-style: inherit;
	margin-bottom: 10px;
	text-align: justify;
}
.collect ul {
	position: relative;
	list-style: disc;
	padding-left: 35px !important;
}
.collect ul li {
	list-style: disc;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Roboto Condensed', sans-serif;
	text-align: justify;
}

.faq-section {
	position: relative;
	padding: 90px 0;
}
.faq-head {
	position: relative;
	padding: 0 0 50px;
}
.card,
.card-header {
	padding: 0 !important;
	background-color: #fff !important;
	border: none !important;
	margin-bottom: 20px;
}
.card {
	box-shadow: 0px 2px 18px -2px rgba(0,0,0,.3);
}
.btn-link {
	width: 100%;
	height: 60px;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	text-decoration: none;
}
.btn-link:after {
	content: "\2212";
	position: absolute;
	color: #1a1a1a;
	width: 30px;
	font-size: 18px;
	text-align: center;
	border-radius: 5px;
	right: 15px;
	top: 11px;
	background: #ececec;
}
.btn-link.collapsed:after {
	content: "\002B";
	text-decoration: none;
}
.btn-link:hover {
	text-decoration: none;
	color: #000;
	outline: none;
}

.btn-link:focus, 
.btn-link.focus {
	outline: none;
	text-decoration: none !important;
}
.card-body {
	font-size: 14.5px;
	line-height: 2em;
	background: #fff;
	color: #555555 !important;
	padding: 6px 20px !important;
}
.card-body .eb-strong {
	margin: 10px 0;
	padding: 0;
}
.card-body .eb-strong .e-strong {
	font-size: 16px;
	font-weight: 600;
	color: #000;
}
.card-body p {
	font-size: 16px;
	font-weight: 600;
	color: #000;
}
.location_1 {
	display: none;
}

/* Under Construction page */
.under-const {
	position: relative;
	width: 100%;
	height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: url("../images/under.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.under h2 {
	font-size: 40px;
	color: #fff;
	line-height: 50px;
	margin-bottom: 10px;
}
.under p {
	width: 500px;
	height: auto;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}