/*!
Theme Name: StarlitDevs
Theme URI: http://underscores.me/
Author: StarlitDevs
Author URI: https://starlitdevs.com/
Description: This is a custom theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starlitdevs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

StarlitDevs is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


:root{
    --color--white-color: #fff;
    --color--black-color: #111;
    --color--text-color: #293d66;
    --section-bg-1: #293d66;
    --section-bg-2: #eaf5f6;
    --section-bg-3: #20335a;
    --button-bg: #3ac2c9;
	--gradient-color: linear-gradient( to top, rgb(31,50,88) 0%, rgba(31,50,88,0) 100%);
	--primary-font: 'Poppins';
	--secondary-font: 'Lorimer No 2';
}
html, body {
  scroll-padding-top: 150px;
}
body{
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	font-family: var(--primary-font);
	line-height: 1.8;
	font-size: 13px;
	font-weight: 300;
	color: var(--color--text-color);
	scroll-behavior: smooth;
}
.btn{
	padding: 15px 30px;
	display: inline-block;
	border-radius: 28px;
	font-size: 14px;
	line-height: 1;
	font-family: var(--secondary-font);
	font-weight: 600;
	border: none;
	transition: .3s;
	text-transform: uppercase;
	letter-spacing: 4px;
}
.btn-primary{
	color: var(--color--white-color);
	background-color: var(--button-bg);
}
.btn-primary:hover{
	background-color: var(--color--white-color);
	color: var(--color--text-color);
}
.btn-white{
	background-color: var(--color--white-color);
	color: var(--color--text-color);
}
.btn-white:hover{
	background-color: var(--button-bg);
	color: var(--color--white-color);
}
.button-box{
	gap: 10px;
}
h1, h2, h3, h4, h5, h6{
	line-height: 1.1;
	margin: 0;
	padding: 0;
	font-weight: 400;
}
h1{
	font-size: 14px;
	letter-spacing: 5px;
	line-height: 1.5;
	font-weight: 300;
	font-family: var(--secondary-font);
	letter-spacing: 3px;
	color: var(--color--white-color);
	text-transform: uppercase;
}
h2, .h2{
	font-size: 30px;
	font-family: var(--secondary-font);
	font-weight: 600;
	color: var(--color--white-color);
	text-transform: uppercase;
}
p{
	margin: 0;
}
p:not(:last-child){
	margin-bottom: 12px;
}
img{
	max-width: 100%;
	height: auto;
}
ul{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
	transition: .4s;
}
a:focus{
	outline: none;
}
textarea, input, select{
	box-sizing: border-box;
	width: 100%;
	border: none;
	border-radius: 20px;
	padding: 0 24px !important;
	color: var(--color--text-color);
	background: var(--color--white-color);
	font-size: 13px !important;
	font-weight: 300;
	margin-bottom: 12px;
}
textarea{
	padding-top: 20px !important;
	height: 210px;
}
input, select{
	height: 60px;
}
input:focus, textarea:focus{
	outline: none;
}
input::placeholder, textarea::placeholder, select {
    color: var(--color--text-color);
	opacity: 1;
}
select{
    appearance: none;
    -moz-appearance: none;
	cursor: pointer;
}
.submit-btn span{
	display: none;
}
.submit-btn input{
	width: 170px;
	height: 44px;
	margin-top: 30px;
	margin-bottom: 0;
	position: relative;
}
.bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.py-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.pb-100{
	padding-bottom: 100px;
}
.py-40{
	padding-top: 40px;
	padding-bottom: 40px;
}
.pb-70{
	padding-bottom: 70px;
}
.row{
	--bs-gutter-x: 12px
}
.container{
	transition: .4s;
	max-width: 1212px;
	padding: 0 24px;
	margin-left: auto;
	margin-right: auto;
}

/* header style */

.header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	padding: 24px 0;
}
.admin-bar .header {
	top: 32px;
}
.header.sticky-active {
	background-color: var(--section-bg-1);
}

/* mobile-menu */

.mobile-menu-button .menu-btn{
	border: none;
	background-color: var(--color--white-color);
	padding: 12px;
	border-radius: 50%;
}

.mobile-menu{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--section-bg-1);
	height: 100vh;
	transition: .6s;
}
.mobile-menu .button-box{
  	padding-top: 80px;
}
.close{
	position: absolute;
	right: 25px;
	top: 24px;
	width: 40px;
	height: 40px;
	background-color: var(--color--white-color);
	border: none;
	border-radius: 50%;
}
.close:hover, 
.close:focus{
	background-color: red;
	color: var(--color--white-color);
	transition: .3s;
}
.mobile-menu .button-box .btn{
  	width: 87%;
}
.left-100{
	left: -100%;
}
.left-0{
	left: 0;
}

/* banner style */

.banner-area::after{
	content: '';
	top: 0;
	right: 0;
	position: absolute;
	width: 443px;
	height: 338px;
	background-image: url('assets/images/shape-1.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.banner-area{
  	background-color: var(--section-bg-1);
	padding-top: 130px;
	padding-bottom: 20px;
	position: relative;
	z-index: 1;
}
.banner-bg{
	padding-top: 146px;
	padding-bottom: 175px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.banner-bg::before{
	content: '';
	inset: 0;
	background: var(--section-bg-1);
	position: absolute;
	opacity: .2;
}
.banner-bg::after{
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: var(--gradient-color);
}
.banner-content{
	max-width: 740px;
	margin: auto;
	text-align: center;
	margin-bottom: 40px;
}
.banner-content, 
.banner-area .button-box{
	position: relative;
	z-index: 1;
}
.banner-content h1{
  	margin-bottom: 30px;
}
.banner-content h2{
	font-size: 65px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: -1.7px;
	margin-bottom: 30px;
}
.banner-content h2 strong{
	font-weight: 600;
}
.banner-content p{
	color: var(--color--white-color);
}


/* services style */


.services::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 440px;
	height: 520px;
	background-image: url('assets/images/shape-2.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.services{
	background-color: var(--section-bg-1);
	position: relative;
	z-index: 1;
}
.service-list{
  	position: relative;
}
.service-content{
	position: relative;
	overflow: hidden;
}
.service-content-title{
	position: absolute;
	bottom: 34px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}
.service-img{
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.service-img::after{
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--gradient-color);
}
.service-img img{
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1.7;
	width: 100%;
	border-radius: 20px;
}
.warreaty-logo{
	position: absolute;
	top: -102px;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-grid;
	place-items: center;
}
.tltle-text{
  	padding-left: 20px;
}
.price{
    background-color: var(--color--white-color);
    padding: 20px 32px;
    border-radius: 20px;
    text-align: right;
}
.price p:last-child{
    font-size: 41px;
    line-height: 1;
    font-family: var(--secondary-font);
    font-weight: 600;
}
.points-item{
	background-color: var(--section-bg-3);
	border-radius: 20px;
	padding: 35px 48px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.points-img{
	width: 60px;
	display: grid;
	place-items: center;
}
.points-text p{
	color: var(--color--white-color);
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
}

/* marquee text */

.scrolling-text{
	background-color: var(--button-bg);
	padding: 40px 0;
	overflow: hidden;
}
.marquee__content li{
	display: inline-flex;
	gap: 30px;
	border-right: 1px solid var(--color--white-color);
	padding: 0 30px;
	animation: marquee 10s linear infinite;
}
.marquee__content li p{
	font-size: 50px;
	font-weight: 300;
	letter-spacing: -1px;
	color: var(--color--white-color);
	font-family: var(--secondary-font);
	text-transform: uppercase;
	margin-bottom: 0;
}
.marquee__content li p strong{
  	font-weight: 600;
}
.marquee {
  --gap: 0rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.enable-animation .marquee__content{
  	animation: scroll 12s linear infinite;
}
.marquee--hover-pause:hover .marquee__content{
  	animation-play-state: paused;
}

/* contact style */

.contact-bg{
	position: relative;
}
.contact-bg::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: -258px;
	background-image: url('assets/images/contact-shape.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 390px;
	height: 565px;
}
.contact-text-with-img{
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 87px);
}
.contact-text{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px;
}
.contact {
  	background-color: var(--section-bg-2);
}

.heading h2{
  	color: var(--color--text-color);
}
.text-with-button{
  	text-align: end;
}
.text-with-button .btn{
	margin-top: 20px;
}
.text-with-button .btn {
  	border: 2px solid transparent;
}
.text-with-button .btn:hover{
  	border: 2px solid var(--button-bg);
}
.select-wrapper{
	position: relative;
}
.select-wrapper::after {
	content: "";
	position: absolute;
	top: calc(100% - 42px);
  	left: calc(100% - 40px);
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background-color: var(--button-bg);
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down-icon lucide-chevron-down'><path d='m6 9 6 6 6-6'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
	pointer-events: none;
	color: var(--color--white-color);
}

/* fremantle content */

.fremantle-content{
  	background-color: var(--section-bg-1);
}

.fremantle-content-heading{
  	text-align: center;
	max-width: 620px;
	margin: auto;
}
.fremantle-content-heading .button-box{
	margin-top: 35px;
}
.fremantle-content-heading h2{
  	margin-bottom: 35px;
}
.fremantle-content-heading h2 strong{
  	font-weight: 700;
}
.fremantle-content-heading p{
    color: var(--color--white-color);
}
.fremantle-slide-img img{
	object-fit: cover;
	width: 100%;
	aspect-ratio: 380 / 410;
	object-position: left center;
	border-radius: 20px;
}
.fremantle-slide-img{
	overflow: hidden;
	border-radius: 20px;
}

.fremantle-navigation-prev, 
.fremantle-navigation-next{
	position: absolute;
	top: 0;
	left: 70px;
	bottom: 0;
	display: grid;
	place-items: center;
	z-index: 1;
}
.fremantle-navigation-next{
	right: 70px;
	left: auto;
}
.navigate-btn{
	background-color: var(--color--white-color);
	border: none;
	border-radius: 50%;
	height: 36px;
	width: 36px;
	display: grid;
	place-items: center;
}

	/* reviews style */

	
.reviews{
	background-color: var(--section-bg-2);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.reviews::after{
	content: '';
	position: absolute;
	bottom: -180px;
	left: -60px;
	width: 399px;
	height: 565px;
	background-image: url('assets/images/shape-4.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.reviews-wrapper{
	background-color: var(--color--white-color);
	border-radius: 20px;
	padding: 70px;
	position: relative;
}
.reviews-title{
	text-align: center;
	margin-bottom: 60px;
}
.reviews-title h2{
	color: var(--color--text-color);
	margin-bottom: 40px;
}
.rating-star {
  	margin-bottom: 40px;
}
.reviews-content{
	text-align: center;
	padding: 30px 70px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
  	align-items: center;
	height: 100%;
}
.reviews-text p {
  line-height: 2.2;
}
.name p{
  	color: var(--color--text-color);
	font-family: var(--secondary-font);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.reviews-carousel .swiper-slide:nth-child(odd){
    border-right: 1px solid var(--button-bg);
}
.reviews-navigation-prev, 
.reviews-navigation-next{
	position: absolute;
	top: 50%;
	left: -20px;
	bottom: 0;
	z-index: 1;
	width: 36px;
	height: 36px;
	transform: translateY(-50%);
}
.reviews-navigation-next{
	right: -20px;
	left: auto;
}
.reviews .navigate-btn{
	background-color: var(--button-bg);
	color: var(--color--white-color);
}

/* scrolling-text-2 */

.scrolling-text.blue-bg{
	background-color: var(--section-bg-1);
}
.scrolling-text.blue-bg ul li p strong{
	color: var(--button-bg);
}

/* footer */


.footer-bg{
	background-color: var(--section-bg-1);
	padding-top: 90px;
}
.footer-top {
	padding-bottom: 100px;
	border-bottom: 1px solid var(--button-bg);
}
.social-links{
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 12px;
}
.social-links a{
	display: block;
	color: var(--button-bg);
	width: 26px;
}
.footer-logo-with-text{
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: 24px;
}
.footer-text p{
	color: var(--color--white-color);
}
.footer-text p strong{
  	font-weight: 500;
}
.footer-services, 
.footer-contact-links{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.footer-services p, 
.footer-contact-links p{
	color: var(--color--white-color);
	font-family: var(--secondary-font);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 4px;
	font-size: 14px;
	margin-bottom: 0;
}
.footer-service-list a, 
.footer-contact-list a{
	display: block;
	color: var(--color--white-color);
	transition: .3s;
}

.footer-service-list a:hover, 
.footer-contact-list a:hover{
	color: var(--button-bg);
}

.footer-service-list a:not(:last-child), 
.footer-contact-links a:not(:last-child){
  	margin-bottom: 12px;
}
.footer-contact-links{
  	padding-left: 40px;
}
.footer-bottom{
	padding: 38px 0;
	color: var(--color--white-color);
}
.copyright-text{
  	display: flex;
  	gap: 20px;
}
.footer-bottom p{
	margin-bottom: 0;
}


body:not(.home) .header {
	background: var(--color--text-color);
}


/* responsive style */


@media (max-width: 1199.98px) {
	.services::after{
		width: 360px;
		height: 470px;
	}
	.tltle-text{
		padding-left: 10px;
	}
	.tltle-text h2{
		font-size: 28px;
	}
	.price{
		padding: 14px 28px;
	}
	.contact-text{
		padding: 40px;
	}
	.contact-bg::before{
		width: 300px;
		height: 450px;
		bottom: -204px;
	}
	.pb-100{
		padding-bottom: 90px;
	}
	.py-100{
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.fremantle-navigation-prev{
		left: 50px;
	}
	.fremantle-navigation-next{
		right: 50px;
	}
	.footer-bg{
		padding-top: 70px;
	}
	.footer-top{
		padding-bottom: 110px;
	}
	.footer-contact-links{
		padding-left: 0;
	}
}
@media (max-width: 991.98px) {
	.banner-bg{
		padding-top: 80px;
    	padding-bottom: 120px;
	}
	.banner-content{
		margin-bottom: 30px;
		padding: 0 20px;
	}
	.banner-content h1{
		margin-bottom: 20px;
	}
	.banner-content h2{
		margin-bottom: 20px;
		font-size: 50px;
	}
	.pb-70{
		padding-bottom: 50px;
	}
	.services::after{
		width: 320px;
		height: 400px;
	}
	.service-content-title{
		bottom: 20px;
		padding: 0 20px;
	}
	.tltle-text{
		padding-left: 0;
	}
	.tltle-text h2{
		font-size: 25px;
	}
	.price{
		padding: 8px 20px;
		border-radius: 12px;
	}
	.price p:last-child{
		font-size: 34px;
	}
	.warreaty-logo{
		top: -90px;
	}
	.warreaty-logo img{
		max-width: 160px;
		width: 100%;
	}
	.pb-100{
		padding-bottom: 70px;
	}
	.points-item{
		padding: 30px;
	}
	.points-text p{
		font-size: 16px;
	}
	.scrolling-text{
		padding: 30px 0;
	}
	.marquee__content li p{
		font-size: 44px;
	}
	.contact-text{
		flex-direction: column;
		align-items: start;
		gap: 20px;
	}
	.text-with-button{
		text-align: start;
	}
	.text-with-button .btn{
		margin-top: 8px;
	}
	input, select{
		height: 50px;
		border-radius: 12px;
		padding: 0 18px !important;
	}
	.select-wrapper::after{
		top: calc(100% - 37px);
	}
	.py-100{
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.reviews-title{
		margin-bottom: 30px;
	}
	.reviews-carousel .swiper-slide:nth-child(odd){
    	border-right: none;
	}
	.footer-bg{
		padding-top: 60px;
	}
	.footer-top{
		padding-bottom: 90px;
	}
	.footer-services, .footer-contact-links{
		gap: 20px;
	}
	.footer-bottom{
		padding: 30px 0;
	}
}
@media (max-width: 600px) {
	.admin-bar .header.sticky-active {
		top: 0;
	}
}
@media (max-width: 782px) {
	.admin-bar .header {
		top: 46px;
	}
}
@media (max-width: 767.98px) {
	.logo{
		max-width: 160px;
	}
	.header-buttons .btn{
		padding: 15px 25px;
	}
	.banner-area {
		padding-top: 110px;
	}
	.banner-area::after {
		width: 220px;
		background-position: top;
		background-size: contain;
	}
	.banner-bg, 
	.service-img, 
	.service-img img, 
	.points-item, 
	.contact-text-with-img, 
	.fremantle-slide-img, 
	.fremantle-slide-img img{
		border-radius: 12px;
	}
	.banner-content{
		margin-bottom: 26px;
	}
	.banner-content h1{
		margin-bottom: 16px;
	}
	.banner-content h2{
		margin-bottom: 16px;
		font-size: 40px;
	}
	.points-item{
		flex-direction: column;
		justify-content: space-between;
		text-align: center;
	}
	.points-img, 
	.points-text{
		flex: 1;
	}
	.service-content{
		margin-bottom: 20px;
	}
	.services .col-md-6:last-child .service-content{
		margin-bottom: 0;
	}
	.service-content-title{
		bottom: 34px;
		padding: 0 30px;
	}
	.tltle-text{
		padding-left: 10px;
	}
	.tltle-text h2{
		font-size: 28px;
	}
	.marquee__content li{
		padding: 0 30px;
		gap: 22px;
	}
	.marquee__content li p{
		font-size: 40px;
	}
	.contact-text{
		align-items: center;
		gap: 14px;
	}
	.heading, 
	.text-with-button{
		text-align: center;
	}
	.heading h2 br{
		display: none;
	}
	.submit-btn{
		text-align: center;
	}
	.submit-btn input{
		margin-top: 12px;
		text-align: center;
	}
	.contact-text-with-img{
		aspect-ratio: 1.4;
    	width: 100%;
		height: 100%;
	}
	.text-with-button p{
		margin-bottom: 14px;
	}
	.fremantle-content{
		overflow: hidden;
	}
	.fremantle-slider{
		overflow: visible;
	}
	.reviews-title, 
	.reviews-title{
		margin-bottom: 40px;
	}
	.reviews-title h2, 
	.rating-star{
		margin-bottom: 25px;
	}
	.reviews-content{
		padding: 0 40px
	}
	.footer-bg{
		padding-top: 60px;
	}
	.footer-top{
		text-align: center;
		padding-bottom: 60px;
	}
	.footer-logo-with-text{
		gap: 26px;
	}
	.footer-logo{
		max-width: 160px;
		margin: auto;
	}
	.footer-services, 
	.footer-contact-links{
		gap: 14px;
	}.gap-30{
		gap: 30px !important;
	}
	.footer-service-list a:not(:last-child), 
	.footer-contact-links a:not(:last-child){
		margin-bottom: 6px;
	}
	.footer-bottom{
		padding-top: 60px;
		padding-bottom: 30px;
	}
	.copyright-text{
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
	.copyright-text span{
		display: none;
	}
}
@media (max-width: 575.98px) {
	.banner-content{
		padding: 0 28px;
	}
	.banner-content h2{
		font-size: 30px;
	}
	.banner-area .button-box .btn, 
	.fremantle-content .button-box .btn{
		letter-spacing: 2px;
	}
	.banner-bg{
		padding-top: 60px;
    	padding-bottom: 80px;
	}
	.services::after{
		width: 220px;
		height: 270px;
	}
	.reviews::after{
		bottom: -80px;
		left: 0;
		width: 220px;
		height: 270px;
	}
	.service-content-title{
		bottom: 20px;
		padding: 0 14px;
	}
	.tltle-text{
		padding-left: 0;
	}
	.tltle-text h2{
		font-size: 20px;
	}
	.price p:last-child{
		font-size: 25px;
	}
	.warreaty-logo{
		top: -70px;
	}
	.warreaty-logo img{
		max-width: 120px;
	}
	.points-item{
		gap: 12px;
		border-radius: 10px;
		padding: 12px;
	}
	.points-img{
		width: 40px;
	}
	.points-text p{
		font-size: 12px;
	}
	.scrolling-text{
		padding: 25px 0;
	}
	.marquee-text{
		padding: 0 25px;
	}
	.marquee__content li p{
		font-size: 32px;
	}
	.pb-100{
		padding-bottom: 50px;
	}
	.py-100{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.contact-text-with-img{
		aspect-ratio: 1.1;
	}
	.contact-bg::before {
		width: 190px;
		height: 250px;
		bottom: -80px;
	}
	.fremantle-content-heading h2{
		margin-bottom: 20px;
	}
	.fremantle-navigation-prev{
		left: 15px;
	}
	.fremantle-navigation-next{
		right: 15px;
	}
	.reviews{
		overflow: hidden;
	}
	.reviews-wrapper{
		padding: 50px 20px;
	}
	.reviews-title{
		margin-bottom: 30px;
	}
	.reviews-title h2, .rating-star{
		margin-bottom: 20px;
	}
	.reviews-content{
		padding: 0;
	}
	.reviews-navigation-next{
		right: -40px;
	}
	.reviews-navigation-prev{
		left: -40px;
	}
}