/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : ULaunch - Multi Purpose Products Landing Page
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Navigation area css
03. Slider area css
04. Facility area css
05. About us area css
06. Offers area css
07. Features area css
08. Products area css
09. Testimonial area css
10. Design Showcase area css
11. Contact us area css
12. Footer area css
13. Media Screens
-------------------------------------------------------------------------------------- */

/************************************/
/***** 	   01. General css		 ****/
/************************************/

:root{
	--brand-primary: #d76a2a;
	--brand-dark: #8b4120;
	--brand-accent: #f4e5d8;
	--header-height: 0px;
}

body{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
}


body.on-side{
	margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin-top:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.container{
	max-width: 1160px;
}

/************************************/
/***** 02. Navigation area css  *****/
/************************************/

.navbar{
	margin-bottom: 0;
}

.navbar-brand{
	height: auto;
	transition: all 0.3s ease-out;
}

.navbar-brand img{
	height: 54px;
	transition: transform 0.3s ease;
}

nav.navbar.main-menu{
	background: rgba(255,255,255,0.95);
	border-bottom: 1px solid rgba(20,21,25,0.08);
	border-radius: 0;
	box-shadow: 0 10px 30px rgba(21,22,24,0.08);
	backdrop-filter: blur(18px);
	z-index: 101;
	padding: 16px 0;
	transition: all 0.3s ease-out;
}

.nav-layout{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.navbar-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex: 1;
}

.nav-mobile-left,
.nav-mobile-icons{
	display: none;
}

.nav-mobile-icons{
	align-items: center;
	gap: 12px;
}

.nav-mobile-icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(215,106,42,0.12);
	color: var(--brand-primary);
	text-decoration: none;
	font-size: 18px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.nav-mobile-icon:hover,
.nav-mobile-icon:focus{
	background: rgba(215,106,42,0.2);
	transform: translateY(-1px);
}

.nav-links{
	list-style: none;
	display: flex;
	gap: 22px;
	margin: 0;
	padding: 0;
}

.nav-links li a{
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #262a33;
	position: relative;
	padding-bottom: 6px;
	transition: color 0.2s ease;
}

.nav-links li a:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--brand-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a:focus{
	color: var(--brand-primary);
}

.nav-links li a:hover:after,
.nav-links li a:focus:after{
	transform: scaleX(1);
}

.nav-contact{
	display: flex;
	align-items: flex-start;
	gap: 24px;
	font-size: 13px;
	color: #23242a;
}

.nav-contact-item{
	display: flex;
	flex-direction: column;
	gap: 0px;
	line-height: 1.3;
	max-width: 160px;
}

.nav-contact-item:last-child{
	max-width: 200px;
}

.nav-contact-label{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a1a4ab;
	margin-bottom: 4px;
}

.nav-contact-link{
	display: inline-block;
	font-weight: 700;
	color: #1f2227;
}

.nav-contact-address{
	line-height: 1.4;
}

.nav-contact-time{
	display: block;
	margin-top: 0px;
	color: #5c6066;
	font-weight: 500;
}

.nav-contact-link:hover,
.nav-contact-link:focus{
	color: var(--brand-primary);
}

.nav-toggle-btn{
	border: none;
	background: rgba(215,106,42,0.12);
	color: var(--brand-primary);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, transform 0.3s ease;
}

.nav-toggle-btn:hover,
.nav-toggle-btn:focus{
	background: rgba(215,106,42,0.2);
	transform: translateY(-1px);
}

.offcanvas-menu{
	background: #2c2c2c;
	padding: 0;
	position: fixed;
}

.offcanvas-menu .close-side{
	position: absolute;
	top: 10px;
	right: 20px;
	color: #fff;
}

.side-logo{
	text-align: center;
	padding: 50px 30px;
}

.offcanvas-menu .widget ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.offcanvas-menu .widget ul.link li a{
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	color: #9f9f9f;
    letter-spacing: 1px;
	padding: 12px 30px;
	border-bottom: 1px dashed #3c3c3c;
}

.offcanvas-menu .widget ul.link li a:hover{
	color: #fff;
}

.offcanvas.offcanvas-menu{
	width: 280px;
}

.offcanvas-menu .widget ul.link li a i{
	padding-right: 10px;
}

/************************************/
/*****   03. Slider area css    *****/
/************************************/

.banner{
	position: relative;
	min-height: calc(100vh - var(--header-height, 0px));
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 180px 0 160px;
	color: #fff;
}

.banner-video{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(115%);
}

.banner-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18,20,24,0.52) 0%, rgba(18,20,24,0.78) 100%);
}

.banner .container{
	position: relative;
	z-index: 2;
}

.header-content{
	max-width: 950px;
	margin: 0 auto;
	text-align: center;
}

.header-content h1{
	color: #fff;
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.header-content p{
	color: rgba(255,255,255,0.86);
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 36px;
}

.btn-shopnow{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 14px 36px;
	border-radius: 999px;
	box-shadow: 0 12px 26px rgba(139,69,35,0.25);
	transition: all 0.3s ease;
}

.btn-shopnow:hover{
	background: var(--brand-dark);
	color: #fff;
	transform: translateY(-2px);
}


.supra-highlight{
	background: #f7f3f0;
	padding: 90px 0;
}

.highlight-card{
	background: #fff;
	border-radius: 28px;
	padding: 56px 60px;
	box-shadow: 0 28px 60px rgba(24,22,20,0.12);
	color: #2d2d2d;
}

.highlight-card h3{
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #232323;
}

.highlight-list{
	list-style: none;
	padding: 0;
	margin: 0 0 32px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px 24px;
}

.highlight-list li{
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	border-radius: 20px;
	background: var(--brand-accent);
	box-shadow: inset 0 0 0 1px rgba(215,106,42,0.12);
	color: #2f3035;
	font-weight: 600;
}

.highlight-icon{
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(215,106,42,0.16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	font-size: 20px;
}

.highlight-text{
	font-size: 15px;
	line-height: 1.4;
}

.highlight-summary{
	font-size: 16px;
	line-height: 1.7;
	color: #4f5055;
}


/************************************/
/*****  05. About us area css   *****/
/************************************/

.section-title{
	margin-bottom: 60px;
}

.section-title p{
	color: #aaa7a7;
	position: relative;
	font-size: 14px;
	padding-left: 70px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.section-title p:before{
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	position: absolute;
	top: 9px;
	left: 0;
	background: #aaa7a7;
}

.section-title h2{
	color: #413f3f;
	font-size: 40px;
	font-weight: 700;
}

.aboutus{
	padding: 80px 0;
}

.aboutus .section-title{
	margin-bottom: 40px;
}

.pinterest-quote{
	margin-top: 16px;
	padding: 16px 20px;
	border-left: 3px solid var(--brand-primary);
	font-size: 14px;
	font-style: italic;
	color: #4a4a4a;
	background: rgba(215,106,42,0.08);
}

.about-entry p{
	font-size: 14px;
	color: #aaa7a7;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}

.btn-video{
	display: inline-block;
	color: var(--brand-primary);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
	padding: 22px 0 22px 60px;
}

.btn-video i{
	color: var(--brand-primary);
	font-size: 46px;
	position: absolute;
	top: 0;
	left: 0;
}

.btn-video:hover{
	color: var(--brand-dark);
}

/**********************************/
/*****  06. Offers area css   *****/
/**********************************/

.offer-wrapper{
	background: #f7f7f7;
	padding: 30px 50px;
}

.offer-entry{
	padding-top: 24px;
}

.offer-entry h3{
	color: #413f3f;
	font-size: 26px;
	font-weight: 600;
}

.offer-entry p{
	color: #a4a6a7;
	font-size: 14px;
	font-weight: 500;
}

.offer-entry .btn-shopnow{
	background: var(--brand-primary);
}

.offer-entry .btn-shopnow:hover{
	background: #000;
}

/************************************/
/*****  07. Features area css   *****/
/************************************/

.features{
	padding: 80px 0;
}

.features .section-title{
	margin-bottom: 40px;
}

.feature-entry p{
	font-size: 16px;
	color: #444;
	line-height: 1.7;
	margin-bottom: 1.5em;
}

.feature-points{
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
}

.feature-points li{
	position: relative;
	padding-left: 30px;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 12px;
}

.feature-points li:before{
	content: '\f00c';
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--brand-primary);
	font-size: 16px;
}

.finance-box{
	background: var(--brand-accent);
	border-radius: 20px;
	padding: 24px 28px;
	box-shadow: inset 0 0 0 1px rgba(215,106,42,0.12);
}

.finance-box h4{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #232323;
}

.finance-cards{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 22px;
}

@media (min-width: 768px){
	.finance-cards{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1200px){
	.finance-cards{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.finance-card{
	background: #fff;
	border-radius: 16px;
	padding: 16px 14px;
	text-align: center;
	box-shadow: 0 16px 30px rgba(0,0,0,0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finance-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 20px 36px rgba(0,0,0,0.08);
}

.finance-card img{
	display: block;
	max-width: 100%;
	height: auto;
	margin-bottom: 12px;
	margin-left: auto;
	margin-right: auto;
	object-fit: contain;
}

.finance-card-title{
	font-size: 15px;
	font-weight: 600;
	color: #232323;
	margin-bottom: 4px;
}

.finance-card-term{
	font-size: 13px;
	color: #6c6c6c;
}

.finance-bank-link{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 14px;
	background: rgba(255,255,255,0.85);
	box-shadow: inset 0 0 0 1px rgba(35,35,35,0.1);
	text-decoration: none;
	color: #2d2d2d;
	font-weight: 600;
	line-height: 1.3;
	transition: box-shadow 0.2s ease, color 0.2s ease;
}

.finance-bank-link:hover{
	color: var(--brand-primary);
	box-shadow: inset 0 0 0 1px rgba(215,106,42,0.3);
}

.finance-bank-link img{
	height: 18px;
	width: auto;
	flex-shrink: 0;
}

.feature-image{
	padding-top: 20px;
}

/************************************/
/*****  08. Products area css   *****/
/************************************/

.products{
	background: #f2f6f9;
	padding: 80px 0;
}

.product-single{
	text-align: center;
}

.product-single figure{
	margin-bottom: 30px;
}

.product-single h3{
	color: #2c2c2c;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.product-single p{
	color: var(--brand-primary);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0;
}

/***************************************/
/*****  09. Testimonial area css   *****/
/***************************************/

.testimonials{
	padding: 80px 0;
	background: url(../images/testimonial.jpg) no-repeat top center fixed;
	background-size: cover;
	position: relative;
}

.testimonials:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(215,106,42,0.7);
}

.testimonials .container{
	position: relative;
	z-index: 1;
}

.testimonials .section-title h2{
	color: #fff;
}

.testimonials .section-title p{
	color: #000;
}

.testimonials .section-title p:before{
	background: #000;
}

.testimonial-slider{
	margin: 0 auto;
	padding: 0 140px;
	position: relative;
}

.testimonial-single{
	text-align: center;
	position: relative;
}

.testimonial-single:before{
	content: '\f10d';
	font-family: FontAwesome;
	color: #fff;
	font-size: 76px;
}

.testimonial-single p{
	color: #fff;
	line-height: 1.5em;
}

.testimonial-single h3{
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	margin-top: 20px;
}

.testimonial-single h3 span{
	display: block;
	font-size: 13px;
	color: #2c2c2c;
	text-transform: uppercase;
	margin-top: 6px;
}

.testimonial-button-next,
.testimonial-button-prev{
	width: 36px;
	height: 36px;
	background: #fff;
	color: var(--brand-primary);
	border-radius: 50%;
	text-align: center;
	padding-top: 7px;
	position: absolute;
	cursor: pointer;
}

.testimonial-button-prev{
	top: 50%;
	left: 0px;
}

.testimonial-button-next{
	top: 50%;
	right: 0px;
}

/*******************************************/
/*****  10. Design Showcase area css   *****/
/*******************************************/

.design-showcase{
	padding: 80px 0;
}

.design-single{
	position: relative;
	padding-left: 70px;
}

.design-single span{
	font-size: 44px;
	color: #c3c2c2;
	font-weight: 600;
	position: absolute;
	line-height: 1em;
	top: 0;
	left: 0;
}

.design-single h3{
	font-size: 20px;
	color: #2c2c2c;
	font-weight: 600;
}

.design-single p{
	color: #aaa7a7;
	font-size: 14px;
}

.showcase-slider{
	max-width: 880px;
	margin: 100px auto 30px;
}

.showcase-slider .leftClass,
.showcase-slider .rightClass{
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #2c2c2c;
	padding-bottom: 4px;
	margin-top: -10px;
}

.showcase-slider>.navContainer>.leftClass:after,
.showcase-slider>.navContainer>.rightClass:after{
	background: #2c2c2c;
}

/**************************************/
/*****  11. Contact us area css   *****/
/**************************************/

.contactus{
	background: #f2f6f9;
	padding: 80px 0;
}

.contact-note{
	margin-top: 14px;
}

.contact-note p{
	font-size: 14px;
	color: #aaa7a7;
	line-height: 1.5em;
}

.contact-form{
	max-width: 768px;
	margin: 20px auto 0;
}

.contact-form .form-control{
	box-shadow: none;
	border-radius: 0;
	border: none;
	font-size: 14px;
	color: #aaa7a7;
	height: auto;
	padding: 12px 16px;
	resize: none;
}

.btn-contact{
	display: inline-block;
	border: none;
    background: var(--brand-primary);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.25em;
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 30px;
    transition: all 0.3s;
}

.btn-contact:focus,
.btn-contact:hover{
	outline: 0;
	background: #413f3f;
}

.with-errors ul{
	padding: 0;
	margin: 0;
	color: #a94442;
}

/**********************************/
/*****  12. Footer area css   *****/
/**********************************/

footer{
	padding: 60px 0 40px;
	background: #2c2c2c;
}

.footer-mega{
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about img{
	margin-bottom: 30px;
}

.footer-about p,
.footer-contact p,
.footer-siteinfo p{
	color: #aaa7a7;
	font-size: 14px;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}

.footer-social{
	margin-bottom: 30px;
}

.footer-social a{
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #ffffff;
	color: var(--brand-primary);
	border-radius: 50%;
	text-align: center;
	padding-top: 8px;
	margin-right: 6px;
}

.footer-social a:hover{
	background: var(--brand-primary);
	color: #fff;
}

.footer-contact h4{
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-contact a{
	color: #fff;
	font-weight: 600;
}

.footer-contact a:hover{
	color: var(--brand-primary);
}

.footer-messengers{
	margin-top: 24px;
}

.footer-messengers p{
	color: #aaa7a7;
	font-size: 14px;
	margin-bottom: 12px;
}

.messenger-links{
	display: flex;
	gap: 10px;
}

.messenger-links a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	color: #fff;
	font-size: 14px;
	transition: all 0.3s;
	position: relative;
}

.messenger-links a::after{
	content: attr(data-number);
	position: absolute;
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: rgba(255,255,255,0.7);
}

.messenger-links a:hover{
	background: var(--brand-primary);
	color: #fff;
}

.footer-bottom{
	margin-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
}

.footer-menu ul{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
}

.footer-menu ul li{
	display: inline-block;
}

.footer-menu ul li a{
	padding: 0;
	color: #aaa7a7;
	font-size: 14px;
}

.footer-siteinfo p{
	margin-bottom: 0;
}

.footer-menu{
	margin-top: 0;
}

.footer-menu ul li a:hover{
	color: var(--brand-primary);
}
.map-section{
	padding: 100px 0 60px;
	background: #f7f3f0;
}

.map-wrapper{
	position: relative;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(31,22,18,0.18);
}

.map-wrapper iframe{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}



/************************************/
/*****    13. Media Screens     *****/
/************************************/

@media only screen and (max-width: 1200px){
	.navbar-content{
		gap: 28px;
	}

	.nav-contact{
		gap: 18px;
	}
}

@media only screen and (max-width: 991px){
	.nav-layout{
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 16px;
	}

	.nav-mobile-left,
	.nav-mobile-icons{
		display: flex;
		align-items: center;
	}

	.nav-mobile-left{
		justify-content: flex-start;
		justify-self: start;
	}

	.nav-mobile-icons{
		justify-content: flex-end;
		gap: 16px;
		justify-self: end;
	}

	.navbar-brand{
		justify-self: center;
		text-align: center;
	}

	.navbar-brand img{
		height: 42px;
	}

	.navbar-content{
		display: none;
	}

	.nav-mobile-icon{
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.nav-contact-time{
		display: none;
	}

	.banner{
		padding: 140px 0 120px;
	}



	.highlight-card{
		padding: 44px 36px;
	}

	.highlight-list{
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.offer-wrapper{
		text-align: center;
	}

	.offer-entry{
		margin-bottom: 30px;
	}

	.product-single{
		margin-bottom: 30px;
	}

	.testimonial-slider{
		padding: 0 80px;
	}

	.design-single{
		margin-bottom: 30px;
	}

	.showcase-slider{
		margin: 30px 0;
	}
}

/* Mobile Layout */
@media only screen and (max-width: 767px){
	.map-wrapper{
		height: 320px;
	}

	.header-content h1{
		font-size: clamp(2.1rem, 7vw, 3rem);
	}

	.header-content p{
		font-size: 16px;
		margin-bottom: 28px;
	}

	.banner{
		padding: 130px 0 110px;
	}

	.supra-highlight,
	.aboutus,
	.features,
	.testimonials,
	.map-section,
	.contactus{
		padding: 60px 0;
	}

	.products{
		padding: 60px 0 30px;
	}

	.highlight-card{
		padding: 32px 24px;
	}

	.highlight-list{
		grid-template-columns: 1fr;
	}

	.highlight-list li{
		padding: 16px 18px;
	}

	.highlight-icon{
		width: 42px;
		height: 42px;
		border-radius: 14px;
		font-size: 18px;
	}

	.about-entry{
		margin-bottom: 30px;
	}

	.about-image img{
		width: 100%;
	}

	.feature-image{
		text-align: center;
		margin-bottom: 40px;
	}

	.footer-menu ul{
		justify-content: center;
	}

	.footer-bottom{
		text-align: center;
	}

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

}


/* Small Mobile Layout */

@media only screen and (max-width: 480px) {
	.section-title{
		margin-bottom: 40px;
	}

	.section-title h2{
		font-size: 22px;
	}

	.header-content h1{
		font-size: 2.2rem;
	}

	.btn-shopnow{
		width: 100%;
		letter-spacing: 0.08em;
	}

	.nav-links{
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.nav-contact{
		font-size: 12px;
	}

	.btn-video{
		font-size: 14px;
	}

	.offer-wrapper{
		padding: 20px;
	}

	.feature-entry ul li{
		width: 100%;
	}

	.testimonial-slider{
		padding: 0;
	}

	.testimonial-pagination{
		text-align: center;
		padding-top: 20px;
	}

	.testimonial-button-next,
	.testimonial-button-prev{
		display: inline-block;
		position: relative;
		margin: 0 4px;
	}
}
