@charset "utf-8";

/*--------------------------------------------------------------
	Table Of Content
----------------------------------------------------------------

#. Import Style
#. General CSS Here
#. Header
#. Content
#. Footer
#. Blog Section
#. Blog Detail Page
#. Contact Page
#. Error 404 Section
#. Favourite Button
#. User Navigation
#. Login, Register Section
#. Banner Ads Section

----------------------------------------------------------------*/

/* ------------------------------------------------------------------- 
    Import Style
---------------------------------------------------------------------- */
@import url("fontawesome.min.css");
@import url("themify-icons.css");
@import url("flaticon.css");
@import url("owl.carousel.css");
@import url("owl.theme.css");
@import url("owl.transitions.css");
@import url("jquery.fancybox.css");
@import url("odometer-theme-default.css");
@import url("component.css");
@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,600,700,800&display=swap');

/*--------------------------------------------------------------
	General CSS Here
--------------------------------------------------------------*/
html {
	font-size: 15px;
}

:root {
	scroll-behavior: unset;
}

body {
	font-family: 'Manrope', sans-serif;
	color: #777777;
	background-color: #ffffff;
	font-size: 15px;
	font-size: 1rem;
	overflow-x: hidden;
}

p {
	font-size: 16px;
	color: #777777;
	line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #232f4b;
}

ul {
	padding-left: 0;
	margin: 0;
}

* {
	transition: all .32s ease;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

a:hover {
	text-decoration: none;
}

.sr-only {
	display: none !important;
	opacity: 0;
	visibility: hidden;
}

/*.page-wrapper {
	position: relative;
	overflow: hidden;
}*/
.wow {
	visibility: hidden;
}

.fi:before {
	margin: 0;
}

.bg-gray {
	background: #f4f4f4;
}

.section-padding {
	padding: 50px 0;
}

@-webkit-keyframes rotating {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotating {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.rotating {
	-webkit-animation: rotating 5s alternate infinite;
	animation: rotating 5s alternate infinite;
}

.container-fluid {
	max-width: 1360px;
}

.back-to-top {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 45px;
	text-align: center;
	display: none;
	position: fixed;
	z-index: 999;
	right: 15px;
	bottom: 15px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

@media (max-width: 991px) {
	.back-to-top {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
}

.back-to-top:hover {
	background-color: #2d2f3c;
}

.back-to-top i {
	font-size: 18px;
	font-size: 1.2rem;
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.mfp-wrap {
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
	opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

.fancybox-overlay {
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	z-index: 9999 !important;
}

.fancybox-wrap {
	z-index: 99999 !important;
}

.vfx-section-title {
	margin-bottom: 30px;
}

@media (max-width: 450px) {
	.vfx-section-title {
		margin-bottom: 25px;
	}
}

.vfx-section-title h2 {
	font-size: 28px;
	line-height: 1em;
	font-weight: 700;
	color: #444444;
	margin: 0;
	margin-top: 0px;
	position: relative;
	text-transform: capitalize;
	padding-bottom: 20px;
}

.vfx-section-title h2:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 5px;
	border-radius: 6px;
	content: "";
}

.vfx-section-title h2:after {
	position: absolute;
	left: 85px;
	bottom: 0;
	width: 50px;
	height: 5px;
	border-radius: 6px;
	background: #f2f2f2;
	content: "";
}

@media (max-width: 767px) {
	.vfx-section-title h2 {
		font-size: 28px;
	}
}

@media (max-width: 450px) {
	.vfx-section-title h2 {
		font-size: 20px;
	}
}

.theme-btn,
.theme-btn-s3,
.theme-btn-s4,
.view-cart-btn {
	color: #ffffff;
	display: inline-block;
	font-weight: 600;
	padding: 8px 15px;
	border: 0;
	border-radius: 30px;
	-webkit-backface-visibility: hidden;
	z-index: 1;
	position: relative;
	font-size: 16px;
}

.theme-btn:after,
.theme-btn-s3:after,
.theme-btn-s4:after,
.view-cart-btn:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	-webkit-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	opacity: 0;
	z-index: -1;
}

.login_btn_item i {
	padding-right: 5px;
	font-size: 14px;
	vertical-align: bottom;
}

.theme-btn:hover,
.theme-btn-s3:hover,
.theme-btn-s4:hover,
.view-cart-btn:hover,
.theme-btn:focus,
.theme-btn-s3:focus,
.theme-btn-s4:focus,
.view-cart-btn:focus,
.theme-btn:active,
.theme-btn-s3:active,
.theme-btn-s4:active,
.view-cart-btn:active {
	color: #fff;
}

.theme-btn:hover:after,
.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after,
.view-cart-btn:hover:after {
	opacity: 1;
}

@media (max-width: 991px) {

	.theme-btn,
	.theme-btn-s3,
	.theme-btn-s4,
	.view-cart-btn {
		font-size: 18px;
		font-size: 1.2rem;
	}
}

.theme-btn-s2 {
	background: #fff;
	color: #444444;
	display: inline-block;
	padding: 12px 22px;
	border-radius: 55px;
	text-transform: capitalize;
	-webkit-box-shadow: 0 0 0 5px #c8eaf5;
	box-shadow: 0 0 0 5px #c8eaf5;
	z-index: 1;
	position: relative;
}

.theme-btn-s2:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 55px;
	background: -webkit-gradient(linear, left top, right top, from(#00ded8), to(#00a7d5));
	background: linear-gradient(left, #00ded8, #00a7d5);
	-webkit-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	opacity: 0;
	z-index: -1;
}

@media (max-width: 991px) {
	.theme-btn-s2 {
		font-size: 14px;
		font-size: 0.93333rem;
	}
}

.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
	color: #fff;
}

.theme-btn-s2:hover:after {
	opacity: 1;
}

.theme-btn-s3,
.theme-btn-s4 {
	background: #c968ff;
	-webkit-box-shadow: 0 0 0 5px #f3e0fe;
	box-shadow: 0 0 0 5px #f3e0fe;
	background: -webkit-gradient(linear, left top, right top, from(#6168f3), to(#c968ff));
	background: linear-gradient(left, #6168f3, #c968ff);
	z-index: 1;
	position: relative;
}

.theme-btn-s3:after,
.theme-btn-s4:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 55px;
	background: -webkit-gradient(linear, left top, right top, from(#c968ff), to(#6168f3));
	background: linear-gradient(left, #c968ff, #6168f3);
	-webkit-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	opacity: 0;
	z-index: -1;
}

.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after {
	opacity: 1;
}

.theme-btn-s3:hover,
.theme-btn-s4:hover,
.theme-btn-s3:focus,
.theme-btn-s4:focus,
.theme-btn-s3:active,
.theme-btn-s4:active {
	color: #fff;
}

.theme-btn-s4 {
	background: #f6d365;
	background: -webkit-gradient(linear, left top, right top, from(#f6d365), to(#fda085));
	background: linear-gradient(left, #f6d365, #fda085);
	-webkit-box-shadow: 0 0 0 5px #fcf5df;
	box-shadow: 0 0 0 5px #fcf5df;
	z-index: 1;
	position: relative;
}

.theme-btn-s4:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 55px;
	background: -webkit-gradient(linear, left top, right top, from(#fda085), to(#f6d365));
	background: linear-gradient(left, #fda085, #f6d365);
	-webkit-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	opacity: 0;
	z-index: -1;
}

.theme-btn-s4:hover:after {
	opacity: 1;
}

.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
	color: #fff;
}

.view-cart-btn {
	display: block;
	margin-top: 20px;
}

.form input,
.form textarea,
.form select {
	border-color: #bfbfbf;
	border-radius: 0;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #595959;
	font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
	-webkit-box-shadow: 0 0 5px 0 #687ff9;
	-o-box-shadow: 0 0 5px 0 #687ff9;
	-ms-box-shadow: 0 0 5px 0 #687ff9;
	box-shadow: 0 0 5px 0 #687ff9;
}

.form ::-webkit-input-placeholder {
	font-style: 14px;
	font-style: italic;
	color: #595959;
}

.form :-moz-placeholder {
	font-style: 14px;
	font-style: italic;
	color: #595959;
}

.form ::-moz-placeholder {
	font-style: 14px;
	font-style: italic;
	color: #595959;
}

.form :-ms-input-placeholder {
	font-style: 14px;
	font-style: italic;
	color: #595959;
}

.form select {
	font-style: normal;
	background: url(../images/select-icon.html) no-repeat right center;
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	cursor: pointer;
}

.form select::-ms-expand {
	display: none;
}

.form ::-webkit-input-placeholder {
	font-style: normal;
}

.form :-ms-input-placeholder {
	font-style: normal;
}

.form ::-ms-input-placeholder {
	font-style: normal;
}

.form ::placeholder {
	font-style: normal;
}

.social-links {
	overflow: hidden;
}

.social-links li {
	float: left;
	width: 35px;
	height: 35px;
	margin-right: 1px;
}

.social-links li a {
	background-color: #687ff9;
	width: 35px;
	height: 35px;
	line-height: 35px;
	display: block;
	color: #fff;
	text-align: center;
}

.vfx-breadcumb-area {
	background-position: center;
	background-size: cover;
	min-height: 150px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 1;
}

.vfx-breadcumb-area:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #232f4b;
	content: "";
	z-index: -1;
	opacity: .85;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap {
	text-align: center;
	display: flex;
	position: relative;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap h2 {
	font-size: 36px;
	color: #ffffff;
	line-height: 40px;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 800;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap ul {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.vfx-breadcumb-area .vfx-breadcumb-wrap ul li {
	display: inline-block;
	padding: 0px 5px;
	color: #fff;
	position: relative;
	font-size: 16px;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap ul li:after {
	content: "/";
	position: relative;
	left: 7px;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap ul li:last-child span {
	color: #ffffff;
	font-weight: 600;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap ul li:last-child:after {
	display: none;
}

.vfx-breadcumb-area .vfx-breadcumb-wrap ul li a {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	-webkit-transition: all .3s;
	transition: all .3s;
}

@media (max-width: 767px) {
	.vfx-breadcumb-area .vfx-breadcumb-wrap h2 {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 10px;
	}

	.vfx-breadcumb-area .vfx-breadcumb-wrap {
		text-align: center;
		display: block;
		position: relative;
	}

	.vfx-breadcumb-area .vfx-breadcumb-wrap ul {
		position: relative;
		right: 0;
		top: 0;
		transform: translateY(0%);
	}
}

.vfx-about-section.vfx-about-section-s2 {
	padding-top: 170px;
}

.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1000;
	overflow: hidden;
}

.preloader .angular-shape {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: rotate(50deg) scale(1, 3.5);
	transform: rotate(50deg) scale(1, 3.5);
}

.preloader .angular-shape>div:first-child {
	background: #3252f7;
	width: 20%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.preloader .angular-shape>div:nth-child(2) {
	background: #3252f7;
	width: 30%;
	height: 100%;
	position: absolute;
	left: 35%;
	top: 0;
}

.preloader .angular-shape>div:nth-child(3) {
	background: #3252f7;
	width: 20%;
	height: 100%;
	position: absolute;
	left: 80%;
	top: 0;
}

.preloader .spinner {
	width: 80px;
	height: 80px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .double-bounce1,
.preloader .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.preloader .double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

	0%,
	100% {
		-webkit-transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

/*--------------------------------------------------------------
  Header
--------------------------------------------------------------*/
.topbar .row {
	border-bottom: 1px solid #eeeeee;
}

@media (max-width: 991px) {
	.topbar {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.header-style-1 {
		text-align: center;
		padding: 20px 0;
	}
}

.topbar {
	font-size: 16px;
	color: #444444;
	margin: 0;
}

.topbar ul {
	overflow: hidden;
	list-style: none;
	float: right;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.topbar ul {
		float: none;
		display: inline-block;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (max-width: 767px) {
	.topbar ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.topbar ul li {
	font-size: 16px;
	float: left;
	padding: 15px 10px;
	color: #444444;
	line-height: 1em;
}

.topbar ul li.update span {
	display: block;
	padding: 8px;
	background: #616161;
	color: #fff;
	margin-top: -8px;
	font-size: 14px;
}

@media (max-width: 991px) {
	.topbar ul li {
		padding: 15px 10px;
	}
}

.topbar .contact-info ul li a {
	color: #444444;
}

.topbar .contact-info ul li a:hover {
	color: #7db1f0;
}

.topbar ul li:first-child {
	padding-left: 0;
}

.topbar .contact-intro ul {
	float: none;
	margin-bottom: 0;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

@media (max-width: 767px) {
	.topbar .contact-intro ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (max-width: 1200px) {
	.topbar ul li {
		font-size: 12px;
		padding: 15px 10px;
	}
}

@media (max-width: 991px) {
	.topbar ul li {
		font-size: 13px;
	}

	.topbar {
		padding: 10px 0;
	}
}

@media (max-width: 767px) {
	.topbar ul li {
		float: left;
		border: none;
		padding: 8px 6px;
		font-size: 13px;
	}
}

@media (max-width: 590px) {
	.topbar ul li {
		float: none;
	}

	.topbar .contact-info ul li {
		float: left;
	}

	.topbar ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.topbar .theme-btn-s2 {
	padding: 15px 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: -3px;
	color: #fff !important;
}

.topbar ul .fi {
	position: relative;
	top: 1px;
	display: inline-block;
	padding-right: 3px;
}

.topbar ul .fi:before {
	font-size: 15px;
	font-size: 1rem;
	color: #fff;
}

.vfx-site-header {
	background-color: #fff;
}

.vfx-site-header .navigation {
	background-color: #fff;
	margin-bottom: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
}

.vfx-site-header .navigation>.container {
	position: relative;
}

@media (min-width: 991px) {
	.vfx-site-header {
		padding: 0 130px;
	}
}

@media (max-width: 991px) {
	.vfx-site-header .navigation {
		padding: 20px 0;
	}
}

.vfx-site-header #navbar {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.vfx-site-header #navbar>ul li a:hover,
.vfx-site-header #navbar>ul li a:focus {
	text-decoration: none;
}

@media screen and (min-width: 992px) {
	.vfx-site-header #navbar {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.vfx-site-header #navbar li {
		position: relative;
	}

	.vfx-site-header #navbar>ul>li>a:before {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 4px;
		content: "";
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all .3s;
		transition: all .3s;
		border-radius: 3px;
	}

	.vfx-site-header #navbar>ul>li>a:hover:before,
	.vfx-site-header #navbar>ul>li>a.active:before {
		opacity: 1;
		visibility: visible;
	}

	.vfx-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
		position: relative;
	}

	.vfx-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
		font-family: "themify";
		content: "\e649";
		font-size: 11px;
		font-size: 0.73333rem;
		position: absolute;
		right: 15px;
		top: 58%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.vfx-site-header #navbar>ul>li:hover>.sub-menu {
		top: 100%;
		visibility: visible;
		opacity: 1;
	}

	.vfx-site-header #navbar .sub-menu>li:hover>.sub-menu {
		left: 100%;
		visibility: visible;
		opacity: 1;
	}
}

@media (max-width: 991px) {
	.vfx-site-header .container {
		width: 100%;
		max-width: 100%;
	}

	.vfx-site-header .navbar-light .container {
		padding-left: 0;
	}

	.vfx-site-header .header-right {
		right: 0;
	}

	.vfx-site-header .navbar-header button span {
		background-color: #fff;
		width: 20px;
		display: block;
		height: 2px;
		margin-bottom: 5px;
	}

	.vfx-site-header .navbar-header button span:last-child {
		margin: 0;
	}
}

.header-site-logo a.navbar-brand {
	margin-right: 0;
	padding: 0;
	display: inline-block;
}

.header-site-logo img {
	max-width: 100%;
	width: 225px;
	height: auto;
}

.vfx-site-header #navbar ul {
	list-style: none;
}

.date-item-area p {
	font-size: 14px;
	font-weight: 600;
	display: block;
	line-height: 1;
	margin-bottom: 12px;
}

.date-item-area p i {
	margin-right: 8px;
}

.date-item-area span {
	font-size: 14px;
	font-weight: 600;
	display: block;
	line-height: 1;
	margin-bottom: 0;
}

.date-item-area span svg {
	width: 13px;
	margin-right: 7px;
	margin-top: -2px;
}

@media (max-width: 991px) {
	.vfx-site-header #navbar>ul {
		z-index: 101;
	}

	.vfx-site-header #navbar .livetv-item-area a:hover {
		color: #000;
	}

	.vfx-site-header #navbar .close-navbar .ti-close {
		position: relative;
		top: 1px;
	}

	.vfx-site-header .navbar-toggler .first-angle,
	.vfx-site-header .navbar-toggler .last-angle {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.vfx-site-header .x-close .middle-angle {
		opacity: 0;
	}

	.vfx-site-header .x-close .first-angle {
		position: absolute;
		-webkit-transform: rotate(-44deg);
		top: 16px;
		left: 10px;
	}

	.vfx-site-header .x-close .last-angle {
		-webkit-transform: rotate(44deg);
		position: absolute;
		top: 16px;
		right: 10px;
	}
}

@media (max-width: 767px) {
	.vfx-site-header .navbar-header .navbar-brand {
		font-size: 24px;
	}

	.vfx-site-header #navbar .navbar-nav {
		margin: 0;
	}
}

@media (max-width: 991px) {
	.vfx-site-header .navbar-collapse.collapse {
		display: none;
	}

	.vfx-site-header .navbar-collapse.collapse.in {
		display: block;
	}

	.vfx-site-header .navbar-header .collapse,
	.vfx-site-header .navbar-toggle {
		display: block;
	}

	.vfx-site-header .navbar-header {
		float: none;
		position: relative;
		z-index: 999;
		text-align: center;
	}

	.vfx-site-header .navbar-right {
		float: none;
	}

	.vfx-site-header .navbar-nav {
		float: none;
	}

	.vfx-site-header .navbar-nav>li {
		float: none;
	}
}

.vfx-site-header .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	z-index: 991;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.vfx-site-header .header-right button {
	background: transparent;
	padding: 0;
	border: 0;
	outline: 0;
}

.vfx-site-header .header-right>div {
	float: left;
	position: relative;
	margin-right: 10px;
}

.vfx-site-header .header-right .close-form .theme-btn,
.vfx-site-header .header-right .close-form .theme-btn-s3,
.vfx-site-header .header-right .close-form .theme-btn-s4,
.vfx-site-header .header-right .close-form .view-cart-btn {
	padding: 10px 25px;
}

@media (max-width: 767px) {
	.vfx-site-header .header-right>div {
		margin-right: 5px;
	}
}

.vfx-site-header .header-right>div:last-child {
	margin: 0 0 0 10px;
	position: relative;
}

@media (max-width: 767px) {
	.vfx-site-header .header-right>div:last-child {
		margin: 0px 0 0 10px;
	}

	.cart-search-contact .fi {
		line-height: 1;
		vertical-align: super;
	}
}

.vfx-site-header .header-right .header-search-form-wrapper {
	position: relative;
}

.vfx-site-header .header-right .header-search-form-wrapper .fi:before {
	font-size: 18px;
}

.vfx-site-header .header-right .search-toggle-btn {
	color: #444444;
	border: 0;
}

@media (max-width: 991px) {
	.vfx-site-header .header-right .search-toggle-btn .fi:before {
		font-size: 16px;
	}
}

.vfx-site-header .header-right .search-toggle-btn .ti-close {
	display: block;
	line-height: 20px;
	position: relative;
	top: 0px;
}

.cart-search-contact button {
	background: transparent;
	padding: 0;
	border: 0;
	outline: 0;
}

.cart-search-contact .fi {
	font-size: 30px;
	font-size: 2rem;
	line-height: 1;
	color: #232f4b;
}

.cart-search-contact>div {
	float: left;
	position: relative;
}

.cart-search-contact>div+div {
	margin-left: 12px;
}

.cart-search-contact .header-search-form {
	position: absolute;
	width: 300px;
	right: 0;
	top: 35px;
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	background: #fff;
	padding: 15px;
	border-radius: 6px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-box-shadow: -2px 18px 40px -9px #999999;
	box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {
	.cart-search-contact .header-search-form {
		top: 43px;
	}
}

@media (max-width: 767px) {
	.cart-search-contact .header-search-form {
		right: 15px;
	}
}

@media (max-width: 575px) {
	.cart-search-contact .header-search-form {
		width: 260px;
		padding: 15px;
		right: -50px;
	}
}

.cart-search-contact .header-search-form-wrapper .fi:before {
	font-size: 18px;
	font-size: 1.2rem;
}

.cart-search-contact form div {
	position: relative;
}

.cart-search-contact form div button {
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
	font-size: 18px !important;
}

.cart-search-contact input {
	font-size: 14px;
	font-weight: 600;
	width: 100%;
	height: 50px;
	padding: 6px 20px;
	border-radius: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #eeeeee;
}

.cart-search-contact input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.vfx-site-header .header-right .header-search-content-toggle {
	opacity: 1;
	visibility: visible;
	right: -20px;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media (max-width: 575px) {
	.vfx-site-header .header-right .header-search-content-toggle {
		right: -25px;
	}
}

@media (max-width: 991px) {
	.page-wrapper {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.body-overlay:before {
		content: "";
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.9);
		position: absolute;
		left: 0;
		top: 0;
		z-index: 10;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
}

.header-search-area {
	background: #fff;
	width: 100%;
	padding: 100px 0;
	text-align: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
}

.header-search-area h3 {
	font-size: 45px;
	margin: 0 0 1em;
}

.header-search-area form {
	position: relative;
}

.header-search-area input {
	height: 50px;
	font-size: 18px;
	font-size: 1.2rem;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #d0d0d0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.header-search-area input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.header-search-area form button {
	background: transparent;
	border: 0;
	font-size: 20px;
	font-size: 1.33333rem;
	position: absolute;
	right: 0;
	bottom: 10px;
}

.header-search-area form button:focus {
	border: none;
	outline: none;
}

.header-search-area .close-form {
	position: absolute;
	right: 35px;
	top: 35px;
	bottom: auto;
	padding-bottom: 5px;
	border-bottom: 1px solid;
}

.header-search-area .close-form button {
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 13px;
	font-size: 0.86667rem;
	text-transform: uppercase;
	color: #000;
	letter-spacing: 2px;
	z-index: 99;
}

.header-search-area .close-form button:focus {
	border: 0;
	outline: 0;
}

.vfx-site-header {
	border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}

.vfx-site-header .navigation {
	background-color: #fff;
	margin-bottom: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
}

.vfx-site-header .navigation>.container {
	position: relative;
}

@media (max-width: 991px) {
	.vfx-site-header .navigation {
		padding: 15px 0;
	}
}

.vfx-site-header #navbar {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.vfx-site-header #navbar>ul li a.active,
.vfx-site-header #navbar>ul li a:hover,
.vfx-site-header #navbar>ul li a:focus {
	text-decoration: none;
}

@media screen and (min-width: 992px) {
	.vfx-site-header #navbar li {
		position: relative;
	}

	.vfx-site-header #navbar>ul>li>a {
		font-size: 20px;
		padding: 35px 20px;
		display: block;
		color: #232f4b;
		font-weight: 500;
		position: relative;
	}

	.vfx-site-header #navbar>ul .sub-menu {
		background-color: #fff;
		-webkit-box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
		box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
		width: 220px;
		position: absolute;
		padding: 5px 0;
		left: 0;
		top: 110%;
		z-index: 999;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.vfx-site-header #navbar>ul>li .sub-menu a {
		font-size: 15px;
		display: block;
		padding: 7px 12px;
		color: #232f4b;
		position: relative;
		overflow: hidden;
		font-weight: 600;
		margin: 0 7px;
		border-radius: 6px;
	}

	.vfx-site-header #navbar>ul>li .sub-menu a:hover,
	.vfx-site-header #navbar>ul>li .sub-menu a.active {
		-webkit-transition: all .3s;
		transition: all .3s;
		opacity: 1;
		color: #fff;
	}

	.vfx-site-header #navbar>ul>li .sub-menu a:hover:after,
	.vfx-site-header #navbar>ul>li .sub-menu a.active:after {
		width: 40px;
		opacity: 1;
		visibility: visible;
	}

	.vfx-site-header #navbar>ul>li>.sub-menu .sub-menu {
		left: 110%;
		top: 0;
		border-radius: 10px;
	}
}

@media screen and (min-width: 992px) and (max-width: 1300px) {
	.vfx-site-header #navbar>ul>li>.sub-menu .sub-menu {
		left: auto;
		right: 110%;
	}
}

@media screen and (min-width: 992px) {
	.vfx-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
		position: relative;
	}

	.vfx-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
		font-family: "themify";
		content: "\e649";
		font-size: 11px;
		font-size: 0.73333rem;
		position: absolute;
		right: 15px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.vfx-site-header #navbar>ul>li:hover>.sub-menu {
		top: 100%;
		visibility: visible;
		opacity: 1;
		border-radius: 10px;
	}

	.vfx-site-header #navbar .sub-menu>li:hover>.sub-menu {
		left: 100%;
		visibility: visible;
		opacity: 1;
	}
}

@media screen and (min-width: 992px) and (max-width: 1300px) {
	.vfx-site-header #navbar .sub-menu>li:hover>.sub-menu {
		left: auto;
		right: 100%;
	}
}

@media (max-width: 991px) {
	.vfx-site-header #navbar>ul>li a {
		display: block;
		font-size: 15px;
		font-size: 1rem;
		color: #000000;
		font-weight: 600;
	}

	.vfx-site-header #navbar>ul .sub-menu>li:last-child {
		border-bottom: 0;
	}

	.vfx-site-header #navbar>ul>li>.sub-menu a {
		padding: 7px 10px 7px 40px;
	}

	.vfx-site-header #navbar>ul>li>.sub-menu .sub-menu a {
		padding: 8px 15px 8px 65px;
	}

	.vfx-site-header #navbar>ul .menu-item-has-children>a {
		position: relative;
	}

	.vfx-site-header #navbar>ul .menu-item-has-children>a:before {
		font-family: "themify";
		content: "\e649";
		font-size: 11px;
		font-size: 0.73333rem;
		position: absolute;
		right: 25px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.vfx-site-header #navbar>ul .menu-item-has-children>a.rotate:before {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		top: 29%;
	}
}

@media screen and (min-width: 992px) {
	.vfx-site-header .navbar-header .open-btn {
		display: none;
	}

	.vfx-site-header #navbar .close-navbar {
		display: none;
	}
}

.vfx-site-header .menu-close {
	display: none;
}

@media (max-width: 767px) {
	.vfx-site-header .container {
		width: 100%;
	}

	.vfx-site-header .mobail-menu button {
		width: 40px;
		height: 35px;
		border: 0;
		padding: 5px 10px;
		outline: 0;
		position: relative;
		z-index: 20;
	}

	.vfx-site-header .mobail-menu button:focus {
		outline: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.vfx-site-header .mobail-menu button span {
		background-color: #fff;
		width: 20px;
		display: block;
		height: 2px;
		margin-bottom: 5px;
	}

	.vfx-site-header .mobail-menu button span:last-child {
		margin: 0;
	}

	.vfx-site-header #navbar {
		background: #39425a;
		display: block !important;
		width: 300px;
		height: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		position: fixed;
		left: -320px;
		top: 0px;
		z-index: 999999;
		opacity: 0;
		visibility: hidden;
	}

	.vfx-site-header #navbar .navbar-nav {
		display: block;
	}

	.vfx-site-header #navbar>ul {
		position: relative;
		z-index: 101;
	}

	.vfx-site-header #navbar ul a {
		color: #ffffff;
	}

	.vfx-site-header #navbar .navbar-nav {
		height: 100%;
		overflow: auto;
		padding-bottom: 100px;
	}

	.vfx-site-header #navbar .close-navbar {
		background-color: #fff;
		width: 40px;
		height: 40px;
		color: #000;
		border: 0;
		outline: none;
		position: absolute;
		left: -41px;
		top: 90px;
		z-index: 20;
	}

	.vfx-site-header #navbar .close-navbar .ti-close {
		position: relative;
		top: 1px;
	}

	.vfx-site-header #navbar>ul>li>a {
		padding: 10px 25px !important;
		color: #fff;
	}

	.vfx-site-header .menu-close {
		font-size: 12px;
		display: block;
		z-index: 99;
		background: none;
		text-align: center;
		color: #fff;
		border: 0;
		text-align: center;
		margin-left: auto;
		margin-top: 15px;
		margin-right: 15px;
		margin-bottom: 10px;
		width: 34px;
		height: 34px;
		line-height: 32px;
		border: 1px solid #fff;
		border-radius: 40px;
	}

	.vfx-site-header .slideInn {
		left: 0 !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.vfx-site-header .navbar-toggler .first-angle,
	.vfx-site-header .navbar-toggler .last-angle {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.vfx-site-header .x-close .middle-angle {
		opacity: 0;
	}

	.vfx-site-header .x-close .first-angle {
		position: absolute;
		-webkit-transform: rotate(-44deg);
		top: 16px;
		left: 10px;
	}

	.vfx-site-header .x-close .last-angle {
		-webkit-transform: rotate(44deg);
		position: absolute;
		top: 16px;
		right: 10px;
	}
}

@media (max-width: 767px) {
	.vfx-site-header .navbar-header .navbar-brand {
		font-size: 24px;
		padding: 0;
		margin: 0;
	}

	.vfx-site-header #navbar .navbar-nav {
		margin: 0;
	}

	.vfx-site-header .navigation {
		padding: 12px 0;
	}

	.vfx-site-header .mobail-menu {
		margin-left: -10px;
	}
}

@media (max-width: 991px) {
	.vfx-site-header .navbar-collapse.collapse {
		display: none;
	}

	.vfx-site-header .navbar-collapse.collapse.in {
		display: block;
	}

	.vfx-site-header .navbar-header .collapse,
	.vfx-site-header .navbar-toggle {
		display: block;
	}

	.vfx-site-header .navbar-header {
		float: none;
	}

	.vfx-site-header .navbar-right {
		float: none;
	}

	.vfx-site-header .navbar-nav {
		float: none;
		margin: 0 !important;
	}

	.vfx-site-header .navbar-nav>li {
		float: none;
	}
}

@media (max-width: 440px) {
	.vfx-site-header .navbar-header .navbar-brand img {
		max-width: 140px;
	}
}

@media (max-width: 370px) {
	.vfx-site-header .navbar-header .navbar-brand img {
		max-width: 125px;
	}
}

@media (max-width: 1500px) {
	.vfx-site-header #navbar>ul>li>a {
		padding: 30px 15px;
	}

	.vfx-site-header {
		padding: 0 10px;
	}
}

.vfx-site-header #navbar>ul>li>a {
	padding: 10px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
}

@media (max-width: 1200px) {

	.vfx-site-header .header-right .theme-btn-s3,
	.vfx-site-header .header-right .theme-btn-s4,
	.vfx-site-header .header-right .view-cart-btn {
		display: none;
	}
}

@media (max-width: 991px) {
	.vfx-site-header #navbar>ul>li>a {
		font-size: 14px;
	}
}

@media (max-width: 767px) {

	.header-right .theme-btn,
	.header-right .theme-btn-s3,
	.header-right .theme-btn-s4,
	.header-right .view-cart-btn {
		padding: 20px 12px;
	}

	.vfx-site-header .header-right .close-form {
		display: none;
	}
}

@media (max-width: 575px) {
	.vfx-hero-section-1 {
		height: 400px;
	}

	.vfx-hero-section-1 .vfx-hero-title-top span {
		font-size: 18px;
	}

	.vfx-hero-section-1 .vfx-hero-title h2 {
		font-size: 30px;
		line-height: 35px;
	}

	.vfx-hero-section-1 .vfx-hero-subtitle p {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 30px;
	}

	.vfx-hero-section-1.vfx-hero-section-2 .right-vec .right-img .video-holder {
		left: 0;
		top: 10px;
	}

	.vfx-hero-section-1.vfx-hero-section-2 .right-vec .right-img .r-img {
		left: 195px;
		top: -20%;
	}

	.vfx-hero-section-1.vfx-hero-section-2 {
		height: 720px;
	}

	.vfx-gallery-section .vfx-section-title-button {
		text-align: center;
		margin-bottom: 40px;
	}

	.vfx-gallery-section .vfx-section-title {
		text-align: center;
	}
}

.vfx-site-header .header-right {
	position: relative;
}

/*--------------------------------------------------------------
	Content Part
--------------------------------------------------------------*/
.vfx-hero-slider {
	width: 100%;
	height: 490px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 0;
}

@media (max-width: 991px) {
	.vfx-hero-slider {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.vfx-hero-slider {
		height: 300px;
	}
}

.vfx-hero-slider .swiper-slide {
	border-radius: 10px;
	overflow: hidden;
}

.vfx-hero-slider .swiper-slide .thumb {
	position: relative;
	left: 0;
	top: 0;
	z-index: 99;
	display: inline-block;
	padding: 3px 15px;
	border-radius: 6px;
	color: #ffffff;
	font-weight: 700;
}

.vfx-hero-slider .swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.vfx-hero-slider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	text-align: left;
}

.vfx-hero-slider .slide-inner:before {
	content: "";
	width: 100%;
	height: 85%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.98));
	background: -o-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.98));
	background: -moz-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.98));
	background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.98));
	background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.98));
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .4s linear 0s;
	transition: all .4s linear 0s;
	-webkit-transform-origin: bottom 0 0;
	transform-origin: bottom 0 0;
}

.vfx-hero-slider .slide-inner .slide-content {
	position: absolute;
	left: 0;
	bottom: 20px;
	padding-left: 30px;
}

@media (max-width: 767px) {
	.vfx-hero-slider .slide-inner .slide-content {
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 20px;
	}
}

.vfx-hero-slider .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	text-align: center;
	line-height: 8px;
	font-size: 8px;
	color: #f9f9f9;
	opacity: 1;
	background: rgba(255, 255, 255, 0.4);
	position: relative;
}

.vfx-hero-slider .swiper-pagination-bullet:before {
	position: absolute;
	left: -6px;
	top: -6px;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	content: "";
	border-radius: 50%;
}

.vfx-hero-slider .swiper-pagination-bullet-active {
	width: 8px;
	height: 8px;
	text-align: center;
	line-height: 8px;
}

.vfx-hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.vfx-hero-slider .swiper-pagination-custom,
.vfx-hero-slider .swiper-pagination-fraction {
	bottom: 20px;
	right: 20px;
	left: auto;
	text-align: right;
}

.vfx-hero-slider .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

@media (max-width: 1199px) {
	.vfx-hero-slider {
		height: 420px;
	}
}

@media (max-width: 767px) {
	.vfx-hero-slider {
		height: 350px;
	}
}

.vfx-hero-slider .gradient-overlay {
	background: -webkit-gradient(linear, left top, right top, color-stop(45%, #333), color-stop(65%, transparent));
	background: linear-gradient(left, #333 45%, transparent 65%);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0.6;
}

.vfx-hero-slider .gradient-overlay+.container {
	position: relative;
	z-index: 11;
}

.vfx-hero-slider .swiper-slide {
	position: relative;
	z-index: 11;
}

.vfx-hero-slider .vfx-hero-title-top span {
	font-size: 22px;
	color: #e4e4e4;
	font-family: "Muli";
}

@media (max-width: 767px) {
	.vfx-hero-slider .vfx-hero-title-top span {
		font-size: 15px;
	}
}

.vfx-hero-slider .slide-title {
	max-width: 712px;
}

@media (max-width: 1199px) {
	.vfx-hero-slider .slide-title {
		max-width: 555px;
	}
}

.vfx-hero-slider .slide-title h2 {
	font-size: 28px;
	font-weight: 800;
	line-height: 38px;
	margin: 10px 0 0 0;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vfx-hero-slider .slide-title h2 a {
	color: #ffffff;
}

@media (max-width: 767px) {
	.vfx-hero-slider .slide-title h2 {
		font-size: 20px;
		font-size: 1.3333333333rem;
		line-height: 36px;
	}
}

.vfx-hero-slider .slide-text {
	max-width: 680px;
}

@media (max-width: 767px) {
	.vfx-hero-slider .slide-text {
		max-width: 500px;
	}
}

.vfx-hero-slider .slide-text p {
	font-size: 18px;
	color: #fff;
	line-height: 30px;
	max-width: 680px;
	margin-bottom: 40px;
	color: #e2e2e2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 991px) {
	.vfx-hero-slider .slide-text p {
		font-size: 18px;
		font-size: 1.2rem;
	}
}

@media (max-width: 767px) {
	.vfx-hero-slider .slide-text p {
		font-size: 16px;
		font-size: 1.0666666667rem;
		line-height: 22px;
		margin-bottom: 30px;
	}
}

/*--------------------------------------------------------------
	Footer
--------------------------------------------------------------*/
.vfx-site-footer {
	background: #191a1f;
	position: relative;
	font-size: 15px;
	overflow: hidden;
}

.vfx-site-footer ul {
	list-style: none;
}

.vfx-site-footer p {
	color: #fff;
}

.vfx-site-footer li {
	color: #fff;
}

.vfx-site-footer .container {
	position: relative;
}

.vfx-site-footer .vfx-upper-footer {
	padding: 50px 0;
}

@media (max-width: 991px) {
	.vfx-site-footer .vfx-upper-footer {
		padding: 40px 0 25px 0;
	}
}

@media (max-width: 767px) {
	.vfx-site-footer .vfx-upper-footer {
		padding: 40px 0 20px 0;
	}
}

@media (max-width: 991px) {
	.vfx-site-footer .vfx-upper-footer .col {
		min-height: 235px;
		margin-bottom: 70px;
	}

	.vfx-upper-footer .widget.about-widget {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.vfx-site-footer .vfx-upper-footer .col {
		min-height: auto;
		margin-bottom: 60px;
	}
}

.vfx-site-footer .widget-title {
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	.vfx-site-footer .widget-title {
		margin-bottom: 20px;
	}
}

.vfx-site-footer .widget-title h3 {
	font-size: 20px;
	color: #fff;
	margin: 0;
	position: relative;
	font-weight: 700;
}

.vfx-site-footer .about-widget .logo a img {
	max-width: 100%;
	width: 180px;
	height: auto;
}

.vfx-site-footer .about-widget p {
	margin-bottom: 0.8em;
	line-height: 1.8em;
	font-size: 15px;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vfx-site-footer .about-widget p:last-child {
	margin-bottom: 0;
}

.vfx-site-footer .vfx-service-link-widget {
	padding-left: 70px;
}

.vfx-site-footer .link-widget {
	overflow: hidden;
}

@media screen and (min-width: 1200px) {
	.vfx-site-footer .link-widget {
		padding-left: 40px;
	}
}

@media (max-width: 1199px) {
	.vfx-site-footer .link-widget {
		padding-left: 20px;
	}
}

@media (max-width: 991px) {
	.vfx-site-footer .link-widget {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.vfx-site-footer .link-widget {
		max-width: 350px;
	}

	.vfx-upper-footer .widget {
		margin-bottom: 20px;
	}
}

.vfx-site-footer .link-widget ul li {
	position: relative;
}

.vfx-site-footer .link-widget ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.vfx-site-footer .link-widget ul li a i {
	font-size: 11px;
	margin-right: 5px;
}

.vfx-site-footer .link-widget ul li+li {
	padding-top: 15px;
}

.vfx-site-footer .tag-widget ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.vfx-site-footer .tag-widget ul li a {
	display: block;
	padding: 6px 15px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin-right: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.vfx-site-footer .tag-widget ul li a:hover {
	color: #ffffff;
}

.vfx-site-footer .social-widget ul li a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.vfx-site-footer .social-widget ul li a svg {
	margin-right: 10px;
	background: #303136;
	padding: 6px;
	border-radius: 8px;
	width: 25px;
	height: 25px;
}

.vfx-site-footer .social-widget ul li a i {
	margin-right: 10px;
	background: #303136;
	padding: 6px;
	border-radius: 10px;
}

.vfx-site-footer .vfx-lower-footer {
	text-align: center;
	position: relative;
	background: #101010;
}

.vfx-site-footer .vfx-lower-footer .row {
	padding: 20px 0;
	position: relative;
}

.vfx-site-footer .vfx-lower-footer .copyright {
	display: inline-block;
	font-size: 15px;
	font-size: 0.9375rem;
	margin: 0;
}

.vfx-site-footer .vfx-lower-footer .copyright a {
	color: #fff;
	text-decoration: none;
}

@media (max-width: 991px) {
	.vfx-site-footer .vfx-lower-footer .copyright {
		float: none;
		display: block;
	}
}

.vfx-site-footer .instagram ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0px -3px;
}

.vfx-site-footer .instagram ul li {
	-ms-flex: 0 0 33.33%;
	-webkit-box-flex: 0;
	flex: 0 0 33.33%;
	max-width: 33.33%;
	margin-bottom: 5px;
	padding: 0px 3px;
}

.vfx-site-footer .instagram ul li img {
	width: 100%;
}

.vfx-news-hero-area .vfx-news-grids {
	margin: 0 -7.5px;
}

.vfx-news-hero-area .vfx-news-grids .grid {
	width: 25%;
	float: left;
	padding: 0 7.5px 15px;
	width: 50%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.vfx-news-hero-area .vfx-news-grids .grid img {
	width: 100%;
}

@media (max-width: 1200px) {
	.vfx-news-hero-area .vfx-news-grids .grid {
		width: 100%;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid.s2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -10px;
	padding-right: 0;
}

@media (max-width: 767px) {
	.vfx-news-hero-area .vfx-news-grids .grid.s2 {
		margin: 0;
		padding-right: 7.5px;
	}
}

@media (max-width: 767px) {
	.vfx-news-hero-area .vfx-news-grids .grid.s2 {
		display: block;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid.s2 .img-holder {
	margin: 0 10px;
}

@media (max-width: 767px) {
	.vfx-news-hero-area .vfx-news-grids .grid.s2 .img-holder {
		margin: 0;
		margin-bottom: 15px;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid.s2 .img-holder:last-child {
	margin-right: 0;
}

.vfx-news-hero-area .vfx-news-grids .grid img {
	width: 100%;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	z-index: 1;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder img {
	border-radius: 15px;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .3s;
	transition: all .3s;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(7, 7, 7, 0.4);
	border-radius: 15px;
	z-index: 11;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 30px;
	z-index: 19;
}

@media (max-width: 450px) {
	.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content {
		padding: 15px;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content .thumb {
	padding: 3px 15px;
	background: rgba(255, 255, 255, 0.8);
	color: #fa5952;
	text-align: center;
	font-size: 20px;
	border-radius: 5px;
	display: inline-block;
	font-weight: 700;
}

@media (max-width: 450px) {
	.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content .thumb {
		font-size: 16px;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content h2 {
	font-size: 35px;
	color: #fff;
	font-weight: 600;
	margin-top: 15px;
}

@media (max-width: 450px) {
	.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content h2 {
		font-size: 20px;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content h2 a {
	color: #fff;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content p {
	color: #fff;
	margin-top: 15px;
}

@media (max-width: 450px) {
	.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content p {
		font-size: 14px;
		margin-bottom: 0;
	}
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul li {
	position: relative;
	color: #fff;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul li+li {
	margin-left: 20px;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul li:last-child {
	padding-left: 10px;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul li:last-child:before {
	position: absolute;
	left: -8px;
	top: 6px;
	width: 8px;
	height: 8px;
	content: "";
	background: #fff;
	border-radius: 50%;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul li a {
	color: #fff;
}

.vfx-news-hero-area .vfx-news-grids .grid .img-holder .vfx-news-content ul li img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.vfx-news-hero-area .vfx-news-grids .grid+.grid .vfx-news-content h2 {
	font-size: 25px;
}

@media (max-width: 450px) {
	.vfx-news-hero-area .vfx-news-grids .grid+.grid .vfx-news-content h2 {
		font-size: 20px;
		margin-top: 8px;
		margin-bottom: 6px;
	}
}

.vfx-breacking-news .b-title {
	padding-left: 20px;
}

.vfx-breacking-news .b-title span {
	font-size: 15px;
	font-weight: 700;
	padding: 5px 10px;
	display: inline-block;
	border-radius: 10px 10px 0 0;
	color: #ffffff;
	margin-bottom: 0;
}

.vfx-breacking-news .vfx-breacking-wrap {
	background: #ffffff;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	padding: 0;
	border-radius: 20px;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px;
	border-right: 1px solid #eeeeee;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 1px;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-img {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	border-radius: 10px;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	aspect-ratio: 5 / 4;
	-webkit-transition: transform .8s ease;
	transition: transform .8s ease;
	border-radius: 10px;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-text {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	padding-left: 15px;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-text span {
	font-size: 14px;
	font-weight: 600;
	color: #737373;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-text h3 {
	font-size: 16px;
	font-weight: 600;
	margin-top: 5px;
	line-height: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-text h3 a {
	transition: all 0.4s ease-out 0s;
	display: inline;
	color: #444444;
	padding-bottom: 0px;
	-webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(98%, currentColor));
	background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item:hover .vfx-breacking-text h3 a {
	background-size: 100% 1px;
}

.vfx-breacking-news .vfx-breacking-wrap .owl-nav {
	display: none;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap {
	position: relative;
	z-index: 1;
	border: 1px solid #eeeeee;
	padding: 25px;
	border-radius: 20px;
}

/*.vfx-news-grid .vfx-news-highlights-wrap{
	border: 0;
	padding: 0;
	border-radius: 0px;
}*/
@media (max-width: 767px) {
	.vfx-news-highlights-section .vfx-news-highlights-wrap {
		padding-bottom: 60px;
	}
}

@media (max-width: 575px) {
	.vfx-news-highlights-section .vfx-news-highlights-wrap {
		padding: 15px;
	}
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dotted #eeeeee;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-img {
	overflow: hidden;
	position: relative;
	border-radius: 6px;
	max-width: 280px;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-img .thumb,
.vfx-news-content .vfx-news-dtl-item-section .entry-media .thumb {
	position: absolute;
	right: 12px;
	top: 15px;
	padding: 3px 10px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 6px;
	z-index: 1;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	aspect-ratio: 6 / 4;
	-webkit-transition: transform .8s ease;
	transition: transform .8s ease;
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-o-filter: grayscale(0);
	-ms-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-transform: scale(1);
	transform: scale(1);
	border-radius: 6px;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item:hover .vfx-news-img img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content {
	padding-top: 15px;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li {
	color: #444444;
	font-size: 14px;
	font-weight: 600;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li:last-child {
	padding-left: 24px;
	position: relative;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li:last-child:before {
	position: absolute;
	left: 8px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	content: "";
	border-radius: 50%;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li a:hover {
	color: #232f4b;
	text-decoration: underline;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 7px;
}

.vfx-news-item .vfx-news-content .share_blog a,
.vfx-news-detail-area .share_blog a {
	background: #ececec;
	font-size: 14px;
	font-weight: 600;
	color: #232f4b;
	margin-left: 15px;
	padding: 3px 10px;
	border-radius: 6px;
}

.vfx-news-dtl-item-section .share_blog a {
	margin-left: 10px;
}

.vfx-news-item .vfx-news-content .share_blog a:hover,
.vfx-news-detail-area .share_blog a:hover {
	color: #ffffff;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content h2 {
	font-size: 20px;
	margin-bottom: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-top: 0;
}

.social-media-modal {
	display: inlin-block;
	text-align: center;
}

.social-media-modal ul li {
	display: inline-block;
}

.social-media-modal ul li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 42px;
	text-align: center;
	margin: 3px;
	border-radius: 50%;
	font-size: 18px;
	color: #ffffff;
	position: relative;
	-webkit-transition: all .4s linear 0s;
	transition: all .4s linear 0s;
}

.social-media-modal ul li a svg {
	margin-top: -4px;
}

.social-media-modal ul li a.facebook-icon {
	background: #4267b2;
}

.social-media-modal ul li a.twitter-icon {
	background: #00acee;
}

.social-media-modal ul li a.linkedin-icon {
	background: #0077b5;
}

.social-media-modal ul li a.instagram-icon {
	background: #8a3ab9;
}

.social-media-modal ul li a.pinterest-icon {
	background: #E60023;
}

.social-media-modal ul li a.youtube-icon {
	background: #c4302b;
}

.social-media-modal ul li a.whatsapp-icon {
	background: #4fce5d;
}

.social-media-modal ul li a:hover {
	background: #757f8a;
	color: #ffffff;
}

.modal-backdrop.show {
	opacity: .8;
}

.modal-backdrop {
	background-color: #232f4b;
}

@media (max-width: 1400px) {
	.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content h2 {
		font-size: 20px;
		margin-bottom: 12px;
		line-height: 30px;
		font-weight: 700;
	}
}

@media (max-width: 1200px) {
	.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content h2 {
		font-size: 20px;
	}
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content h2 a {
	transition: all 0.4s ease-out 0s;
	display: inline;
	color: #232f4b;
	margin-top: 0;
	-webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(98%, currentColor));
	background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
	background-size: 0 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item:hover .vfx-news-content h2 a {
	background-size: 100% 2px;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content p {
	font-size: 15px;
	color: #444444;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vfx-news-highlights-section .vfx-news-highlights-wrap .col:nth-child(5) .vfx-news-item,
.vfx-news-highlights-section .vfx-news-highlights-wrap .col:nth-child(6) .vfx-news-item {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

@media screen and (min-width: 992px) {
	.vfx-news-highlights-section .news-sidebar {
		padding-left: 10px;
	}
}

@media (max-width: 991px) {
	.vfx-news-highlights-section .news-sidebar {
		margin-top: 40px;
		max-width: 100%;
	}
}

/*--------------------------------------------------------------
	Blog Section
--------------------------------------------------------------*/

.sticky-wrap {
	padding-left: 0;
	top: 20px;
	top: 1rem;
	/*position: -webkit-sticky;
	position: sticky;*/
	position: inherit;
	height: fit-content;
}

.main-news-area .news-sidebar .widget {
	padding: 20px;
}

.main-news-area .news-sidebar .widget h3:after {
	width: 70%;
}

.main-news-area .news-sidebar .about-widget {
	padding: 20px;
}

.vfx-news-features-section .vfx-news-features-item .vfx-news-features-img {
	position: relative;
}

.vfx-news-features-section .vfx-news-features-item .vfx-news-features-img .thumb {
	position: absolute;
	left: 15px;
	top: 15px;
	padding: 7px 25px 6px;
	background: #fff;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 5px;
}

.vfx-news-features-section .vfx-news-features-item .vfx-news-features-img img {
	width: 100%;
}

.vfx-news-features-section .vfx-news-features-item .vfx-news-features-text h2 {
	font-size: 20px;
	margin-bottom: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-top: 10px;
}

.vfx-news-features-section .vfx-news-features-item .vfx-news-features-text h2 a {
	color: #444444;
}

.video-blog {
	padding-top: 50px;
	padding-bottom: 50px;
}

.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#youtube-player,
#video-player {
	width: 100%;
	height: 100% !important;
}

@media (max-width: 767px) {
	.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-img {
		max-width: 100%;
	}
}

.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item:last-child {
	border: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-content {
	padding-left: 20px;
	padding-top: 0;
	width: 75%;
}

@media (max-width: 767px) {
	.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-content {
		padding-left: 0;
		padding-top: 15px;
	}
}

.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-content h2 {
	margin-top: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-img .video-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 63px;
	height: 63px;
	line-height: 66px;
	font-size: 20px;
	border-radius: 50%;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.video-blog .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-img .video-btn:before {
	position: absolute;
	left: -12px;
	top: -12px;
	width: 140%;
	height: 140%;
	content: "";
	-webkit-animation: save-the-date-pulse 1s infinite;
	animation: save-the-date-pulse 1s infinite;
	border-radius: 50%;
	z-index: -1;
}

.video-blog .vfx-news-grid .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item {
	display: inline-block;
}

.vfx-news-highlights-section .vfx-news-grid .vfx-news-highlights-wrap .vfx-news-item .vfx-news-img,
.vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-img {
	width: 50%;
	max-width: 100%;
}

.vfx-news-grid .vfx-news-items .vfx-news-item .vfx-news-img,
.vfx-news-grid .vfx-news-items .vfx-news-item .vfx-news-content {
	width: 100% !important;
	max-width: 100%;
}

.video-blog .vfx-news-grid .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item .vfx-news-content {
	padding-left: 0;
	padding-top: 15px;
}

.video-blog .vfx-news-grid .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item,
.vfx-news-grid .vfx-news-highlights-wrap .vfx-news-items .vfx-news-item {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 0;
}

.page-wrappers.dark-mode {
	background: #202026;
}

.page-wrappers.dark-mode h2,
.page-wrappers.dark-mode h3,
.page-wrappers.dark-mode h4,
.page-wrappers.dark-mode h5,
.page-wrappers.dark-mode h6 {
	color: #fff;
}

.page-wrappers.dark-mode .vfx-site-header {
	background: #202026;
}

.page-wrappers.dark-mode .vfx-site-header .topbar .row {
	border-color: #3c3c40;
}

.page-wrappers.dark-mode .vfx-site-header .topbar ul li,
.page-wrappers.dark-mode .vfx-site-header .topbar ul a {
	color: #CBCBCB;
}

.page-wrappers.dark-mode .vfx-site-header .navigation {
	background: #202026;
}

.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap {
	border-color: #3c3c40;
}

.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item {
	border-color: #3c3c40;
}

.page-wrappers.dark-mode .vfx-site-header #navbar>ul>li>a,
.page-wrappers.dark-mode .vfx-site-header .cart-search-contact .search-toggle-btn .fi,
.page-wrappers.dark-mode .vfx-news-features-section .vfx-news-features-item .vfx-news-features-text h2 a,
.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content h2 a,
.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li,
.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li a {
	color: #ffffff;
}

.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content ul li:before {
	background: #ffffff;
}

.page-wrappers.dark-mode .vfx-news-highlights-section .vfx-news-highlights-wrap .vfx-news-item .vfx-news-content p {
	color: #CBCBCB;
}

.page-wrappers.dark-mode .main-news-area .news-sidebar .about-widget {
	background: #2C2C32;
	border-color: #3c3c40;
}

.page-wrappers.dark-mode .main-news-area .news-sidebar .about-widget p,
.page-wrappers.dark-mode .main-news-area .news-sidebar .category-widget ul>li a,
.page-wrappers.dark-mode .main-news-area .news-sidebar .vfx-newsletter-widget p,
.page-wrappers.dark-mode .main-news-area .news-sidebar .vfx-newsletter-widget span,
.page-wrappers.dark-mode .main-news-area .news-sidebar .vfx-newsletter-widget a {
	color: #CBCBCB;
}

.page-wrappers.dark-mode .main-news-area .news-sidebar .widget,
.page-wrappers.dark-mode .main-news-area .news-sidebar .category-widget ul>li+li {
	border-color: #3c3c40;
}

.page-wrappers.dark-mode .vfx-subscribe-section .vfx-subscribe-wrap {
	background: #2a2b34;
}

@media screen and (min-width: 992px) {
	.news-sidebar {
		padding-left: 25px;
	}
}

@media (max-width: 991px) {
	.news-sidebar {
		margin-top: 80px;
	}
}

@media (max-width: 767px) {
	.news-sidebar {
		margin-top: 60px;
	}
}

.news-sidebar .widget {
	margin-bottom: 30px;
	padding: 25px;
	border-radius: 20px;
	border: 1px solid #eeeeee;
}

.news-sidebar .widget h3 {
	font-size: 23px;
	font-size: 1.53333rem;
	font-weight: 700;
	color: #232f4b;
	margin: 0 0 1.3em;
	position: relative;
	text-transform: capitalize;
	padding-bottom: 20px;
}

.news-sidebar .widget h3:before {
	content: "";
	width: 58px;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 10px;
}

.news-sidebar .widget h3:after {
	content: "";
	background-color: #f2f2f2;
	width: 80%;
	height: 4px;
	position: absolute;
	left: 65px;
	bottom: 0;
	border-radius: 10px;
}

.news-sidebar .search-widget form div {
	position: relative;
}

.news-sidebar .search-widget input {
	background-color: rgba(55, 86, 247, 0.05);
	height: 50px;
	font-size: 15px;
	font-size: 1.01667rem;
	font-weight: 600;
	padding: 6px 50px 6px 20px;
	border: 0;
	border-radius: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.news-sidebar .search-widget input:focus {
	background-color: rgba(55, 86, 247, 0.1);
}

.news-sidebar .search-widget form button {
	background: transparent;
	font-size: 18px;
	font-size: 1.10333rem;
	color: #fff;
	border: 0;
	outline: 0;
	position: absolute;
	right: 0;
	top: 50%;
	height: 50px;
	line-height: 50px;
	width: 50px;
	border-radius: 0px 6px 6px 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.news-sidebar .about-widget {
	text-align: center;
	background-color: #f9faff;
	padding: 45px;
	position: relative;
	z-index: 1;
}

@media (max-width: 1200px) {
	.news-sidebar .about-widget {
		padding: 35px;
	}
}

.news-sidebar .about-widget .aw-shape {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

.news-sidebar .about-widget .img-holder {
	margin-bottom: 25px;
}

.news-sidebar .about-widget .img-holder img {
	border-radius: 50%;
	width: 100%;
	max-width: 200px;
}

.news-sidebar .about-widget ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.news-sidebar .about-widget ul li {
	margin-right: 10px;
}

.news-sidebar .about-widget ul li:last-child {
	margin-right: 0;
}

.news-sidebar .about-widget ul li a {
	text-decoration: none;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #eeeff7;
	border-radius: 50%;
}

.news-sidebar .about-widget h4 {
	font-weight: 700;
	margin-bottom: 15px;
}

.news-sidebar .about-widget p {
	font-size: 15px;
	font-size: 1rem;
	margin-bottom: 1.2em;
}

.news-sidebar .about-widget a {
	font-size: 14px;
	font-size: 0.93333rem;
	color: #232f4b;
	text-decoration: underline;
}

.news-sidebar .category-widget ul {
	list-style: none;
}

.news-sidebar .category-widget ul li {
	font-size: 19px;
	font-size: 1.26667rem;
	position: relative;
}

@media (max-width: 767px) {
	.news-sidebar .category-widget ul li {
		font-size: 16px;
		font-size: 1.06667rem;
	}
}

.news-sidebar .category-widget ul li span {
	position: absolute;
	right: 0;
}

.news-sidebar .category-widget ul>li+li {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 2px dotted #eeeeee;
}

.news-sidebar .category-widget ul a {
	display: block;
	color: #474f62;
	position: relative;
	padding-left: 25px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.news-sidebar .category-widget ul a:before {
	position: absolute;
	left: 0px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "\e649";
	font-family: "themify";
	transform: translateY(-45%);
	font-size: 13px;
}

.news-sidebar .category-widget ul a span {
	display: inline-block;
	text-align: center;
	font-size: 16px;
}

@media (max-width: 767px) {

	.news-sidebar .category-widget ul a,
	.news-sidebar .category-widget ul a span {
		font-size: 14px;
		font-size: 0.97333rem;
	}
}

.news-sidebar .recent-news-post-widget .post {
	overflow: hidden;
}

.news-sidebar .recent-news-post-widget .posts>.post+.post {
	margin-top: 15px;
	padding-top: 15px;
}

.news-sidebar .recent-news-post-widget .post .img-holder {
	width: 70px;
	float: left;
}

.news-sidebar .recent-news-post-widget .post .img-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	aspect-ratio: 5 / 4;
	-webkit-transition: transform .8s ease;
	transition: transform .8s ease;
	border-radius: 6px;
}

.news-sidebar .recent-news-post-widget .post .details {
	width: calc(100% - 70px);
	float: left;
	padding-left: 20px;
}

.news-sidebar .recent-news-post-widget .post h4 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4em;
	margin: 0.4em 0 0;
}

@media (max-width: 767px) {
	.news-sidebar .recent-news-post-widget .post h4 {
		font-size: 14px;
		font-size: 0.92667rem;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		text-align: left;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.news-sidebar .widget h3 {
		font-size: 18px;
		font-size: 1.23333rem;
		font-weight: 700;
		padding-bottom: 14px;
	}
}

.news-sidebar .recent-news-post-widget .post h4 a {
	display: inline-block;
	color: #232f4b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-sidebar .recent-news-post-widget .post .details .date {
	background: #ececec;
	font-size: 12px;
	font-weight: 600;
	color: #232f4b;
	padding: 2px 8px;
	border-radius: 6px;
}

.news-sidebar .recent-news-post-widget .post .details .date::before,
.date-item-area span::before,
.live-tv-btn span::before,
.header-item-date::before,
.news-sidebar .category-widget ul a span::before,
.vfx-breacking-news .vfx-breacking-wrap .vfx-breacking-item .vfx-breacking-text span::before,
.vfx-breacking-news .b-title span::before,
.vfx-breadcumb-area .vfx-breadcumb-wrap ul li:last-child span::before,
.vfx-site-header .mobail-menu button span::before,
.vfx-news-detail-area .vfx-news-tag-share .tag>span::before,
.vfx-news-detail-area .vfx-social-share-tag .tag>span::before,
.vfx-news-detail-area .vfx-more-posts-area .post-name::before,
.vfx-news-detail-area .vfx-comment-section-area .vfx-comments-item-meta h4 span::before,
.vfx-news-detail-area .vfx-comment-section-area .comment-reply-link span::before,
.user-name span::before {
	display: none;
}

.news-sidebar .recent-news-post-widget .post .details .date i {
	display: inline-block;
	padding-right: 7px;
}

.news-sidebar .vfx-instagram-widget ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
}

.news-sidebar .vfx-instagram-widget ul li {
	-ms-flex: 0 0 33.33%;
	-webkit-box-flex: 0;
	flex: 0 0 33.33%;
	max-width: 33.33%;
	margin-bottom: 5px;
	padding: 0px 3px;
}

.news-sidebar .vfx-instagram-widget ul li img {
	width: 100%;
	border-radius: 6px;
}

.news-sidebar .tag-widget ul {
	overflow: hidden;
	list-style: none;
}

.news-sidebar .tag-widget ul li {
	float: left;
	margin: 0 8px 8px 0;
}

.news-sidebar .tag-widget ul li a {
	font-size: 15px;
	font-size: 1rem;
	font-weight: 600;
	display: inline-block;
	padding: 6px 15px;
	color: #232f4b;
	text-transform: capitalize;
	background: #ecf4fb;
	border-radius: 6px;
}

.news-sidebar .tag-widget ul li a:hover {
	color: #fff;
}

.news-sidebar .vfx-contact-widget {
	border: 0;
	padding: 30px 40px;
}

@media (max-width: 1200px) {
	.news-sidebar .vfx-contact-widget {
		padding: 20px;
	}
}

.news-sidebar .vfx-contact-widget h2 {
	font-size: 36px;
	font-weight: 700;
	text-align: left;
	color: #fff;
	margin-bottom: 20px;
}

.news-sidebar .vfx-contact-widget h2::before {
	left: 28px;
	background: url(../images/single-title-shape.png) no-repeat right center;
}

.news-sidebar .vfx-contact-widget p {
	color: #fff;
	font-size: 18px;
}

.news-sidebar .vfx-contact-widget a {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #fff;
	font-size: 18px;
	color: #fff;
	padding-right: 90px;
	position: relative;
	margin-top: 10px;
}

.news-sidebar .vfx-contact-widget a::before {
	font-family: "themify";
	content: "\e628";
	font-size: 18px;
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pagination-wrapper {
	text-align: center;
	margin-top: 35px;
}

.pagination-wrapper .pg-pagination {
	display: inline-block;
	overflow: hidden;
	list-style-type: none;
	text-align: center;
}

.pagination-wrapper .pg-pagination li {
	float: left;
	margin-right: 10px;
}

@media (max-width: 767px) {
	.pagination-wrapper .pg-pagination li {
		margin-right: 5px;
	}
}

.pagination-wrapper .pg-pagination li:last-child {
	margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
	background-color: transparent;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	font-size: 1.06667rem;
	font-weight: 600;
	border-radius: 6px;
	color: #232f4b;
	background: #ebf4fc;
	display: block;
}

@media (max-width: 991px) {
	.pagination-wrapper .pg-pagination li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 15px;
		font-size: 1rem;
	}
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
	color: #ffffff;
}

.pagination-wrapper .pg-pagination .fi:before {
	font-size: 15px;
	font-size: 1rem;
}

/*--------------------------------------------------------------
	Blog Detail Page
--------------------------------------------------------------*/
.vfx-news-dtl-item-section .vfx-news-content .post {
	margin-bottom: 20px;
	margin-top: 20px;
}

.vfx-news-dtl-item-section .entry-meta {
	list-style: none;
	overflow: hidden;
	margin: 35px 0;
}

.format-video {
	float: none;
	clear: both;
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 10px;
	margin-bottom: 20px !important;
	height: 0;
}

.format-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.vfx-news-dtl-item-section .entry-meta {
		margin: 25px 0;
	}
}

.vfx-news-dtl-item-section .entry-meta ul {
	list-style: none;
}

.vfx-news-dtl-item-section .entry-meta ul li {
	font-weight: 500;
	font-size: 14px;
	font-size: 0.93333rem;
	float: left;
}

.vfx-news-dtl-item-section .entry-meta ul li a {
	color: #636893;
}

.vfx-news-dtl-item-section .entry-meta ul li i {
	position: relative;
	top: 2px;
	margin-right: 3px;
}

.vfx-news-dtl-item-section .entry-meta ul li+li {
	margin-left: 20px;
	padding-left: 20px;
	position: relative;
}

.vfx-news-dtl-item-section .entry-meta ul li+li:before {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	content: "";
	border-radius: 50%;
}

@media (max-width: 440px) {
	.vfx-news-dtl-item-section .entry-meta ul li+li:before {
		display: none;
	}
}

@media (max-width: 440px) {
	.vfx-news-dtl-item-section .entry-meta ul li+li {
		margin-left: 0;
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.vfx-news-dtl-item-section .entry-meta ul li {
		font-size: 12px;
		font-size: 0.8rem;
	}
}

@media (max-width: 440px) {
	.vfx-news-dtl-item-section .entry-meta ul li {
		float: none;
		display: block;
		margin-bottom: 5px;
	}
}

.vfx-news-dtl-item-section .post h3 {
	font-size: 24px;
	font-size: 1.76667rem;
	line-height: 1.3em;
	font-weight: 700;
	margin: -0.27em 0 0.7em;
}

@media (max-width: 991px) {
	.vfx-news-dtl-item-section .post h3 {
		font-size: 25px;
		font-size: 1.66667rem;
	}
}

@media (max-width: 767px) {
	.vfx-news-dtl-item-section .post h3 {
		font-size: 22px;
		font-size: 1.46667rem;
	}
}

.vfx-news-dtl-item-section .post h3 a {
	color: #232f4b;
}

.vfx-news-dtl-item-section .post p {
	margin-bottom: 1.5em;
}

@media (max-width: 991px) {
	.vfx-news-dtl-item-section .post p {
		font-size: 16px;
		font-size: 1.06667rem;
	}
}

.vfx-news-dtl-item-section .post a.read-more {
	text-decoration: underline;
	color: #444444;
	text-transform: uppercase;
	font-size: 16px;
}

.vfx-news-dtl-item-section .entry-media img {
	width: 100%;
	border-radius: 10px;
}

.vfx-news-dtl-item-section .format-standard,
.vfx-news-dtl-item-section .format-quote {
	background-color: #f9faff;
	padding: 25px 35px 45px;
}

@media (max-width: 767px) {

	.vfx-news-dtl-item-section .format-standard,
	.vfx-news-dtl-item-section .format-quote {
		padding: 25px 20px 45px;
	}
}

.vfx-news-dtl-item-section .format-standard {
	position: relative;
}

.vfx-news-dtl-item-section .format-standard:before {
	position: absolute;
	right: 0;
	top: 0;
	content: "\f109";
	font-family: "flaticon";
	font-size: 90px;
	line-height: 80px;
	color: #e5f0fb;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.vfx-news-dtl-item-section .vfx-gallery-format {
	position: relative;
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-controls {
	width: 100%;
	margin: 0;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav [class*=owl-]:hover {
	color: #ffffff;
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav [class*=owl-] {
	background: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 44px;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border: 0;
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav [class*=owl-] .fi::before {
	font-size: 16px;
	font-weight: 600;
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav .owl-prev,
.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav .owl-prev {
	left: 15px;
}

.vfx-news-dtl-item-section .vfx-gallery-format .owl-nav .owl-next {
	right: 15px;
}

.vfx-news-dtl-item-section .format-quote {
	text-align: center;
	padding: 80px 60px;
	position: relative;
}

@media (max-width: 767px) {
	.vfx-news-dtl-item-section .format-quote {
		padding: 40px 20px;
	}
}

.vfx-news-dtl-item-section .format-quote p {
	margin-bottom: 0;
}

.vfx-news-dtl-item-section .format-quote:before {
	font-family: "Flaticon";
	content: "\f120";
	font-size: 250px;
	font-size: 16.66667rem;
	color: #ecf3fb;
	margin-left: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.vfx-news-dtl-item-section .format-quote h3,
.vfx-news-dtl-item-section .format-quote p {
	position: relative;
}

.vfx-news-dtl-item-section .format-video .video-holder {
	position: relative;
	text-align: center;
}

.vfx-news-dtl-item-section .format-video .video-holder:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 10px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.5;
}

.vfx-news-dtl-item-section .format-video .video-holder:hover:before {
	opacity: 0.7;
}

.vfx-news-dtl-item-section .format-video .video-holder a {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 63px;
	height: 63px;
	line-height: 70px;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
}

.vfx-news-dtl-item-section .format-video .video-holder a:before {
	position: absolute;
	left: -12px;
	top: -12px;
	width: 140%;
	height: 140%;
	background: rgba(255, 255, 255, 0.3);
	content: "";
	-webkit-animation: save-the-date-pulse 1s infinite;
	animation: save-the-date-pulse 1s infinite;
	border-radius: 50%;
	z-index: -1;
}

.vfx-news-dtl-item-section .format-video .video-holder .fi:before {
	font-size: 20px;
	font-size: 1.33333rem;
}

@media screen and (min-width: 1200px) {
	.news-pg-left-sidebar .news-sidebar {
		padding-right: 45px;
		padding-left: 0;
	}
}

@media screen and (min-width: 1200px) {
	.news-pg-fullwidth .vfx-news-content {
		padding: 0;
	}
}

@-webkit-keyframes save-the-date-pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(0.95, 0.95, 0.95);
		transform: scale3d(0.95, 0.95, 0.95);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes save-the-date-pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(0.95, 0.95, 0.95);
		transform: scale3d(0.95, 0.95, 0.95);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

/*--------------------------------------------------------------
	Blog Single Section
--------------------------------------------------------------*/
.vfx-news-detail-area .entry-meta {
	list-style: none;
	overflow: hidden;
	margin: 20px 20px 20px 0;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .entry-meta {
		margin: 15px 0;
	}
}

.vfx-news-detail-area .entry-meta ul {
	list-style: none;
}

.vfx-news-detail-area .entry-meta ul li {
	font-weight: 600;
	font-size: 14px;
	font-size: 0.93333rem;
	float: left;
	text-transform: capitalize;
}

.vfx-news-detail-area .entry-meta ul li a:hover {
	color: #232f4b;
	text-decoration: underline;
}

.vfx-news-detail-area .entry-meta ul li i {
	position: relative;
	top: 2px;
	margin-right: 3px;
}

.vfx-news-detail-area .entry-meta ul li+li {
	margin-left: 12px;
	padding-left: 20px;
	position: relative;
}

.vfx-news-detail-area .entry-meta ul li+li:before {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	content: "";
	border-radius: 50%;
}

@media (max-width: 440px) {
	.vfx-news-detail-area .entry-meta ul li+li:before {
		display: none;
	}
}

@media (max-width: 440px) {
	.vfx-news-detail-area .entry-meta ul li+li {
		margin-left: 0;
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.vfx-news-detail-area .entry-meta ul li {
		font-size: 12px;
		font-size: 0.8rem;
	}

	.vfx-news-detail-area .entry-meta ul li {
		display: inline-block;
		margin-bottom: 5px;
		float: none;
		margin-right: 10px;
	}

	.vfx-news-detail-area .entry-meta {
		margin: 10px 0;
	}

	.vfx-news-content .vfx-news-dtl-item-section .d-flex.align-items-center {
		display: block !important;
	}

	.vfx-news-detail-area .entry-meta ul li+li {
		margin-left: 0;
	}

	.vfx-news-content .vfx-news-dtl-item-section .share_blog {
		display: inline-block !important;
		margin-bottom: 15px;
	}

	.vfx-news-content .vfx-news-dtl-item-section .share_blog a {
		margin-left: 0;
		margin-right: 10px;
	}
}

.vfx-news-detail-area .entry-media img {
	width: 100%;
	border-radius: 10px;
}

.vfx-news-detail-area .post h2 {
	font-size: 32px;
	font-size: 1.83333rem;
	margin: -0.3em 0 0.6em;
	line-height: 1.3em;
	font-weight: 800;
}

@media (max-width: 991px) {
	.vfx-news-detail-area .post h2 {
		font-size: 30px;
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.vfx-news-detail-area .post h2 {
		font-size: 22px;
		font-size: 1.36667rem;
	}
}

.vfx-news-detail-area .post p {
	margin-bottom: 1em;
}

.vfx-news-detail-area .post h3 {
	font-size: 24px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3em;
	margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
	.vfx-news-detail-area .post h3 {
		font-size: 22px;
		font-size: 1.46667rem;
	}
}

@media (max-width: 767px) {
	.vfx-news-detail-area .post h3 {
		font-size: 20px;
		font-size: 1.33333rem;
	}
}

.vfx-news-detail-area .post blockquote {
	background-color: #e7ebfd;
	color: #233d62;
	font-size: 20px;
	line-height: 1.6em;
	font-weight: 600;
	padding: 50px;
	margin-top: 50px;
	margin-bottom: 25px;
	border: 2px solid #d6daf0;
	border-radius: 10px;
	text-align: center;
	position: relative;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .post blockquote {
		padding: 55px 25px;
	}
}

.vfx-news-detail-area .post blockquote:before {
	font-family: "Flaticon";
	content: "\f109";
	font-size: 20px;
	font-size: 1.33333rem;
	color: rgba(255, 255, 255, 0.5);
	position: absolute;
	left: 50%;
	top: -30px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 2px solid #f9faff;
	background: #ffffff;
	border-radius: 50%;
}

.vfx-news-detail-area .post .gallery {
	overflow: hidden;
	margin: 20px -7.5px 0;
}

.vfx-news-detail-area .post .gallery>div {
	width: calc(50% - 15px);
	float: left;
	margin: 0 7.5px 15px;
}

.vfx-news-detail-area .post .gallery img {
	width: 100%;
	border-radius: 10px;
}

.vfx-news-detail-area .vfx-news-tag-share,
.vfx-news-detail-area .vfx-social-share-tag {
	border-bottom: 1px solid #eeeeee;
	margin: 30px 0 0;
	padding-bottom: 20px;
	color: #232f4b;
}

@media (max-width: 767px) {

	.vfx-news-detail-area .vfx-news-tag-share,
	.vfx-news-detail-area .vfx-social-share-tag {
		margin-top: 40px;
	}
}

.vfx-news-detail-area .vfx-news-tag-share ul,
.vfx-news-detail-area .vfx-social-share-tag ul {
	list-style: none;
	display: inline-block;
	overflow: hidden;
}

.vfx-news-detail-area .vfx-news-tag-share ul li,
.vfx-news-detail-area .vfx-social-share-tag ul li {
	float: left;
}

@media (max-width: 767px) {

	.vfx-news-detail-area .vfx-news-tag-share ul li,
	.vfx-news-detail-area .vfx-social-share-tag ul li {
		margin: 2px;
	}
}

.vfx-news-detail-area .vfx-news-tag-share ul>li+li,
.vfx-news-detail-area .vfx-social-share-tag ul>li+li {
	margin-left: 10px;
}

@media (max-width: 767px) {

	.vfx-news-detail-area .vfx-news-tag-share ul>li+li,
	.vfx-news-detail-area .vfx-social-share-tag ul>li+li {
		margin: 2px;
	}
}

.vfx-news-detail-area .vfx-news-tag-share .tag,
.vfx-news-detail-area .vfx-social-share-tag .tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.vfx-news-detail-area .vfx-news-tag-share .tag>span,
.vfx-news-detail-area .vfx-social-share-tag .tag>span {
	color: #232f4b;
	font-weight: 600;
	display: inline-block;
	padding-right: 15px;
	text-transform: uppercase;
}

.vfx-news-detail-area .vfx-news-tag-share .tag ul,
.vfx-news-detail-area .vfx-social-share-tag .tag ul {
	list-style: none;
	position: relative;
}

.vfx-news-detail-area .vfx-news-tag-share .tag li,
.vfx-news-detail-area .vfx-social-share-tag .tag li {
	position: relative;
}

.vfx-news-detail-area .vfx-news-tag-share .tag a,
.vfx-news-detail-area .vfx-social-share-tag .tag a {
	font-size: 13px;
	font-size: 0.9rem;
	font-weight: 700;
	display: inline-block;
	padding: 5px 12px;
	color: #232f4b;
	background: #ecf4fb;
	border-radius: 6px;
	text-transform: uppercase;
}

@media (max-width: 767px) {

	.vfx-news-detail-area .vfx-news-tag-share .tag a,
	.vfx-news-detail-area .vfx-social-share-tag .tag a {
		font-size: 13px;
		font-size: 0.86667rem;
	}
}

.vfx-news-detail-area .vfx-social-share-tag {
	margin: 0;
	margin-top: 20px;
	border-bottom: 0;
}

.vfx-news-detail-area .vfx-social-share-tag .tag a {
	padding: 0;
	font-size: 14px;
	font-size: 0.96667rem;
	text-transform: capitalize;
	background: none;
	text-decoration: underline;
	color: #444444;
}

.vfx-news-detail-area .vfx-author-block-area {
	margin: 20px 0 10px;
}

.vfx-news-detail-area .vfx-author-block-area .vfx-author-avatar {
	float: left;
	width: 130px;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-author-block-area .vfx-author-avatar {
		float: none;
		margin: 0 auto;
	}
}

.vfx-news-detail-area .vfx-author-block-area .vfx-author-avatar img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	aspect-ratio: 5 / 5;
	-webkit-transition: transform .8s ease;
	transition: transform .8s ease;
}

.vfx-news-detail-area .vfx-author-block-area .vfx-author-content {
	display: block;
	overflow: hidden;
	padding-left: 25px;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-author-block-area .vfx-author-content {
		padding: 0;
		margin: 15px 0 0 0;
	}
}

.vfx-news-detail-area .vfx-author-block-area .vfx-author-content p {
	font-size: 15px;
	margin-bottom: 20px;
}

.vfx-news-detail-area .vfx-author-block-area .author-name {
	font-size: 24px;
	font-size: 1.4rem;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 10px;
	color: #232f4b;
}

.vfx-news-detail-area .vfx-author-block-area .social-link {
	display: inline-block;
	list-style: none;
}

.vfx-news-detail-area .vfx-author-block-area .social-link li {
	float: left;
	margin-right: 12px;
}

.vfx-news-detail-area .vfx-author-block-area .social-link a {
	display: block;
	font-size: 13px;
	font-size: 0.86667rem;
	color: #232f4b;
}

.vfx-news-detail-area .vfx-more-posts-area {
	overflow: hidden;
	border: 1px solid #eef0fc;
	padding: 0 25px;
	border-radius: 10px;
}

.vfx-news-detail-area .vfx-more-posts-area>div {
	width: 50%;
	float: left;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-more-posts-area>div {
		width: 100%;
		float: none;
	}
}

.vfx-news-detail-area .vfx-more-posts-area>div>a {
	display: inline-block;
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-previous-post,
.vfx-news-detail-area .vfx-more-posts-area .vfx-next-post {
	padding: 25px 0;
}

@media (max-width: 767px) {

	.vfx-news-detail-area .vfx-more-posts-area .vfx-previous-post,
	.vfx-news-detail-area .vfx-more-posts-area .vfx-next-post {
		padding: 15px 0px !important;
	}
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-next-post {
	text-align: right;
	border-left: 1px solid #eef0fc;
	padding-left: 15px;
	padding-right: 5px;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-more-posts-area .vfx-next-post {
		border-left: 0;
		text-align: left;
		border-top: 1px solid #eef0fc;
	}
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-next-post .post-control-link {
	padding-right: 25px;
	position: relative;
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-next-post .post-control-link:before {
	font-family: "themify";
	content: "\e628";
	position: absolute;
	right: 0;
	top: 0;
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-previous-post {
	padding-right: 15px;
	padding-left: 5px;
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-previous-post .post-control-link {
	padding-left: 25px;
	position: relative;
}

.vfx-news-detail-area .vfx-more-posts-area .vfx-previous-post .post-control-link:before {
	font-family: "themify";
	content: "\e629";
	position: absolute;
	left: 0;
	top: 0;
}

.vfx-news-detail-area .vfx-more-posts-area .post-control-link {
	font-size: 16px;
	font-size: 1.03333rem;
	color: #444444;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}

.vfx-news-detail-area .vfx-more-posts-area .post-name {
	font-size: 16px;
	font-size: 1.0rem;
	line-height: 26px;
	color: #4d525b;
	margin: 0.7em 0 0;
	font-weight: 500;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vfx-news-detail-area .vfx-comment-section-area {
	margin-top: 40px;
}

.vfx-news-detail-area .vfx-comment-section-area li>div {
	border-bottom: 1px solid #e2e6f7;
	padding: 35px;
}

@media (max-width: 991px) {
	.vfx-news-detail-area .vfx-comment-section-area li>div {
		padding: 20px;
	}
}

.vfx-news-detail-area .vfx-comment-section-area ul {
	list-style-type: none;
	padding-left: 0;
	background: #f4f6ff;
	border-radius: 10px;
}

.vfx-news-detail-area .vfx-comment-section-area ul ul {
	padding-left: 30px;
	list-style-type: none;
}

.vfx-news-detail-area .vfx-comment-section-area ul>li:last-child div {
	border-bottom: 0;
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-maintitle {
	font-size: 22px;
	font-size: 1.46667rem;
	font-weight: 700;
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 991px) {
	.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-maintitle {
		font-size: 20px;
		font-size: 1.33333rem;
	}
}

.vfx-news-detail-area .vfx-comment-section-area li>div {
	position: relative;
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-user-item {
	position: absolute;
	left: 35px;
	width: 75px;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-user-item {
		position: static;
	}
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-user-item img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	aspect-ratio: 4 / 4;
	-webkit-transition: transform .8s ease;
	transition: transform .8s ease;
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-block-area {
	padding-left: 100px;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-block-area {
		padding-left: 0;
		margin-top: 15px;
	}
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comment-block-area p {
	font-size: 15px;
	margin-bottom: 15px;
	color: #606060;
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comments-item-meta h4 {
	font-size: 16px;
	font-size: 1.1rem;
	color: #232f4b;
	font-weight: bold;
	margin: 0 0 10px;
}

.vfx-news-detail-area .vfx-comment-section-area .vfx-comments-item-meta h4 span {
	font-size: 14px;
	font-size: 0.9rem;
	color: #444444;
	font-weight: 600;
	text-transform: none;
	display: inline-block;
	padding-left: 10px;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-comment-section-area .vfx-comments-item-meta h4 span {
		padding-left: 0;
	}
}

.vfx-news-detail-area .vfx-comment-section-area .comment-reply-link {
	font-size: 14px;
	font-size: 0.93333rem;
	font-weight: 600;
	color: #232f4b;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	text-decoration: underline;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.vfx-news-detail-area .vfx-comment-respond {
	margin-top: 40px;
}

.vfx-news-detail-area .vfx-comment-respond .vfx-comment-reply-title {
	font-size: 22px;
	font-size: 1.46667rem;
	margin: 0 0 1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.vfx-news-detail-area .vfx-comment-respond .vfx-comment-reply-title {
		font-size: 20px;
		font-size: 1.33333rem;
	}
}

.vfx-news-detail-area .vfx-comment-respond form input,
.vfx-news-detail-area .vfx-comment-respond form textarea {
	background-color: #fff;
	width: 100%;
	height: 50px;
	border: 1px solid #a4adbe;
	padding: 6px 15px;
	font-weight: 600;
	margin-bottom: 15px;
	outline: 0;
	border-radius: 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.vfx-news-detail-area .vfx-comment-respond form input:focus,
.vfx-news-detail-area .vfx-comment-respond form textarea:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media (max-width: 991px) {

	.vfx-news-detail-area .vfx-comment-respond form input,
	.vfx-news-detail-area .vfx-comment-respond form textarea {
		height: 46px;
	}
}

.vfx-news-detail-area .vfx-comment-respond form textarea {
	height: 130px;
	padding: 15px;
}

@media (max-width: 991px) {
	.vfx-news-detail-area .vfx-comment-respond form textarea {
		height: 150px;
	}
}

.vfx-news-detail-area .vfx-comment-respond .form-inputs {
	overflow: hidden;
}

.vfx-news-detail-area .vfx-comment-respond .form-inputs>input:nth-child(1) {
	width: 49%;
	float: left;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-comment-respond .form-inputs>input:nth-child(1) {
		width: 100%;
		float: none;
	}

	.news-sidebar .widget {
		padding: 20px;
	}
}

.vfx-news-detail-area .vfx-comment-respond .form-inputs>input:nth-child(2) {
	width: 49%;
	float: right;
}

@media (max-width: 767px) {
	.vfx-news-detail-area .vfx-comment-respond .form-inputs>input:nth-child(2) {
		width: 100%;
		float: none;
	}
}

.vfx-news-detail-area .vfx-comment-respond .form-submit input {
	max-width: 180px;
	color: #ffffff;
	margin-bottom: 0;
	border: 0;
	outline: 0;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 0.5px;
	border-radius: 30px;
}

@media screen and (min-width: 1200px) {
	.vfx-news-single-left-sidebar-section .news-sidebar {
		padding-right: 45px;
		padding-left: 0;
	}
}

/*--------------------------------------------------------------
	Contact Page
--------------------------------------------------------------*/
.vfx-contact-pg-section .vfx-contact-title {
	max-width: 440px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	.vfx-contact-pg-section .vfx-contact-title {
		margin-bottom: 30px;
	}
}

.vfx-contact-pg-section .vfx-contact-title h2 {
	font-size: 35px;
	font-size: 2.33333rem;
	font-weight: 600;
	margin-bottom: 20px;
}

@media (max-width: 575px) {
	.vfx-contact-pg-section .vfx-contact-title h2 {
		font-size: 25px;
		font-size: 1.66667rem;
	}
}

.vfx-contact-pg-section .form-group label {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 7px;
	color: #4a4a4a;
	display: block;
	width: 280px;
}

.vfx-contact-pg-section form input,
.vfx-contact-pg-section form select,
.vfx-contact-pg-section form textarea {
	background: #f4f6fa;
	width: 100%;
	height: 50px;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: 6px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding-left: 15px;
}

.report-news textarea {
	background: #f4f6fa;
	width: 100%;
	height: 120px;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: 6px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding-left: 15px;
	padding-top: 10px;
}

.vfx-contact-pg-section form input:focus,
.vfx-contact-pg-section form select:focus,
.vfx-contact-pg-section form textarea:focus {
	background: #f4f6fa;
}

.vfx-contact-pg-section form textarea {
	height: 120px;
	padding-top: 10px;
}

.vfx-contact-pg-section form ::-webkit-input-placeholder {
	font-style: 15px;
	font-style: normal;
	color: #9d9c9c;
}

.vfx-contact-pg-section form :-moz-placeholder {
	font-style: 15px;
	font-style: normal;
	color: #9d9c9c;
}

.vfx-contact-pg-section form ::-moz-placeholder {
	font-style: 15px;
	font-style: normal;
	color: #9d9c9c;
}

.vfx-contact-pg-section form :-ms-input-placeholder {
	font-style: 15px;
	font-style: normal;
	color: #9d9c9c;
}

.vfx-contact-pg-section form select {
	display: inline-block;
	color: #a9a9a9;
	cursor: pointer;
	opacity: 1;
	padding: 6px 15px;
	font-size: 15px;
	font-size: 1rem;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

.vfx-contact-pg-section form .submit-area {
	text-align: center;
	width: 100%;
	margin-bottom: 10px;
	margin-left: 0;
}

@media (max-width: 767px) {
	.vfx-contact-pg-section form .submit-area {
		margin-bottom: 0;
	}
}

.vfx-contact-pg-section form .submit-area .theme-btn,
.vfx-contact-pg-section form .submit-area .theme-btn-s3,
.vfx-contact-pg-section form .submit-area .theme-btn-s4,
.vfx-contact-pg-section form .submit-area .view-cart-btn {
	border-radius: 30px;
	font-size: 16px;
}

.vfx-contact-pg-section .office-info {
	padding-bottom: 100px;
}

@media (max-width: 767px) {
	.vfx-contact-pg-section .office-info {
		padding-bottom: 60px;
	}
}

@media (max-width: 1200px) {
	.vfx-contact-pg-section .office-info .col .office-info-item {
		margin-bottom: 30px;
	}
}

@media (max-width: 1200px) {
	.vfx-contact-pg-section .office-info .col:last-child .office-info-item {
		margin-bottom: 0px;
	}
}

.vfx-contact-pg-section .office-info .office-info-item {
	text-align: center;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
	padding: 40px;
}

.vfx-contact-pg-section .office-info .office-info-item .office-info-icon {
	width: 85px;
	height: 85px;
	background: #f5f5f5;
	line-height: 85px;
	text-align: center;
	margin: 0 auto;
	border-radius: 50%;
}

.vfx-contact-pg-section .office-info .office-info-item .office-info-icon svg {
	width: 50px;
	line-height: 50px;
	height: 50px;
}

.vfx-contact-pg-section .office-info .office-info-item .office-info-icon img {
	width: 50px;
	line-height: 50px;
	height: 50px;
}

.vfx-contact-pg-section .office-info .office-info-item .office-info-text h2 {
	font-size: 30px;
	font-weight: 500;
	margin: 20px 0;
}

.vfx-contact-pg-section .office-info .office-info-item .office-info-text p {
	margin-bottom: 0;
}

.vfx-contact-pg-section .vfx-contact-form-area {
	padding: 30px;
	background: #fff;
	-webkit-box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
	box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
	border-radius: 10px;
	position: relative;
	z-index: 99;
}

@media (max-width: 767px) {
	.vfx-contact-pg-section .vfx-contact-form-area {
		padding: 20px;
	}
}

/*--------------------------------------------------------------
	Error 404 Section
--------------------------------------------------------------*/
.error-404-section {
	text-align: center;
}

.error-404-section .error-message {
	margin-top: 15px;
	padding: 0 200px;
}

@media (max-width: 991px) {
	.error-404-section .error-message {
		margin-top: 50px;
		padding: 0 100px;
	}
}

@media (max-width: 767px) {
	.error-404-section .error-message {
		padding: 0;
	}
}

.error img {
	max-width: 100%;
	object-fit: cover;
}

.error-404-section .error-message h3 {
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.4em;
}

.error-404-section .error-message p {
	margin-bottom: 1.2em;
	font-size: 16px;
	font-weight: 600;
}

/* ------------------------------------------------------------------- 
    Favourite Button
---------------------------------------------------------------------- */
.click {
	background: #fff;
	border-radius: 50px;
	font-size: 20px;
	color: #7d7d7d;
	width: 38px;
	height: 38px;
	line-height: 38px;
	margin: 0 auto;
	top: 10px;
	text-align: center;
	position: absolute;
	cursor: pointer;
	left: 10px;
	z-index: 9;
}

.click span {
	line-height: 40px;
	z-index: 999;
	position: relative;
	text-align: center;
}

.click.active {
	transform: scale(1.03, 1.03) translateY(1px)
}

.ring,
.ring2 {
	opacity: 0;
	background: grey;
	width: 1px;
	height: 1px;
	position: absolute;
	top: 18px;
	left: 18px;
	border-radius: 50%;
	cursor: pointer;
}

.active-2 .ring {
	width: 36px !important;
	height: 36px !important;
	top: 1px !important;
	left: 1px !important;
	position: absolute;
	border-radius: 50%;
	opacity: 1 !important;
}

.active-2 .ring2 {
	background: #ffffff !important;
}

.active-3 .ring2 {
	width: 40px !important;
	height: 40px !important;
	top: -1px !important;
	left: -1px !important;
	position: absolute;
	border-radius: 50%;
	opacity: 1 !important;
}

/* ------------------------------------------------------------------- 
    User Navigation
---------------------------------------------------------------------- */
.user-menu {
	position: relative;
	display: inline-block;
	cursor: pointer;
	margin-left: 15px;
}

.user-menu .user-name {
	transition: .2s;
	cursor: pointer;
	padding-left: 27px;
	font-size: 14px;
	font-weight: 700;
	line-height: 36px;
	text-transform: uppercase;
}

.user-name span {
	display: inline-block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	position: absolute;
	left: -10px;
	top: -25px;
}

.user-menu .user-name i {
	padding-left: 5px;
}

.user-name span img {
	width: 36px;
	height: 36px;
	display: inline-block;
	border-radius: 50%;
	box-sizing: content-box;
	image-rendering: -webkit-optimize-contrast;
}

.user-menu ul {
	float: left;
	text-align: left;
	position: absolute;
	top: 23px;
	right: -5px;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background-color: #25314d;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	display: inline-block;
	width: 180px;
	font-size: 14px;
	transform: translate3d(0, 15px, 0);
	padding: 5px;
	border-radius: 6px;
	box-sizing: border-box;
	transition: .25s;
	visibility: hidden;
	opacity: 0;
	z-index: 110;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.user-menu ul::before {
	position: absolute;
	top: -10px;
	left: auto;
	bottom: auto;
	right: 2px;
	content: '';
	display: block;
	visibility: visible;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid rgba(37, 49, 77, 0.9);
	transform: translate(-50%, 0);
	transition: all 0.3s ease;
}

.user-menu ul li:last-child {
	border-bottom: 0;
}

.user-menu ul li a {
	padding: 5px 10px 6px 10px;
	line-height: 22px;
	width: 100%;
	display: inline-block;
	color: #dbdbdb;
	margin-bottom: 1px;
	transition: .2s;
	font-size: 14px;
	font-weight: 600;
}

.user-menu ul li a:hover,
.user-menu ul li a.active {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	margin-bottom: 1px;
}

.user-menu ul li a i {
	font-size: 14px;
	margin-right: 7px;
	width: 20px;
	text-align: center;
	display: inline-block;
}

@media (max-width: 991px) {
	.user-menu ul {
		top: 23px;
	}
}

.browse_pic_file {
	position: relative;
	display: inline-block;
	cursor: pointer;
	height: 50px;
	float: left;
	margin-right: 15px;
}

.browse_pic_file input {
	width: 20rem;
	margin: 0;
	filter: alpha(opacity=0);
	opacity: 0;
}

.user_pic_view {
	display: inline-block;
}

.user_pic_view img.fileupload_img {
	width: 50px;
	height: 50px;
	margin-top: 0px;
	border-radius: 50px;
	border: 1px solid rgba(32, 32, 32, 0.3);
}

.user_pic_view .pic_remove {
	margin-left: 5px;
	width: 22px;
	height: 22px;
	display: inline-block;
	text-align: center;
	color: #ffffff;
	line-height: 19px;
	border: 2px solid #fff;
	border-radius: 30px;
	font-size: 10px;
}

.user_pic_view .pic_remove:hover {
	color: #ff0015;
	border: 2px solid #ff0015;
}

.browse_file_custom {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 5;
	height: 50px;
	padding: .5rem 1rem;
	color: #6c757d;
	font-size: 15px;
	font-weight: 700;
	line-height: 2.3;
	background: #f4f6fa;
	border-radius: .25rem;
}

.browse_file_custom::before {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0;
	z-index: 6;
	display: block;
	content: "Browse";
	height: 50px;
	padding: .5rem 1rem;
	line-height: 34px;
	color: #ffffff;
	border: 0;
	border-radius: 0 6px 6px 0;
	text-transform: uppercase;
	font-size: 14px;
}

.livetv-item-area {
	display: inline-block;
	padding: 0;
	border-radius: 0px;
}

.live-tv-btn {
	font-size: 14px;
	font-weight: 700;
	padding: 0;
	background: transparent !important;
	text-transform: uppercase;
	right: 0;
	display: block;
	position: absolute;
	line-height: 40px;
}

.live-tv-btn span {
	line-height: 34px;
}

.live-tv-btn:hover {
	color: #000000;
}

.live-tv-btn::after {
	background: transparent !important;
}

.live-tv-btn img {
	width: 36px;
	height: 36px;
	margin-right: 6px;
	border-radius: 50px;
}

.live-tv-btn svg {
	width: 31px;
	height: 31px;
	fill: #232f4b;
	padding: 5px;
	margin-right: 8px;
	border-radius: 10px;
}

.live-tv-btn i {
	margin-right: 6px;
	color: #a22e2e;
}

.fa-beat {
	animation-name: fa-beat;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, ease-in-out)
}

@media (prefers-reduced-motion:reduce) {
	.fa-beat {
		animation-delay: -1ms;
		animation-duration: 1ms;
		animation-iteration-count: 1;
		transition-delay: 0s;
		transition-duration: 0s
	}
}

@keyframes fa-beat {

	0%,
	90% {
		transform: scale(1)
	}

	45% {
		transform: scale(var(--fa-beat-scale, 1.25))
	}
}

/*---------------------------------------------------------
   Login, Register Section
-----------------------------------------------------------*/
.vfx-login-area {
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 100vh;
	padding: 0px 0;
}

.vfx-accountWrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: #fff;
	margin: auto;
	-webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	overflow: hidden;
}

.vfx-accountInfo {
	width: 50%;
	background: #23292f;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	min-height: 580px;
	text-align: center;
	padding: 30px;
}

.vfx-accountForm {
	width: 50%;
	padding: 40px 60px;
	min-height: 580px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.vfx-accountInfoHeader {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.vfx-accountInfoHeader a img {
	max-width: 100%;
	width: 180px;
	height: auto;
}

.vfx-accountInfoHeader h2 a {
	display: block;
	line-height: 50px;
	font-size: 35px;
	font-weight: 600;
	color: #fff;
}

.vfx-accountInfo .vfx-accountBtn {
	height: 40px;
	background: #fff;
	padding: 0px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-transform: capitalize;
	font-size: 14px;
	color: #062265;
	border: 2px solid #fff;
	-webkit-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
}

.vfx-accountInfo .vfx-accountBtn:hover {
	background: transparent;
	color: #fff;
}

.vfx-accountInfo p {
	color: #fff;
	font-size: 18px;
	margin-top: 20px;
}

.fromTitle h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: left;
}

.fromTitle p {
	font-size: 15px;
	margin-bottom: 40px;
}

.vfx-accountForm label {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.form-style input {
	width: 100%;
	margin-bottom: 15px;
	padding-left: 20px;
	height: 50px;
	font-weight: 600;
	border: 1px solid #e5e5e5 !important;
	border-radius: 10px;
	border: none;
}

.form-style input:focus {
	outline: none;
	border: 1px solid #e5e5e5 !important;
}

input[type=checkbox]+label {
	display: block;
	margin: 0.2em;
	cursor: pointer;
	padding: 0.2em;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox]+label:before {
	content: "\2714";
	border: 2px solid #e5e5e5;
	border-radius: 6px;
	display: inline-block;
	width: 1.4em;
	height: 1.4em;
	font-weight: 500;
	padding-left: 0.2em;
	padding-bottom: 0.3em;
	margin-right: 0.2em;
	vertical-align: bottom;
	color: transparent;
	-webkit-transition: .2s;
	transition: .2s;
	line-height: 1.2em;
	position: absolute;
	left: 0;
	top: 7px;
}

input[type=checkbox]+label:active:before {
	-webkit-transform: scale(0);
	transform: scale(0);
}

input[type=checkbox]:checked+label:before {
	color: #ffffff;
	line-height: 1.1;
}

input[type=checkbox]:disabled+label:before {
	-webkit-transform: scale(1);
	transform: scale(1);
	border-color: #aaa;
}

input[type=checkbox]:checked:disabled+label:before {
	-webkit-transform: scale(1);
	transform: scale(1);
	background-color: #bfb;
	border-color: #bfb;
}

.check-box-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.forget-btn a {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
}

.input-box label {
	color: #777777;
	font-weight: 600;
	font-size: 15px;
	padding-left: 25px !important;
}

.vfx-accountForm .vfx-accountBtn {
	font-size: 16px;
	font-weight: 600;
	padding: 10px 20px;
	border: 2px solid transparent;
	width: 100%;
	color: #ffffff;
	border-radius: 10px;
	-webkit-transition: all .4s ease-in-out 0s;
	transition: all .4s ease-in-out 0s;
	margin-top: 15px;
}

.vfx-accountForm .vfx-accountBtn:hover {
	background: transparent;
}

.or {
	font-size: 15px;
	font-weight: 600;
	margin-top: 20px;
	text-align: center;
	margin-bottom: 20px;
	display: inline-block;
	padding: 0;
	position: relative;
	color: #777777;
}

.vfx-socialLoginBtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
}

.vfx-socialLoginBtn li a.gmail {
	background: #dd3d1d;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	border: none;
	color: #fff;
	padding: 12px;
	width: 100%;
	display: inline-block;
	text-align: center;
	line-height: 1.5;
}

.vfx-socialLoginBtn li a.gmail i {
	margin-right: 5px;
	vertical-align: middle;
}

.vfx-socialLoginBtn li a.gmail:hover {
	background: #c63416;
}

.vfx-socialLoginBtn li {
	margin: 0;
	display: block;
	width: 100%;
}

.subText {
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}

.subText a {
	display: inline-block;
}

.form-group {
	position: relative;
}

.input-group-btn {
	position: absolute;
	right: 10px;
	top: 37px;
}

.input-group-btn button {
	background: transparent !important;
	border: none;
	outline: none;
	background: none;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.input-group-btn button:hover {
	background: transparent;
}

.input-group-btn button:focus,
.input-group-btn button.active {
	background: none !important;
	border: none !important;
	outline: none !important;
}

.btn-default.active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
	background: none !important;
	border: none;
	outline: none;
}

@media (max-width: 1200px) {
	.vfx-accountWrapper {
		width: 900px;
	}
}

@media (max-width: 1024px) {
	.vfx-accountWrapper {
		width: 100%;
		max-width: 100%;
	}

	.vfx-accountForm {
		padding: 40px;
	}

	.image img {
		width: 100%;
	}
}

@media (max-width: 992px) {
	.vfx-accountInfo {
		width: 100%;
	}

	.vfx-accountForm {
		width: 100%;
	}

	.accountArea {
		padding: 0px 16px;
	}
}

@media (max-width: 767px) {

	.vfx-accountForm,
	.vfx-accountInfo {
		width: 100%;
	}

	.vfx-accountInfo,
	.vfx-accountForm {
		min-height: auto;
	}
}

.back-home {
	max-width: 150px;
}

/* ------------------------------------------------------------------- 
    Banner Ads Section
---------------------------------------------------------------------- */
.browse_file_custom::after {
	content: "Choose File..";
}

.banner_ads_item {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
}

.banner_ads_item img {
	max-width: 100%;
}

/*KN*/
.contactus {
	padding-bottom: 15px;
}

ul.contactus {
	margin: 0px;
	padding: 0px;
	color: #ccc;
}

ul.contactus li {
	font-size: 15px;
	list-style-type: none;
	padding-bottom: 15px;
}

ul.contactus li:last-child {
	padding-bottom: 0px;
}

ul.contactus li a {
	color: #ccc;
}

ul.contactus li a:hover {
	color: #fff;
	text-decoration: none;
}

ul.contactus li i {
	width: 30px;
	text-align: center;
	padding-right: 10px;
	margin-bottom: 15px;
	float: left;
	padding-top: 5px;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
	background: rgba(0, 0, 0, 0.85) !important;
	backdrop-filter: blur(15px) !important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
	border-radius: 15px !important;
}

.swal2-html-container p {
	font-size: 14px;
	line-height: 1.8em;
	font-weight: 600;
	margin-bottom: 0;
}

div:where(.swal2-container) div:where(.swal2-actions) {
	margin: 0.5em auto 0;
}

div:where(.swal2-container) button:where(.swal2-styled) {
	padding: .55em 1.5em !important;
	font-weight: 700 !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
	padding: .5em 1em 0 !important;
}

.vfx-news-content ul,
.vfx-news-content .post ul {
	list-style-type: disc;
	padding-left: 0px;
	margin-bottom: 15px;
}

.vfx-news-content ul li,
.vfx-news-content .post ul li {
	line-height: 28px;
	list-style-type: none;
}

.vfx-news-tag-share .tag ul {
	margin-bottom: 0;
	padding: 0;
}

.vfx-news-tag-share .tag a {
	text-transform: capitalize !important;
	line-height: 1.6;
}

/* ------------------------------------------------------------------- 
    Reaction Block
---------------------------------------------------------------------- */
.reaction-container h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 25px;
	text-align: center;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
	padding-bottom: 15px;
}

.reaction-container {
	padding: 15px !important;
	background: #f8f9fa;
	border-radius: 10px;
	border: 2px dotted rgba(0, 0, 0, 0.1);
}

.reaction-bar {
	height: 10px !important;
	border-radius: 20px !important;
}

.reaction-label {
	font-size: 12px !important;
	font-weight: 700 !important;
}


.slider-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.slider-wrapper {
	display: flex;
	transition: transform 0.3s ease;
}

.slide {
	min-width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 15px;
	padding: 0;
	height: 400px;
}

.card {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
	border: 0;
	transition: transform 0.3s ease;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.card:hover {
	transform: translateY(-5px);
}

.card-large {
	grid-row: span 2;
}

.card-overlay {
	/*background: linear-gradient(transparent, rgba(0,0,0,0.9));*/
	padding: 20px;
	color: white;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.slider-wrapper .slide .card a {
	z-index: 3;
	height: 100%;
}

.slider-wrapper .slide .card::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -1px;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 70%);
	background: -o-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 70%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 70%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 70%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0) 70%);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all .4s linear 0s;
	transition: all .4s linear 0s;
	-webkit-transform-origin: left 0 0;
	transform-origin: left 0 0;
	z-index: 0;
}

.card-small .card-overlay {
	padding: 16px;
}

.category-tag {
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	width: fit-content;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.card-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: left;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-small .card-title {
	font-size: 18px;
	margin-bottom: 8px;
}

.card-meta {
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.9;
	gap: 7px;
}

.author-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-nav:hover {
	background: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav.prev {
	left: 20px;
}

.slider-nav.next {
	right: 20px;
}

.slider-nav.prev i,
.slider-nav.next i {
	font-size: 26px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	display: none;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.3s ease;
}

.dot.active {
	background: #333;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.card:nth-child(4),
	.card:nth-child(5) {
		display: none;
	}

	.slide {
		grid-template-columns: 1.5fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 10px;
		height: 380px;
	}
}

@media (max-width: 768px) {
	.slide {
		grid-template-columns: 1.5fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 10px;
		height: 320px;
	}

	.card-large {
		grid-row: span 2;
	}

	.card-overlay {
		padding: 18px;
	}

	.card-small .card-overlay {
		padding: 15px;
	}

	.card:nth-child(4),
	.card:nth-child(5) {
		display: none;
	}

	.card-title {
		font-size: 18px;
		line-height: 1.2;
		margin-bottom: 8px;
	}

	.card-small .card-title {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.card-meta {
		font-size: 10px;
		gap: 5px;
	}

	.author-avatar {
		width: 22px;
		height: 22px;
	}

	.category-tag {
		font-size: 10px;
		padding: 4px 8px;
		margin-bottom: 8px;
	}

	.slider-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.slider-nav.prev {
		left: 5px;
	}

	.slider-nav.next {
		right: 5px;
	}

	.slider-dots {
		margin-top: 20px;
		gap: 8px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.slide {
		grid-template-columns: 1.3fr 1fr;
		height: 240px;
		gap: 8px;
	}

	.card-overlay {
		padding: 15px;
	}

	.card-small .card-overlay {
		padding: 12px;
	}

	.card-title {
		font-size: 16px;
	}

	.card-small .card-title {
		font-size: 12px;
		line-height: 1.2;
	}

	.card-meta {
		font-size: 9px;
		gap: 4px;
	}

	.author-avatar {
		width: 18px;
		height: 18px;
	}

	.category-tag {
		font-size: 9px;
		padding: 3px 6px;
		margin-bottom: 6px;
	}

	.slider-nav {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
}

@media (max-width: 360px) {
	.slide {
		height: 210px;
		gap: 6px;
	}

	.card-overlay {
		padding: 12px;
	}

	.card-small .card-overlay {
		padding: 10px;
	}

	.card-title {
		font-size: 14px;
	}

	.card-small .card-title {
		font-size: 11px;
	}

	.card-meta {
		font-size: 8px;
	}

	.author-avatar {
		width: 16px;
		height: 16px;
	}

	.category-tag {
		font-size: 8px;
		padding: 2px 5px;
	}
}