@font-face {
	font-family: 'Futura';
	src: url("../fonts/Futura.woff");
}

/*---------------------
	Root Keywords
-----------------------*/

:root {
	--clr-bg: #f7f9fc;
	--clr-panel: #ffffff;
	--clr-panel-glass: rgba(255, 255, 255, .65);
	--clr-accent-1: #3e2ecd;
	--clr-accent-2: #2dd0ab;
	--clr-text-dark: #111;
	--clr-text-light: #555;
	--radius-lg: 18px;
	--shadow-md: 0 8px 24px rgba(0, 0, 0, .08);
}

/*---------------------
	Main CSS
-----------------------*/

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Lato", sans-serif;
	-webkit-font-smoothing: antialiased;

}

h2,
h4,
h5 {
	color: #20509e;
	margin: 0;
	font-weight: 500;
	font-family: "Futura", sans-serif;
}

h2 {
	font-size: 48px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

p {
	font-size: 15.7px;
	color: #75849a;
	line-height: 1.6;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul {
	padding: 0;
	margin: 0;
}

.spad {
	padding-top: 100px;
	padding-bottom: 90px;
}

.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	margin-bottom: 20px;
}

.section-title p {
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
}

.text-white h2,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.site-btn {
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 50px;
	font-family: "Futura", sans-serif;
	min-width: 170px;
	text-align: center;
	border: 2px solid #7ad4cc;
	cursor: pointer;
	color: #fff;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.no-radius {
	border-radius: 2px;
}

.site-btn.sb-full-- {
	display: block;
	width: 100%;
	border-radius: 0;
}

.site-btn.sb-gradients {
	padding: 17px 32px;
	border: none;
	color: #fff;
}

.site-btn.sb-gradients.sbg-line {
	color: #20509e;
	z-index: 1;
}

.site-btn.sb-gradients.sbg-line:after {
	position: absolute;
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background: #fff;
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 50px;
}

.site-btn.sb-gradients.sbg-line:hover {
	color: #20509e;
}

.gradient-bg,
.site-btn.sb-gradients,
.member-social a:hover,
.single-blog-page .social-share a:hover,
.comment .comment-content .c-btn:hover,
.comment-form label {
	background: -webkit-gradient(linear, left top, right top, from(#3e2bce), color-stop(100%, #2dd3aa), color-stop(100%, #2dd3aa), to(#2dd3aa));
	background: -o-linear-gradient(left, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e2bce', endColorstr='#2dd3aa', GradientType=1);
}

/* Preloader styles */
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide smoothly */
#preloder.hidden {
	opacity: 0;
	visibility: hidden;
}

/* Modern Smooth Spinner */
.loader {
	width: 48px;
	height: 48px;
	border: 4px solid #00ffbf;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Optional: Adjust size for small screens */
@media (max-width: 480px) {
	.loader {
		width: 36px;
		height: 36px;
		border-width: 3px;
	}
}/*---------------------
	Header section
-----------------------*/

.main-menu a {
	color: #fff;
	transition: 0.5s ease;
	position: relative;
	padding-bottom: 4px;
}

.main-menu a.active-link {
	color: #2dd0ab;
	border-bottom: 2px solid #2dd0ab;
	transition: all .50s ease;
}

.header-section {
	position: fixed;
	width: 100%;
	top: 0;
	padding: 30px 50px 0;
	z-index: 99;
	background-color: transparent;
	transition: all 0.3s ease-in-out;

}

.header-section.scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	height: 70px;
	color: #333;
	background-color: #f1f1f1;
}

.header-section.scrolled a {
	color: #808080;
}

.header-section .site-btn {
	float: right;
	margin-left: 60px;
}

.header-section .responsive-bar,
.header-section .user {
	display: none;
}

.main-menu {
	float: right;
}

.menu-list {
	list-style: none;
}

.menu-list li {
	display: inline;
}

.menu-list li a {
	display: inline-block;
	font-family: "Futura", sans-serif;
	font-size: 16px;
	padding: 10px 5px;
	margin-right: 65px;
	color: #fff;
}

/*---------------------
	Hero Section
-----------------------*/

.hero-section {
	height: 850px;
	padding-top: 160px;
	display: block;
	background-image: url("../Images/Backgrounds/hero-bg.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.hero-section .laptop-image {
	width: 500px;
	max-width: none;
	position: relative;
	left: 80px;
	margin-top: 50px;
}

.hero-text {
	padding-top: 60px;
}

.hero-text h2 {
	font-size: 60px;
	margin-bottom: 35px;
	font-weight: 600;
}

.hero-text h2 span {
	color: #16d0c5;
}

.hero-text h4 {
	color: #75849a;
	font-size: 22px;
}

.hero-subscribe-from {
	margin-top: 50px;
	display: block;
}

.hero-subscribe-from input {
	width: 315px;
	border: 1px solid #ebebeb;
	background: #fff;
	height: 48px;
	padding: 0 25px;
	border-radius: 50px;
	font-family: "Futura", sans-serif;
	font-size: 16px;
	margin-right: 8px;
	margin-bottom: 20px;
}
/*---------------------
  About Section
-----------------------*/

.about-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 64px;
	padding: 6rem clamp(1rem, 6vw, 8rem);
	background: var(--clr-bg);
	border-radius: var(--radius-lg);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
}

.about-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg,
			transparent 40%, rgba(0, 0, 0, .03) 42%, transparent 60%);
	z-index: 0;
}

/* ----------  Left Column  --------- */
.about-left {
	flex: 1 1 46%;
	z-index: 1;
}

.about-left .subheading {
	font-size: .875rem;
	letter-spacing: .05em;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 1rem;
	background: linear-gradient(110deg, var(--clr-accent-1), var(--clr-accent-2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-left h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--clr-text-dark);
	margin-bottom: 1.5rem;
}

.about-left p {
	font-size: 1rem;
	line-height: 1.8;
	max-width: 75ch;
	color: var(--clr-text-light);
}

/* ----------  Right Column  --------- */
.about-right {
	flex: 1 1 46%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.about-image img {
	width: 100%;
	border-radius: var(--radius-lg);
	object-fit: cover;
	aspect-ratio: 16/9;
	box-shadow: var(--shadow-md);
}

/*---------------------
	Fact Section
-----------------------*/
.fact-section {
	padding: 35px 0 10px 0;
}

.fact {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px 20px;
	border-radius: 12px;
	text-align: left;
	position: relative;
	margin-bottom: 30px;
	transition: 0.3s ease-in-out;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	min-height: 130px;
}

.fact:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fact h2 {
	color: #ffffff;
	font-size: 48px;
	font-weight: 800;
	margin: 0;
}

.fact p {
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	line-height: 1.4;
	margin: 5px 0 0;
}

.fact i {
	position: absolute;
	right: 15px;
	bottom: 10px;
	font-size: 80px;
	color: white;
	opacity: 0.15;
	z-index: 0;
}

/* ----------  Responsive tweak for very small screens  --------- */
@media (max-width:600px) {
	.about-section {
		gap: 40px;
		padding: 4rem 1.25rem;
	}

	.about-left,
	.about-right {
		flex: 1 1 100%;
	}

	.about-left p {
		max-width: unset;
	}
}

/*---------------------
  Industeries Section
-----------------------*/


.industry-image {
	width: 100%;
	object-fit: cover;
	border-radius: 3%;
}

.industry-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 20px;
	border: 1px solid #eee;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s;
}

.industry-box-wrapper {
  perspective: 1000px;
  height: 100%;
}

/* Flip Container */
.industry-box {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

/* Make entire wrapper trigger the hover */
.industry-box-wrapper:hover .industry-box {
  transform: rotateY(180deg);
}

/* Front and Back */
.industry-front,
.industry-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background: #fff;
}

.industry-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.industry-back {
  transform: rotateY(180deg);
  z-index: 2;
}

.industry-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.industry-content {
  padding: 20px;
  text-align: center;
}

.industry-back .industry-content.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
    rgba(62, 43, 206, 0.5) 0%,
    rgba(45, 211, 170, 0.5) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  z-index: 3;
}

.industry-back .industry-content.overlay h5,
.industry-back .industry-content.overlay p {
  color: #fff;
}

/* Make sure min height is consistent */
.industry-box,
.industry-front,
.industry-back {
  min-height: 320px;
}

/*---------------------
  Feature Section
-----------------------*/

.features-section .container {
	margin-bottom: 0;
}

.feature {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 30px 24px 25px;
	transition: 0.4s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.feature i {
	font-size: 28px;
	background: linear-gradient(135deg, #3e2ecd, #2dd0ab);
	color: #fff;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature .feature-content {
	padding-left: 0;
}

.feature .feature-content h4 {
	margin-bottom: 12px;
	font-size: 26px;
	font-weight: 500;
	color: #fff;
}

.feature .feature-content p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 12px;
}

.feature .readmore {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #2dd0ab;
	position: relative;
	display: inline-block;
}

.feature .readmore::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1.5px;
	background: #2dd0ab;
	transition: width 0.3s ease;
}

.feature .readmore:hover::after {
	width: 0;
}

/* Optional: Mobile Padding Fix */
@media (max-width: 575px) {
	.feature {
		padding: 24px 16px;
	}
}

/*---------------------
	Contact page
-----------------------*/
.contact-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 40px;
	background: #ffffffcc;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-info h5,
.hero-section .container .hero-text h5 {
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 16px;
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 17%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact-info h2 {
	margin: 10px 0 20px;
	font-size: 28px;
}

.contact-info p {
	color: #555;
	line-height: 1.6;
}

.info-box {
	display: flex;
	align-items: flex-start;
	margin: 20px 0;
}

.info-box .icon {
	font-size: 22px;
	background: #3e2bce;
	color: white;
	padding: 14px;
	border-radius: 12px;
	margin-right: 15px;
}

.contact-form {
	background: -webkit-gradient(linear, left top, right top, from(#3e2bce), color-stop(100%, #2dd3aa), color-stop(100%, #2dd3aa), to(#2dd3aa));
	background: -o-linear-gradient(left, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e2bce', endColorstr='#2dd3aa', GradientType=1);
	border-radius: 16px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	flex: 1;
	min-width: 300px;
	padding: 30px;
	transition: transform 0.3s ease;
}

.contact-form form {
	display: flex;
	flex-direction: column;
}

.contact-form input,
.contact-form textarea {
	margin-bottom: 15px;
	padding: 14px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #666;
}

.contact-form textarea {
	resize: none;
	height: 120px;
}

.contact-form button {
	background: white;
	color: #3e2bce;
	padding: 14px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
	background: #f4f4f4;
	transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 768px) {
	.contact-container {
		flex-direction: column;
	}
}

/*---------------------
	Footer Section
-----------------------*/

.footer-section {
	background-color: #fafafa;
}

.footer-widget span {
	color: #acb9cc;
}

.footer-widget p {
	margin-bottom: 20px;
}

.footer-widget .widget-title {
	margin-bottom: 30px;
	font-size: 20px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul a {
	font-size: 16px;
	color: #75849a;
	display: block;
	margin-bottom: 12px;
}

.footer-widget ul li:last-child a {
	margin-bottom: 0;
}

.social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	text-align: center;
	padding-top: 7px;
	font-size: 18px;
}

.social a:last-child {
	margin-right: 0;
}

.social .facebook {
	background: #4b6cd0;
}

.social .google {
	background: #f03b3b;
}

.social .instagram {
	background: #bb8950;
}

.social .twitter {
	background: #49a7f3;
}

.footer-bottom {
	border-top: 1px solid #ebebeb;
	padding: 30px 0;
}

.footer-nav {
	list-style: none;
}

.footer-nav li {
	display: inline-block;
}

.footer-nav li a {
	color: #75849a;
	font-size: 14px;
	margin-left: 20px;
}



/*------------------
	Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media (max-width: 1585px) {
	.hero-section .laptop-image {
		left: 0;
	}
}

@media (max-width: 1425px) {
	.header-section .site-btn {
		margin-left: 0;
	}

	.hero-section,
	.page-info-section {
		background-position: right 30% top;
	}

	.hero-section .laptop-image {
		width: auto;
		max-width: 100%;
		top: 70px;
	}

	.about-img {
		left: -50px;
		width: 600px;
	}
}

@media (min-width: 1199px) and (max-width: 1390px) {
	.member {
		padding: 35px 10px;
	}

	.member-img {
		width: 160px;
		height: 160px;
	}

	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}

	.member-social a {
		margin: 0 5px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.menu-list li a {
		margin-right: 15px;
	}

	.hero-section,
	.page-info-section {
		background-position: right 23% top;
	}

	.about-img {
		left: 0px;
		width: 480px;
	}

	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
	}

	.team-members {
		text-align: center;
	}

	.fact h2 {
		font-size: 45px;
		margin-right: 10px;
	}

	.fact p {
		padding-top: 7px;
	}

	.fact i {
		font-size: 67px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-section {
		padding: 30px 15px 0;
	}

	.menu-list li a {
		margin-right: 6px;
	}

	.header-section .site-btn {
		margin-left: 10px;
	}

	.hero-section {
		background-position: right 25% top;
		height: 730px;
		padding-top: 160px;
	}

	.page-info-section {
		background-position: right 33% top;
	}

	.page-info-section h2 {
		font-size: 40px;
	}

	.hero-text h2 {
		font-size: 45px;
	}

	.process-step:after {
		width: 154px;
		height: 35px;
		top: -10px;
		right: -44%;
		background-size: contain;
	}

	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
	}

	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
		padding: 35px 10px;
	}

	.member-img {
		width: 160px;
		height: 160px;
	}

	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}

	.member-social a {
		margin: 0 5px;
	}

	.team-members {
		text-align: center;
	}

	.fact {
		margin-bottom: 30px;
	}

	.pull-3 {
		right: 0;
	}

	.push-8 {
		left: 0;
	}

	.review-section {
		text-align: center;
	}

	.review-text {
		padding: 0 60px;
	}

	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}

	.review-text-slider .owl-prev {
		float: left;
	}

	.review-text-slider .owl-next {
		float: right;
	}

	.review-meta-slider {
		margin: auto;
	}

	.author-meta {
		padding-top: 0;
	}

	.newsletter-form {
		padding-left: 0;
	}

	.footer-widget {
		margin-bottom: 30px;
	}

	.newsletter-section {
		text-align: center;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section {
		padding: 30px 0;
		background: #fff;
	}

	.header-section .responsive-bar {
		float: right;
		font-size: 25px;
		display: block;
		cursor: pointer;
	}

	.header-section .user {
		float: right;
		font-size: 25px;
		color: #333;
		margin-right: 20px;
		display: block;
	}

	.main-menu {
		float: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 100%;
		background: #fff;
		padding: 0 15px;
		display: none;
		-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
		box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	}

	.menu-list {
		list-style: none;
	}

	.menu-list li {
		display: block;
		border-top: 1px solid #e1e1e1;
	}

	.menu-list li a {
		display: block;
		padding: 10px 5px;
		margin-right: 0;
		color: #20509e;
	}

	.hero-text h2 {
		font-size: 40px;
	}

	.hero-section {
		height: auto;
		padding-bottom: 100px;
		padding-top: 160px;
		background-position: right 50% top;
	}

	.page-info-section {
		background-position: right 56% top;
		margin-top: 97px;
	}

	.page-info-section h2 {
		font-size: 40px;
	}

	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
	}

	.team-members {
		margin: 0;
		padding: 0 15px;
	}

	.member {
		width: 100%;
		margin-bottom: 30px;
		margin-left: 0;
	}

	.fact {
		margin-bottom: 30px;
	}

	.process-step:after {
		display: none;
	}

	.pull-3 {
		right: 0;
	}

	.push-8 {
		left: 0;
	}

	.review-section {
		text-align: center;
	}

	.review-text {
		padding: 0 60px;
	}

	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}

	.review-text-slider .owl-prev {
		float: left;
	}

	.review-text-slider .owl-next {
		float: right;
	}

	.review-meta-slider {
		margin: auto;
	}

	.author-meta {
		padding-top: 0;
	}

	.header-section .site-btn {
		display: none;
	}

	.newsletter-form {
		padding-left: 0;
	}

	.newsletter-section {
		text-align: center;
	}

	.review-text p {
		font-size: 20px;
	}

	.blog-item {
		margin-bottom: 30px;
	}

	.footer-widget {
		margin-bottom: 30px;
	}

	.single-blog-page .social-share {
		text-align: left;
		margin-top: 20px;
	}
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.review-text {
		padding: 0 45px;
	}

	.review-text p {
		font-size: 18px;
	}

	.newsletter-form input {
		padding-right: 30px;
	}

	.newsletter-form button {
		position: relative;
		padding: 14px;
		border-radius: 50px;
		margin-top: 23px;
	}

	.review-text-slider .owl-prev,
	.review-text-slider .owl-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.review-meta-slider {
		width: auto;
	}

	.member-img {
		width: 180px;
		height: 180px;
	}

	.member-info {
		padding: 50px 20px 10px;
		height: 320px;
	}

	.blog-text {
		padding: 15px;
	}

	.comment .comment-avator {
		float: none;
		margin-bottom: 20px;
	}

	.comment .comment-content {
		padding-left: 0;
	}
}