@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,100;1,300&amp;display=swap");

body {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	font-family: "Lato", sans-serif;
	color: #5d5d5d;
}

a {
	display: inline-block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-decoration: none;
	color: #d2232a;
}

a:hover {
	text-decoration: none;
	color: #030ca4;
}

a:focus {
	text-decoration: none;
}

button {
	outline: 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}

button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.h1,
.h2,
.h3,
.h2,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #030ca4;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	text-transform: capitalize;
	padding: 0 0 15px;
	margin: 0;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
	text-transform: capitalize;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

p {
	font-size: 15px;
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.form-control {
	height: 50px;
	color: #030ca4;
	border: 1px solid #e8e8e8;
	background-color: #f2f9fc;
	border-radius: 4px;
	font-size: 14px;
	padding: 10px 20px;
	width: 100%;
}

.form-control::-webkit-input-placeholder {
	color: #495057;
}

.form-control:-ms-input-placeholder {
	color: #495057;
}

.form-control::-ms-input-placeholder {
	color: #495057;
}

.form-control::placeholder {
	color: #495057;
}

.form-control:focus {
	color: #000000;
	background-color: transparent;
	-webkit-box-shadow: unset;
	box-shadow: unset;
	outline: 0;
	border: 1px solid #d2232a;
}

.form-control:hover:focus,
.form-control:focus {
	-webkit-box-shadow: unset;
	box-shadow: unset;
}

textarea.form-control {
	height: auto;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pt-70 {
	padding-top: 70px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 50px;
}

.ptb-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mt-100 {
	margin-top: -100px;
}

.bg-color {
	background-color: #eefbfc;
}

.bg-white {
	background-color: #fff;
}

.bg-gray {
	background-color: #f5f5f5;
}

.buy-now-btn {
	left: 20px;
	z-index: 99;
	top: 50%;
	position: fixed;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 30px;
	display: inline-block;
	color: #ffffff;
	background-color: #82b440;
	padding: 10px 20px 10px 42px;
	-webkit-box-shadow: 0 1px 20px 1px #82b440;
	box-shadow: 0 1px 20px 1px #82b440;
	font-size: 13px;
	font-weight: 600;
}

.buy-now-btn img {
	top: 50%;
	left: 20px;
	width: 15px;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.buy-now-btn:hover {
	background-color: #d2232a;
	color: #ffffff;
}

/*
Default Btn Area Style*/
.default-btn {
	font-size: 16px;
	color: #ffffff;
	padding: 15px 30px;
	line-height: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	cursor: pointer;
	border-radius: 50px;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	background-color: #d2232a;
}

.default-btn::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0%;
	width: 100%;
	height: 50%;
	background-color: #d2232a;
	z-index: -1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.default-btn::after {
	content: "";
	position: absolute;
	bottom: 100%;
	right: 0%;
	width: 100%;
	height: 50%;
	background-color: #d2232a;
	z-index: -1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.default-btn.active {
	margin-left: 20px;
	color: #030ca4;
	background-color: #ffffff;
}

.default-btn:hover {
	color: #ffffff;
}

.default-btn:hover::before {
	top: 0;
	background-color: #d2232a;
}

.default-btn:hover::after {
	bottom: 0;
	background-color: #d2232a;
}

/*
Read More Area Style*/
.read-more {
	line-height: 1;
	color: #d2232a;
	font-weight: 500;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	display: block;
	font-size: 13px;
	font-weight: 600;
}

.read-more i {
	position: relative;
	top: 1px;
	right: -3px;
}

.read-more:hover {
	color: #d2232a;
}

.read-more:hover i {
	color: #d2232a;
	-webkit-animation: rotation 0.5s linear infinite;
	animation: rotation 0.5s linear infinite;
}

/*===== DEFAULT STYLE END ======*/
/*====================================================
HOME PAGE ONE STYLE
======================================================*/
/*
Header Area Style
======================================================*/
.header-area .top-header-area {
	padding: 15px 0;
	background-color: #d2232a;
}

.header-area .top-header-area .header-content-left li {
	display: inline-block;
	padding-right: 20px;
	color: #ffffff;
}

.header-area .top-header-area .header-content-left li:last-child {
	padding-right: 0;
}

.header-area .top-header-area .header-content-left li a {
	color: #ffffff;
	display: inline-block;
}

.header-area .top-header-area .header-content-left li a i {
	color: #ffffff;
	margin-right: 5px;
	font-size: 15px;
	position: relative;
	top: 2px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.header-area .top-header-area .header-content-right {
	float: right;
}

.header-area .top-header-area .header-content-right li {
	display: inline-block;
	color: #ffffff;
	padding-left: 20px;
}

.header-area .top-header-area .header-content-right li a {
	color: #ffffff;
}

.header-area .top-header-area .header-content-right li:hover a {
	color: #d2232a;
}

.header-area .top-header-area .header-content-right li:hover a i {
	color: #d2232a;
}

/*
Nav Area Style
======================================================*/
.nav-area .navbar-area .main-nav {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
}

.nav-area .navbar-area .main-nav .navbar-brand {
	max-width: 150px;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a {
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	margin-left: 0;
	margin: 0 10px;
	position: relative;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a i {
	font-size: 20px;
	line-height: 0;
	position: relative;
	top: 3px;
	right: -4px;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
	color: #d2232a;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
	color: #d2232a;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
	background-color: #ffffff;
	border: none;
	border-radius: 0;
	top: 100%;
	left: 0;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	font-size: 13px;
	color: #000;
	position: relative;
	padding: 10px 15px;
	border-bottom: 1px dashed #eeeeee;
	margin-left: 0;
	margin-right: 0;
	position: relative;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	width: 0;
	height: 1px;
	background-color: #d2232a;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
	float: right;
	top: 12px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 20px;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
	color: #d2232a;
	background-color: #f3f3f3;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover::before {
	width: 100%;
	left: 0;
	right: auto;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	color: #d2232a;
	background-color: #f3f3f3;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	left: 100%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	top: 0;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
	border-bottom: none;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
	top: 0px !important;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.nav-area .navbar-area.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	background-color: #fff;
	-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: 100% !important;
}

.navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a {
	color: #000;
}

.nav-area .others-option {
	position: relative;
	top: 4px;
}

.nav-area .others-option .get-quote {
	display: inline-block;
	position: relative;
}

.nav-area .others-option .get-quote .default-btn {
	padding: 12px 20px;
}

.nav-area .others-option .burger-menu {
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
}

.nav-area .others-option .burger-menu i {
	font-size: 40px;
	color: #ffffff;
	position: relative;
	top: -2px;
}

/*
Hero Slider Area Style
======================================================*/
.hero-slider-area {
	z-index: 1;
	position: relative;
	overflow: hidden;
	background: #708eb5;
}

.hero-slider-area .slider-item {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 800px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.hero-slider-area .slider-item.slider-item-bg-1 {
	background-image: url(../img/home-slider/1.jpg);
}

.hero-slider-area .slider-item.slider-item-bg-2 {
	background-image: url(../img/home-slider/2.jpg);
}

.hero-slider-area .slider-item.slider-item-bg-3 {
	background-image: url(../img/home-slider/3.jpg);
}

.hero-slider-area .slider-item.slider-item-bg-4 {
	background-image: url(../img/home-slider/4.jpg);
}

.hero-slider-area .slider-item.slider-item-bg-5 {
	background-image: url(../img/home-slider/5.jpg);
}

.hero-slider-area .slider-item.slider-item-bg-6 {
	background-image: url(../img/home-slider/6.jpg);
}

.hero-slider-area .slider-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: rgba(0, 55, 130, 0.5);
	z-index: -1;
}

.hero-slider-area .slider-item::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 50%;
	background-color: rgba(0, 55, 130, 0.5);
	z-index: -1;
}

.hero-slider-area .slider-item .slider-text {
	position: relative;
	max-width: 690px;
	z-index: 1;
	overflow: hidden;
}

.hero-slider-area .slider-item .slider-text span {
	color: #ffffff;
	font-size: 15px;
	display: block;
	margin-bottom: 10px;
}

.hero-slider-area .slider-item .slider-text h1 {
	font-size: 60px;
	color: #ffffff;
	margin-bottom: 30px;
}

.hero-slider-area .slider-item .slider-text p {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 35px;
}

.hero-slider-area .slider-item .video-btn {
	margin: auto;
	display: block;
}

.hero-slider-area .owl-item.active .slider-item::before {
	-webkit-animation: 3s 0.3s fadeInUp both;
	animation: 3s 0.3s fadeInUp both;
}

.hero-slider-area .owl-item.active .slider-item::after {
	-webkit-animation: 3s 0.3s fadeInDown both;
	animation: 3s 0.3s fadeInDown both;
}

.hero-slider-area .owl-item.active .slider-text.overflow-hidden {
	overflow: hidden;
}

.hero-slider-area .owl-item.active .slider-text.one h1 {
	-webkit-animation: 2s 0.2s fadeInUpBig both;
	animation: 2s 0.2s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .slider-text.one p {
	-webkit-animation: 3s 0.3s fadeInUpBig both;
	animation: 3s 0.3s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .slider-text.one .slider-btn {
	-webkit-animation: 4s 0.4s fadeInUpBig both;
	animation: 4s 0.4s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .slider-text h1 {
	-webkit-animation: 2s 0.2s fadeInLeft both;
	animation: 2s 0.2s fadeInLeft both;
}

.hero-slider-area .owl-item.active .slider-text p {
	-webkit-animation: 2s 0.2s fadeInRight both;
	animation: 2s 0.2s fadeInRight both;
}

.hero-slider-area .owl-item.active .slider-text .slider-btn {
	-webkit-animation: 2s 0.2s fadeInUpBig both;
	animation: 2s 0.2s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .one.video-btn-animat {
	-webkit-animation: 2s 0.2s zoomIn both;
	animation: 2s 0.2s zoomIn both;
}

.hero-slider-area .owl-prev i {
	background-color: transparent !important;
	border-radius: 50%;
	border: 1px solid #ffffff;
}

.hero-slider-area .owl-prev i:hover {
	border-color: #d2232a;
}

.hero-slider-area .owl-next i {
	background-color: transparent !important;
	border-radius: 50%;
	border: 1px solid #ffffff;
}

.hero-slider-area .owl-next i:hover {
	border-color: #d2232a;
}

.hero-slider-area .owl-next {
	position: absolute;
	top: 50%;
	right: 30px;
	margin: 0 !important;
	border-radius: 0 !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.hero-slider-area .owl-next i {
	background-color: #d2232a;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 26px;
	border-radius: 4px;
}

.hero-slider-area .owl-next i:hover {
	background-color: #d2232a !important;
}

.hero-slider-area .owl-prev {
	position: absolute;
	top: 50%;
	left: 30px;
	margin: 0 !important;
	border-radius: 0 !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.hero-slider-area .owl-prev i {
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 26px;
	border-radius: 4px;
}

.hero-slider-area .owl-prev i:hover {
	background-color: #d2232a !important;
}

.hero-slider-area:hover .owl-prev {
	opacity: 1;
}

.hero-slider-area:hover .owl-next {
	opacity: 1;
}

.hero-slider-area .owl-theme .owl-nav {
	margin-top: 0 !important;
}

.hero-slider-area .owl-theme .owl-nav [class*="owl-"]:hover {
	background-color: transparent;
}

.hero-slider-area .shape {
	position: absolute;
	bottom: -2px;
	left: 0;
	z-index: 1;
}

/*
Feature Area Style
======================================================*/
.feature-area {
	margin-top: -100px;
	position: relative;
	z-index: 1;
}

.feature-area .feature-wrap {
	background-color: #d2232a;
	border-radius: 10px;
}

.feature-area .feature-wrap .single-feature {
	padding: 28px;
	position: relative;
	padding-left: 75px;
}

.feature-area .feature-wrap .single-feature i {
	font-size: 45px;
	color: #ffffff;
	position: absolute;
	left: 20px;
	top: 14px;
}

.feature-area .feature-wrap .single-feature h3 {
	color: #ffffff;
	color: #ffffff;
}

.feature-area .feature-wrap .single-feature p {
	color: #ffffff;
}

.feature-area .hot-line {
	text-align: center;
	background-color: #d2232a;
	padding: 20px;
	border-radius: 10px;
}

.feature-area .hot-line span {
	color: #ffffff;
	font-size: 15px;
	display: block;
	margin-bottom: 5px;
}

.feature-area .hot-line h3 {
	color: #ffffff;
	margin-bottom: 0;
}

.feature-area .hot-line a {
	color: #ffffff;
	font-size: 25px;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
}

.feature-area .hot-line a:hover {
	color: #d2232a;
}

/*
About Area Style
======================================================*/
.about-content {
	margin-top: -8px;
	margin-bottom: -8px;
}

.about-content span {
	color: #d2232a;
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.about-content h2 {
	font-size: 40px;
}

.about-content p {
	margin-bottom: 10px;
}

.about-content ul {
	margin-top: 14px;
}

.about-content ul li {
	font-weight: 600;
	font-size: 16px;
	position: relative;
	padding-left: 32px;
	margin-bottom: 15px;
}

.about-content ul li:last-child {
	margin-bottom: 0;
}

.about-content ul li i {
	color: #d2232a;
	position: absolute;
	top: 5px;
	left: 0;
	font-size: 20px;
}

.about-content .block-content {
	background-color: #f6fcfe;
	padding: 20px;
	margin-top: 20px;
}

.about-content .default-btn {
	margin-top: 30px;
}

.about-img {
	border: 10px solid #030ca4;
	border-radius: 50%;
	position: relative;
}

.about-img .about-child {
	position: absolute;
	bottom: 0;
	left: -20px;
	border: 10px solid #030ca4;
	border-radius: 50%;
}

.about-img .about-child img {
	border-radius: 50%;
	padding: 5px;
}

.about-img img {
	border-radius: 50%;
	padding: 5px;
	min-width: 320px;
	min-height: 320px;
	object-fit: cover;

}

@media screen and (max-width: 360px) {
	.about-img img {
		min-width: 270px;
		min-height: 270px;
	}
}

/*
Services Area Style
======================================================*/
.single-services {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	border-radius: 4px;
	padding: 15px;
	position: relative;
	z-index: 1;
}

.single-services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #d2232a;
	z-index: -1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border-radius: 4px;
}

.single-services img {
	border-radius: 4px;
}

.single-services .gallery-popup {
	text-align: center;
	display: block;
}

.single-services .gallery-popup img {
	height: 250px;
	object-fit: cover;
}

.single-services .services-content {
	padding: 15px;
	position: relative;
	padding-top: 30px;
}

.single-services .services-content h3 {
	font-size: 24px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-services .services-content p {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-services .services-content span {
	position: absolute;
	top: -15px;
	right: 30px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	color: #030ca4;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	font-size: 18px;
	background-color: #ffffff;
}

.single-services:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.single-services:hover::before {
	height: 100%;
	bottom: 0;
	top: auto;
}

.single-services:hover .services-content h3 {
	color: #ffffff;
}

.single-services:hover .services-content p {
	color: #ffffff;
}

.single-services:hover .services-content .read-more {
	color: #fff;
}

.single-services:hover .services-content .read-more i {
	color: #fff;
}

.services-area .single-services {
	min-height: calc(100% - 30px);
}

/*
Prevent Area Style
======================================================*/
.prevent-content {
	margin-top: -8px;
	margin-bottom: -8px;
}

.prevent-content span {
	color: #d2232a;
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.prevent-content h2 {
	font-size: 40px;
	margin-bottom: 25px;
}

.prevent-content ul {
	margin-top: 30px;
}

.prevent-content h4 {
	color: #030ca4;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 1.4;
	padding-bottom: 15px;
}

.prevent-content ul li {
	position: relative;
	padding-left: 50px;
	margin-bottom: 30px;
}

.prevent-content ul li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 20px;
	height: 20px;
	background-color: #d2232a;
}

.prevent-content ul li::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background-color: #0103e7;
	z-index: -1;
}

.prevent-img {
	border: 10px solid #030ca4;
	border-radius: 50%;
	position: relative;
}

.prevent-img .prevent-child {
	position: absolute;
	bottom: 0;
	left: -20px;
	border: 10px solid #030ca4;
	border-radius: 50%;
	-webkit-animation: rotation 30s linear infinite;
	animation: rotation 30s linear infinite;
}

.prevent-img .prevent-child img {
	border-radius: 50%;
	padding: 5px;
}

.prevent-img img {
	border-radius: 50%;
	padding: 5px;
}

.prevent-content-home {
	margin-top: -8px;
	margin-bottom: -8px;
	background-color: #d2232a;
	margin-right: -80px;
	padding: 50px;
	z-index: 1;
	position: relative;
}

.prevent-content-home h2 {
	font-size: 40px;
	margin-bottom: 10px;
	color: #ffffff;
}

.prevent-content-home p {
	color: #ffffff;
}

/*
Process Area Style
======================================================*/
.single-process {
	text-align: center;
	padding: 30px;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}

.single-process img {
	max-width: 70px;
	margin-bottom: 22px;
}

.single-process h3 {
	margin-bottom: 15px;
}

.single-process p {
	margin-bottom: 18px;
}

.single-process span {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: #d2232a;
	border-radius: 50%;
	color: #ffffff;
	font-weight: 600;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-process:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.single-process:hover span {
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	border-radius: 0 0 0 50px;
	font-size: 20px;
	line-height: 60px;
}

/*
Project Area Style
======================================================*/
.project-area {
	position: relative;
	overflow: hidden;
}

.project-area .owl-next {
	position: absolute;
	top: 50%;
	right: 30px;
	margin: 0 !important;
	border-radius: 0 !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	-webkit-transform: translateY(-50px);
	transform: translateY(-50px);
}

.project-area .owl-next i {
	background-color: #d2232a;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 26px;
	border-radius: 50%;
}

.project-area .owl-next i:hover {
	background-color: #d2232a !important;
}

.project-area .owl-prev {
	position: absolute;
	top: 50%;
	left: 30px;
	margin: 0 !important;
	border-radius: 0 !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	-webkit-transform: translateY(-50px);
	transform: translateY(-50px);
}

.project-area .owl-prev i {
	background-color: #d2232a;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 26px;
	border-radius: 50%;
}

.project-area .owl-prev i:hover {
	background-color: #d2232a !important;
}

.project-area:hover .owl-prev {
	opacity: 1;
}

.project-area:hover .owl-next {
	opacity: 1;
}

.project-area .owl-theme .owl-nav {
	margin-top: 0 !important;
}

.project-area .owl-theme .owl-nav [class*="owl-"]:hover {
	background-color: transparent;
}

.project-area .shape {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

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

.single-project img {
	border-radius: 4px;
}

.single-project .project-content {
	background-color: #d2232a;
	position: relative;
	padding: 30px;
	border-radius: 30px;
	max-width: 350px;
	margin: -60px auto 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-project .project-content h3 a {
	color: #ffffff;
}

.single-project .project-content h3:hover a {
	color: #d2232a;
}

.single-project .project-content span {
	color: #d2232a;
}

.single-project .project-content i {
	position: absolute;
	top: 50%;
	right: 30px;
	background-color: #ffffff;
	color: #030ca4;
	width: 30px;
	height: 30px;
	line-height: 31px;
	text-align: center;
	border-radius: 50%;
	font-size: 25px;
	-webkit-transform: translateY(-12px);
	transform: translateY(-12px);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-project .project-content i:hover {
	background-color: #d2232a;
	color: #ffffff;
}

.single-project:hover .project-content {
	max-width: 100%;
	border-radius: 0 0 30px 30px;
}

/*
Product Area Style
======================================================*/
.single-product {
	text-align: center;
	margin-bottom: 30px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-product .product-content {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
}

.single-product .product-content h3 {
	margin-bottom: 10px;
}

.single-product .product-content h3:hover a {
	color: #d2232a;
}

.single-product .product-content ul li {
	display: inline-block;
	padding: 0 10px;
	font-weight: 600;
	font-size: 16px;
	color: #d2232a;
}

.single-product .product-content ul li del {
	color: #030ca4;
	font-weight: 500;
}

.single-product .product-img {
	position: relative;
	overflow: hidden;
}

.single-product .product-img .default-btn {
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 150px;
}

.single-product:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.single-product:hover .product-img .default-btn {
	bottom: 20px;
}

/*
Appointment Area Style
======================================================*/
.appointment-area {
	background-image: url(../img/appointment-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

.appointment-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #030ca4;
	opacity: 0.9;
}

.appointment-here-form {
	position: relative;
	z-index: 1;
}

.appointment-here-form h2 {
	font-size: 40px;
	margin-bottom: 40px;
	text-align: center;
}

.appointment-here-form span {
	text-align: center;
	display: block;
}

.appointment-here-form label {
	font-weight: 600;
	font-size: 15px;
	color: #ffffff;
}

.appointment-here-form .form-group {
	position: relative;
	margin-bottom: 30px;
}

.appointment-here-form .form-group i {
	position: absolute;
	top: 17px;
	right: 20px;
	line-height: 1;
	font-size: 18px;
	color: #d2232a;
}

.appointment-here-form .form-group .form-control {
	padding: 10px 20px;
	border: 1px dashed #ffffff;
	color: #ffffff;
	border-radius: 50px !important;
	background-color: rgba(255, 255, 255, 0.2);
}

.appointment-here-form .form-group .form-control::-webkit-input-placeholder {
	color: #ffffff;
}

.appointment-here-form .form-group .form-control:-ms-input-placeholder {
	color: #ffffff;
}

.appointment-here-form .form-group .form-control::-ms-input-placeholder {
	color: #ffffff;
}

.appointment-here-form .form-group .form-control::placeholder {
	color: #ffffff;
}

.appointment-here-form .default-btn {
	display: block;
	margin: 15px auto 0;
	padding: 20px 85px;
}

.appointment-here-form .nice-select {
	height: 50px;
	width: 100%;
	line-height: 48px;
	font-size: 15px;
	margin-bottom: 30px;
	padding-left: 20px;
	border: 1px dashed #ffffff;
	color: #ffffff;
	border-radius: 50px;
	background-color: rgba(255, 255, 255, 0.2);
}

.appointment-here-form .nice-select span {
	text-align: left;
}

.appointment-here-form .nice-select::after {
	height: 8px;
	width: 8px;
	border-color: #d2232a;
	right: 23px;
}

.appointment-here-form .nice-select.open .list {
	height: 250px;
	overflow-y: scroll;
}

.appointment-here-form .nice-select .list {
	background-color: #d2232a;
}

.table-condensed {
	border-collapse: collapse;
	width: 350px;
	text-align: center;
}

.table-condensed .prev {
	background-color: #f2f9fc;
	border-radius: 4px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.table-condensed .prev:hover {
	background-color: #d2232a;
	color: #ffffff;
}

.table-condensed .next {
	background-color: #f2f9fc;
	border-radius: 4px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.table-condensed .next:hover {
	background-color: #d2232a;
	color: #ffffff;
}

.table-condensed .day {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
	transition: all 0.5s;
	border-radius: 4px;
	font-size: 14px;
}

.table-condensed .day:hover {
	background-color: #d2232a;
	color: #ffffff;
}

/*
Blog Area Style
======================================================*/
.single-blog {
	margin-bottom: 30px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
}

.single-blog img {
	width: 100%;
}

.single-blog .blog-content {
	margin-top: 25px;
}

.single-blog .blog-content ul {
	line-height: 1;
	margin-bottom: 10px;
}

.single-blog .blog-content ul li {
	display: inline-block;
	color: #78a9e3;
	border-right: 1px solid #78a9e3;
	line-height: 1;
	padding: 0 10px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-blog .blog-content ul li:last-child {
	border-right: none;
	padding-right: 0;
}

.single-blog .blog-content ul li:first-child {
	padding-left: 0;
}

.single-blog .blog-content ul li a {
	color: #78a9e3;
}

.single-blog .blog-content ul li a:hover {
	color: #d2232a;
}

.single-blog .blog-content h3 {
	margin-bottom: 15px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	line-height: 1.5;
}

.single-blog .blog-content p {
	margin-bottom: 15px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	margin-top: -8px;
}

.single-blog:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.single-blog:hover .blog-content a h3 {
	color: #d2232a;
}

.single-blog:hover .blog-content .read-more {
	color: #d2232a;
}

.single-blog:hover .blog-content .read-more i {
	color: #d2232a;
}

/*
Footer Top Area Style
======================================================*/
.footer-top-area {
	background-image: url(../img/footer-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
}

.footer-top-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #d2232a;
	opacity: 0.9;
	z-index: -1;
}

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

.single-widget img {
	max-width: 150px;
	margin-bottom: 30px;
}

.single-widget h3 {
	font-size: 22px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	display: inline-block;
	color: #ffffff;
	position: relative;
}

.single-widget h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #ffffff;
}

.single-widget p {
	margin-bottom: 0;
	color: #ffffff;
}

.single-widget ul li {
	color: #ffffff;
	margin-bottom: 8px;
	font-size: 15px;
}

.single-widget ul li:last-child {
	margin-bottom: 0;
}

.single-widget ul li span {
	color: #ffffff;
}

.single-widget ul li a {
	color: #ffffff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.single-widget ul li a i {
	display: inline-block;
	margin-right: 2px;
	font-size: 18px;
	color: #d2232a;
	position: relative;
	top: 3px;
}

.single-widget ul li a:hover {
	-webkit-transform: translateX(2px);
	transform: translateX(2px);
}

.single-widget .social-area {
	margin-top: 20px;
}

.single-widget .social-area ul {
	line-height: 1;
}

.single-widget .social-area ul li {
	display: inline-block;
}

.single-widget .social-area ul li a {
	margin-right: 5px;
	width: 30px;
	height: 30px;
	line-height: 34px;
	background-color: #d2232a;
	border-radius: 4px;
	text-align: center;
	border-radius: 50%;
}

.single-widget .social-area ul li a i {
	color: #ffffff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	margin-right: 0;
	font-size: 18px;
	top: 0;
}

.single-widget .social-area ul li a:hover {
	border-color: #d2232a;
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}

.single-widget .social-area ul li a:hover i {
	color: #ffffff;
}

.single-widget.service ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.single-widget.service ul li {
	width: 50%;
	padding: 0 10px;
}

.single-widget.contact ul li a i {
	position: absolute;
	top: 4px;
	left: 0;
	color: #d2232a;
	font-size: 20px;
}

.single-widget.contact ul li span {
	display: block;
	font-weight: 600;
}

/*
Footer Bottom Area Style
======================================================*/
.footer-bottom-area {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0 10px;
}

.footer-bottom-area .copy-right {
	text-align: center;
}

.footer-bottom-area .copy-right p {
	text-transform: capitalize;
	margin-bottom: 0;
	color: #ffffff;
}

.footer-bottom-area .copy-right p i {
	position: relative;
	top: 1px;
}

.footer-bottom-area .copy-right p a {
	color: #ffffff;
}

.footer-bottom-area .copy-right p a:hover {
	color: #d2232a;
}

/*
Sidebar Area Style
======================================================*/
.sidebar-modal {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	overflow: hidden;
	text-align: center;
}

.sidebar-modal .sidebar-modal-inner {
	position: absolute;
	right: -100%;
	top: 0;
	width: 30%;
	overflow-y: scroll;
	height: 100%;
	background-color: #ffffff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 1;
	padding-top: 70px;
	padding-bottom: 70px;
	padding-left: 40px;
	padding-right: 40px;
}

.sidebar-modal .sidebar-modal-inner .close-btn {
	display: inline-block;
	position: absolute;
	right: 35px;
	top: 20px;
	font-size: 20px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
	width: 30px;
	height: 30px;
	line-height: 32px;
	background-color: #030ca4;
	color: #ffffff;
	text-align: center;
	border-radius: 50%;
}

.sidebar-modal .sidebar-modal-inner .close-btn:hover {
	color: #ffffff;
	background-color: #d2232a;
}

.sidebar-modal .sidebar-about-area {
	margin-bottom: 40px;
}

.sidebar-modal .sidebar-about-area .title h2 {
	margin-bottom: 0;
	font-size: 24px;
}

.sidebar-modal .sidebar-about-area .title p {
	margin-top: 15px;
	font-size: 15px;
}

.sidebar-modal .sidebar-instagram-feed {
	margin-bottom: 40px;
}

.sidebar-modal .sidebar-instagram-feed h2 {
	margin-bottom: 25px;
	font-size: 24px;
}

.sidebar-modal .sidebar-instagram-feed ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 0;
	margin-top: -10px;
}

.sidebar-modal .sidebar-instagram-feed ul li {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
}

.sidebar-modal .sidebar-instagram-feed ul li a {
	display: block;
	position: relative;
}

.sidebar-modal .sidebar-instagram-feed ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}

.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
	opacity: 0.5;
	visibility: visible;
}

.sidebar-modal .sidebar-contact-area .contact-info {
	text-align: center;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 {
	margin-bottom: 0;
	font-size: 24px;
	text-transform: lowercase;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a {
	display: inline-block;
	color: #d2232a;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:hover {
	color: #5d5d5d;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:not(:first-child) {
	color: #5d5d5d;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:not(:first-child):hover {
	color: #d2232a;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 span {
	display: block;
	color: #5d5d5d;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social {
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 20px;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li {
	display: inline-block;
	margin: 0 1px;
	padding-left: 0;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a {
	width: 35px;
	height: 35px;
	line-height: 34px;
	border: 1px solid #dadada;
	border-radius: 50%;
	color: #5d5d5d;
	display: block;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a i {
	font-size: 14px;
}

.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a:hover {
	color: #ffffff;
	border-color: #d2232a;
	background-color: #d2232a;
}

.sidebar-modal.active {
	opacity: 1;
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.9);
}

.sidebar-modal.active .sidebar-modal-inner {
	right: 0;
}

/*
Banner Area Style
======================================================*/
.main-banner-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 800px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	background-image: url(../img/home-banner/1.jpg);
}

.main-banner-area::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #030ca4;
	opacity: 0.6;
	z-index: -1;
}

.main-banner-area .banner-text {
	position: relative;
	max-width: 690px;
	z-index: 1;
	overflow: hidden;
}

.main-banner-area .banner-text h1 {
	font-size: 60px;
	color: #ffffff;
	margin-bottom: 30px;
}

.main-banner-area .banner-text p {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 35px;
}

.main-banner-area .video-btn {
	margin: auto;
	display: block;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/*
Response Time Area Style
======================================================*/
.response-wrap {
	background-color: #d2232a;
	text-align: center;
	padding: 50px;
	max-width: 900px;
	margin: auto;
	border-radius: 4px;
	margin-top: -70px;
	position: relative;
	z-index: 1;
}

.response-wrap h3 {
	color: #ffffff;
}

.response-wrap h3 a {
	color: #ffffff;
	margin-left: 50px;
}

.response-wrap h3 a:hover {
	color: #d2232a;
}

.response-wrap .shape {
	position: absolute;
	right: 0;
	top: 0;
	max-width: 130px;
	opacity: 0.5;
	z-index: -1;
}

/*
Prevent Area Style
======================================================*/
.important-content {
	margin-top: -8px;
	margin-bottom: -8px;
	background-color: #d2232a;
	margin-right: -80px;
	padding: 50px;
	z-index: 1;
	position: relative;
}

.important-content span {
	color: #d2232a;
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.important-content h2 {
	font-size: 40px;
	margin-bottom: 25px;
	color: #ffffff;
}

.important-content p {
	color: #ffffff;
}

.important-content .default-btn {
	margin-top: 20px;
}

/*
important Area Style
======================================================*/
.important-area {
	background-color: #f5f5f5;
	overflow: hidden;
	position: relative;
}

.important-area .important-img {
	background-image: url(../img/prevent-bg-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
}

.important-area .pr-0 {
	padding-right: 0;
}

.important-content {
	max-width: 620px;
	margin-left: auto;
}

/*
Counter Area Style
======================================================*/
.counter-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 100px;
	padding-bottom: 70px;
	margin-left: 30px;
}

.counter-wrap .single-counter {
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	margin-bottom: 30px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
	position: relative;
}

.counter-wrap .single-counter p {
	color: #d2232a;
	line-height: 1;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 600;
}

.counter-wrap .single-counter h2 {
	color: #d2232a;
	line-height: 1;
	font-size: 40px;
	margin-top: -8px;
	margin-bottom: 10px;
}

.counter-wrap .single-counter:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.counter-wrap .single-counter:hover i {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

/*
FAQ Area CSS
======================================================*/
.faq-accordion .accordion {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
	border-radius: 5px;
	display: block;
	background-color: #ffffff;
	margin-bottom: 15px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
	padding: 20px 60px 17px 25px;
	color: #030ca4;
	text-decoration: none;
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 600;
}

.faq-accordion .accordion .accordion-title span {
	color: #d2232a;
	display: block;
}

.faq-accordion .accordion .accordion-title i {
	position: absolute;
	right: 25px;
	top: 23px;
	font-size: 25px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-content {
	display: none;
	position: relative;
	margin-top: -5px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
}

.faq-accordion .accordion .accordion-content p {
	line-height: 1.8;
}

.faq-accordion .accordion .accordion-content.show {
	display: block;
}

/*
Client Area Style
======================================================*/
.single-client {
	background-color: #f2fbfd;
	padding: 30px;
	margin-top: 30px;
	position: relative;
	text-align: center;
}

.single-client img {
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	border-radius: 4px;
	margin: auto;
}

.single-client p {
	margin-top: 20px;
}

.single-client ul {
	line-height: 1;
	margin-bottom: 5px;
	margin-top: 20px;
}

.single-client ul li {
	display: inline-block;
}

.single-client ul li i {
	color: #d2232a;
}

.single-client h3 {
	margin-bottom: 0;
}

.single-client .quate {
	position: absolute;
	right: 30px;
	bottom: 30px;
	line-height: 1;
	font-size: 50px;
	opacity: 0.1;
}

.client-area .owl-carousel .owl-item img {
	display: block;
	width: auto;
}

.client-area.client-page .single-client img {
	position: unset;
}

.client-area.client-page .page-navigation-area {
	margin: 40px auto 0;
}

/* ===============================

Page Title Area Style
===================================*/
.page-title-area {
	position: relative;
	overflow: hidden;
	padding-top: 240px;
	padding-bottom: 150px;
	text-align: center;
	background-image: url("../img/page-banner.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	z-index: 1;
	background-attachment: fixed;
}

.page-title-area .shape {
	position: absolute;
	bottom: -2px;
}

.page-title-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	background-color: #030ca4;
	z-index: -1;
}

.page-title-area .page-title-content h2 {
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
}

.page-title-area .page-title-content ul {
	padding-left: 0;
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: 0;
}

.page-title-area .page-title-content ul li {
	display: inline-block;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	padding-right: 10px;
	padding-left: 10px;
	color: #ffffff;
}

.page-title-area .page-title-content ul li::before {
	content: "/";
	position: absolute;
	top: 0;
	right: -7px;
	width: 10px;
	height: 10px;
}

.page-title-area .page-title-content ul li:last-child::before {
	display: none;
}

.page-title-area .page-title-content ul li a {
	color: #ffffff;
}

.page-title-area .page-title-content ul li a:hover {
	color: #d2232a;
}

.page-title-area .page-title-content ul .active {
	color: #d2232a;
}

/*
Contact Area Style
=====================================================*/
.contact-area .section-title {
	margin-bottom: 30px;
}

.contact-area .section-title h2 {
	font-size: 30px;
}

.contact-area .contact-wrap {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 40px;
	text-align: center;
}

.contact-area .contact-wrap .form-group {
	margin-bottom: 30px;
}

.contact-area .contact-wrap .text-danger {
	color: #dc3545 !important;
	margin-top: 30px;
}

.contact-area .contact-wrap .text-success {
	color: #28a745 !important;
}

.contact-area .contact-wrap .list-unstyled {
	text-align: left;
	margin-top: 10px;
	color: #dc3545 !important;
}

.contact-area .quick-contact h3 {
	font-size: 28px;
	margin-bottom: 20px;
	margin-top: -4px;
}

.contact-area .quick-contact ul {
	display: flex;
	flex-wrap: nowrap;
	gap: 15px;
}

.contact-area .quick-contact ul li {
	width: 33%;
	font-size: 18px;
	position: relative;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 15px;
	background-color: #d2232a;
	padding: 20px 30px;
	margin-bottom: 0;
}

.contact-area .quick-contact ul li:last-child {
	margin-bottom: 0;
}

.contact-area .quick-contact ul li i {
	position: absolute;
	left: 25px;
	top: 23px;
	font-size: 30px;
}

.contact-area .quick-contact ul li span {
	display: block;
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 10px;
}

.contact-area .quick-contact ul li a {
	display: block;
	font-weight: 400;
	font-size: 15px;
	color: #ffffff;
}

.single-contact-map iframe {
	height: 450px;
	width: 100%;
	margin-bottom: -10px;
}

.project-page .container-fluid {
	max-width: 1500px;
}

@media screen and (max-width: 556px) {
	.contact-area .quick-contact ul {

		flex-direction: column;
	}

	.contact-area .quick-contact ul li {
		width: 100%;
	}
}

/*
Preloader Area Style*/
.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	overflow: hidden;
	z-index: 9999;
}

.loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #d2232a;
	z-index: 10;
}

.loader-wrapper .loader-section.section-left {
	left: 0;
}

.loader-wrapper .loader-section.section-right {
	right: 0;
}

.loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #16a085;
	-webkit-animation: spin 1.7s linear infinite;
	animation: spin 1.7s linear infinite;
	z-index: 11;
}

.loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #e74c3c;
	-webkit-animation: spin-reverse 0.6s linear infinite;
	animation: spin-reverse 0.6s linear infinite;
}

.loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f9c922;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

.loaded .loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}

.loaded .loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin-reverse {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes spin-reverse {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

/*
Go Top Style*/
.go-top {
	position: fixed;
	cursor: pointer;
	top: 93%;
	right: -10%;
	background-color: #d2232a;
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.9s;
	transition: 0.9s;
}

.go-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 20px;
}

.go-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}

.go-top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #d2232a;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.go-top:hover {
	color: #ffffff;
	background-color: #030ca4;
}

.go-top:hover::before {
	opacity: 1;
	visibility: visible;
}

.go-top:hover i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}

.go-top:hover i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}

.go-top:focus {
	color: #ffffff;
}

.go-top:focus::before {
	opacity: 1;
	visibility: visible;
}

.go-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}

.go-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}

.go-top.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	right: 3%;
	top: 93%;
}

/*
Section Title Area Style*/
.section-title {
	max-width: 660px;
	margin: -8px auto 30px;
	text-align: center;
	position: relative;
}

.section-title span {
	color: #d2232a;
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.section-title h2 {
	font-size: 40px;
	margin-bottom: 15px;
	position: relative;
	display: block;
	text-transform: capitalize;
}

.section-title h2:last-child {
	margin-bottom: 0;
}

.section-title.white-title span {
	color: #ffffff;
}

.section-title.white-title h2 {
	color: #ffffff;
}

.section-title.white-title p {
	color: #ffffff;
}

/* main-section */
.main-section {
	padding: 50px 0;
}

/* investors-section */
.investors-accordion {
	margin: 20px 0;
}

.investors-section .sidebar-list-item h5 {
	background: #030ca4;
	color: #fff;
	padding: 15px;
	margin: 0;
}

.investors-section .sidebar-list-item ul {
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.5);
	padding: 5px 0;
}

.investors-section .sidebar-list-item li a {
	padding: 8px 15px;
	color: #000;
	width: 100%;
	display: flex;
	align-items: center;
}

.investors-section .sidebar-list-item li a .fa {
	padding-right: 10px;
}

.investors-section .sidebar-list-item li.active a,
.investors-section .sidebar-list-item li:hover a {
	background: #d2232a;
	color: #fff;
}

.pdf-download li:not(:last-child) {
	margin-bottom: 10px;
}

.pdf-download li a {
	display: flex;
	align-items: center;
	color: #000;
	font-size: 16px;
}

.pdf-download li a:hover {
	color: #d2232a;
}

.pdf-download li span:first-child {
	padding-right: 10px;
	font-size: 20px;
	color: #d2232a;
}

.investors-section .table-data {
	overflow-x: auto;
	margin: 30px;
}

.investors-section .table-data table {
	width: 100%;
	margin-bottom: 20px;
}

.investors-section .table-data td,
.investors-section .table-data th {
	border: 1px solid #999;
	padding: 5px 10px;
}

.investors-section .table-data td strong {
	color: #000;
}

/* accreditations-section */
.accreditations-section .single-blog {
	-webkit-box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
	box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
	background-color: #ffffff;
	padding: 30px;
	margin-top: 0;
	text-align: center;
}

.accreditations-section .single-blog img {
	height: 200px;
	width: auto;
	object-fit: cover;
}

/* recruitment-advt */
.recruitment-advt table {
	border-radius: 5px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
	box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}

.recruitment-advt table th {
	font-size: 16px;
}

.recruitment-advt table td,
.recruitment-advt table th {
	padding: 15px 20px;
}

.recruitment-advt table tr {
	border-bottom: 1px solid #eee;
}

.recruitment-advt table a {
	text-decoration: underline;
}

/* Responsive*/
@media only screen and (max-width: 767px) {
	.ptb-100 {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.pt-100 {
		padding-top: 50px;
	}

	.pb-100 {
		padding-bottom: 50px;
	}

	.pt-70 {
		padding-top: 20px;
	}

	.pb-70 {
		padding-bottom: 20px;
	}

	p {
		font-size: 14px;
	}

	h3 {
		font-size: 18px;
	}

	.default-btn {
		padding: 13px 20px;
		font-size: 15px;
	}

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

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

	.header-area .top-header-area {
		text-align: center;
	}

	.header-area .top-header-area .header-content-left li {
		padding-right: 0;
	}

	.header-area .top-header-area .header-content-right {
		float: unset;
	}

	.footer-top-area .single-widget img {
		max-width: 115px;
	}

	.hero-slider-area .slider-item {
		height: 100%;
		padding-top: 135px;
		padding-bottom: 70px;
	}

	.hero-slider-area .slider-item .slider-text {
		text-align: center;
	}

	.hero-slider-area .slider-item .slider-text h1 {
		font-size: 35px;
		margin-bottom: 20px;
	}

	.hero-slider-area .slider-item .slider-text p {
		margin-bottom: 30px;
		font-size: 14px;
	}

	.hero-slider-area .slider-item .slider-text .slider-btn {
		margin-bottom: 30px;
	}

	.hero-slider-area .shape {
		bottom: -3px;
	}

	.hero-slider-area .owl-prev {
		top: 90%;
	}

	.hero-slider-area .owl-next {
		top: 90%;
	}

	.feature-area {
		margin-top: 0;
		padding-top: 50px;
	}

	.feature-area .feature-wrap {
		margin-bottom: 30px;
		padding-bottom: 28px;
	}

	.feature-area .feature-wrap .single-feature {
		padding-bottom: 0;
	}

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

	.about-content h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.about-content .default-btn {
		margin-top: 20px;
	}

	.about-img .about-child {
		display: none;
	}

	.single-services .services-content {
		padding: 0;
		padding-top: 15px;
	}

	.prevent-content h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.prevent-img {
		margin-top: 10px;
		margin-bottom: 30px;
	}

	.prevent-img .prevent-child {
		display: none;
	}

	.single-process {
		padding: 15px;
	}

	.single-project .project-content {
		padding: 15px;
	}

	.single-project .project-content i {
		right: 15px;
	}

	.single-widget h3 {
		font-size: 20px;
	}

	.main-banner-area {
		height: 100%;
		padding-top: 135px;
		padding-bottom: 70px;
	}

	.main-banner-area .banner-text {
		text-align: center;
	}

	.main-banner-area .banner-text h1 {
		font-size: 35px;
		margin-bottom: 20px;
	}

	.main-banner-area .banner-text p {
		margin-bottom: 30px;
		font-size: 14px;
	}

	.main-banner-area .banner-text .banner-btn {
		margin-bottom: 30px;
	}

	.response-wrap {
		padding: 20px;
		margin-top: 50px;
	}

	.response-wrap .shape {
		display: none;
	}

	.response-wrap h3 {
		line-height: 1.6;
	}

	.important-content {
		padding: 20px;
		margin-right: 0;
		text-align: center;
	}

	.important-content h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.important-content .default-btn {
		margin-top: 10px;
	}

	.important-area .important-img {
		padding-top: 30px;
	}

	.important-area .col-lg-6.pr-0 {
		padding-right: 15px !important;
	}

	.single-counter.mb-0 {
		margin-bottom: 30px !important;
	}

	.counter-wrap {
		position: unset;
		margin-left: 0;
		margin-right: 0;
		padding: 15px;
	}

	.counter-wrap .single-counter {
		padding: 30px;
	}

	.counter-wrap .single-counter h2 {
		font-size: 25px;
	}

	.faq-img {
		margin-bottom: 30px;
	}

	.table-condensed {
		width: 100%;
	}

	.form-group.search {
		margin-top: 20px;
	}

	.block-p.page-mb {
		margin-bottom: 30px;
	}

	.page-title-area {
		padding-top: 163px;
		padding-bottom: 100px;
	}

	.scrives-item-2 .services-img img {
		width: 100%;
		margin-bottom: 30px;
	}

	.contact-area .contact-wrap {
		padding: 20px;
	}

	.contact-area .section-title h2 {
		font-size: 28px;
	}

	.sidebar-modal.active {
		display: none;
	}

	.contact-area .contact-wrap .text-danger {
		margin-top: 20px;
		font-size: 20px;
	}

	.prevent-content-home {
		margin: 0;
		padding: 20px;
	}
}

/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
	.about-img .about-child {
		display: block;
	}

	.prevent-img .prevent-child {
		display: block;
	}

	.single-product .product-content {
		padding: 15px;
	}
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.ptb-100 {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.pt-100 {
		padding-top: 50px;
	}

	.pb-100 {
		padding-bottom: 50px;
	}

	.pt-70 {
		padding-top: 20px;
	}

	.pb-70 {
		padding-bottom: 20px;
	}

	p {
		font-size: 15px;
	}

	h3 {
		font-size: 18px;
	}

	.default-btn {
		padding: 13px 20px;
		font-size: 15px;
	}

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

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

	.header-area .top-header-area {
		text-align: center;
	}

	.header-area .top-header-area .header-content-left li {
		padding-right: 0;
	}

	.hero-slider-area .slider-item {
		height: 100%;
		padding-top: 135px;
		padding-bottom: 70px;
	}

	.hero-slider-area .slider-item .slider-text {
		text-align: center;
	}

	.hero-slider-area .slider-item .slider-text h1 {
		font-size: 35px;
		margin-bottom: 20px;
	}

	.hero-slider-area .slider-item .slider-text p {
		margin-bottom: 30px;
		font-size: 15px;
	}

	.hero-slider-area .slider-item .slider-text .slider-btn {
		margin-bottom: 30px;
	}

	.hero-slider-area .shape {
		bottom: -3px;
	}

	.hero-slider-area .owl-prev {
		top: 90%;
	}

	.hero-slider-area .owl-next {
		top: 90%;
	}

	.feature-area {
		margin-top: 0;
		padding-top: 50px;
	}

	.feature-area .feature-wrap {
		margin-bottom: 30px;
		padding-bottom: 28px;
	}

	.feature-area .feature-wrap .single-feature {
		padding-bottom: 0;
	}

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

	.about-content h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.about-content .default-btn {
		margin-top: 20px;
	}

	.about-img .about-child {
		display: none;
	}

	.single-services .services-content {
		padding: 0;
		padding-top: 15px;
	}

	.prevent-content h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.prevent-img {
		margin-top: 10px;
		margin-bottom: 30px;
	}

	.prevent-img .prevent-child {
		display: none;
	}

	.single-process {
		padding: 20px;
	}

	.single-project .project-content {
		padding: 15px;
	}

	.single-project .project-content i {
		right: 15px;
	}

	.appointment-here-form .default-btn {
		display: block;
		margin: 0px auto 0;
	}

	.single-widget h3 {
		font-size: 20px;
	}

	.about-img .about-child {
		display: block;
	}

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

	.prevent-img .prevent-child {
		display: block;
	}

	.prevent-img img {
		width: 100%;
	}

	.prevent-content ul li {
		max-width: 49%;
		display: inline-block;
	}

	.main-banner-area {
		height: 100%;
		padding-top: 135px;
		padding-bottom: 70px;
	}

	.main-banner-area .banner-text {
		text-align: center;
	}

	.main-banner-area .banner-text h1 {
		font-size: 35px;
		margin-bottom: 20px;
	}

	.main-banner-area .banner-text p {
		margin-bottom: 30px;
		font-size: 14px;
	}

	.main-banner-area .banner-text .banner-btn {
		margin-bottom: 30px;
	}

	.response-wrap {
		padding: 20px;
		margin-top: 50px;
	}

	.response-wrap .shape {
		display: none;
	}

	.response-wrap h3 {
		line-height: 1.6;
	}

	.important-content {
		text-align: center;
		padding: 20px;
		margin-right: 0;
	}

	.important-content h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.important-content .default-btn {
		margin-top: 10px;
	}

	.important-area .important-img {
		padding-top: 30px;
	}

	.important-area .col-lg-6.pr-0 {
		padding-right: 15px !important;
	}

	.single-counter.mb-0 {
		margin-bottom: 30px !important;
	}

	.counter-wrap {
		position: unset;
		margin-left: 0;
		margin-right: 0;
		padding: 15px;
	}

	.counter-wrap .single-counter {
		padding: 30px;
	}

	.counter-wrap .single-counter h2 {
		font-size: 25px;
	}

	.faq-img {
		margin-bottom: 30px;
	}

	.table-condensed {
		width: 100%;
	}

	.important-content {
		max-width: unset;
		margin-left: auto;
		margin-right: auto !important;
	}

	.important-area .container-fluid {
		max-width: 720px;
	}

	.form-group.search {
		margin-top: 20px;
	}

	.block-p.page-mb {
		margin-bottom: 30px;
	}

	.page-title-area {
		padding-top: 163px;
		padding-bottom: 100px;
	}

	.quick-contact {
		margin-top: 50px;
	}

	.sidebar-modal.active {
		display: none;
	}

	.contact-area .contact-wrap .text-danger {
		margin-top: 20px;
		font-size: 20px;
	}
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.feature-area .feature-wrap .single-feature {
		padding-left: 50px;
		padding-right: 0;
	}

	.feature-area .feature-wrap .single-feature i {
		font-size: 20px;
		left: 20px;
		top: 23px;
	}

	.feature-area .hot-line h3 {
		font-size: 18px;
	}

	.about-content h2 {
		font-size: 35px;
	}

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

	.prevent-content h2 {
		font-size: 35px;
	}

	.single-process {
		padding: 20px;
	}

	.hero-slider-area .slider-item .slider-text h1 {
		font-size: 56px;
	}

	.counter-wrap {
		padding: 50px;
	}

	.counter-wrap h2 {
		font-size: 35px !important;
	}

	.counter-wrap p {
		font-size: 16px !important;
	}

	.important-content h2 {
		font-size: 35px;
	}

	.counter-wrap .single-counter {
		padding: 20px;
	}
}

/* Max width 1700px */
@media only screen and (min-width: 1700px) {
	.hero-slider-area .slider-item {
		height: 100vh;
	}

	.main-banner-area {
		height: 100vh;
	}
}

/* Only Mobil Menu Max width 991px */
@media only screen and (max-width: 991px) {
	.mean-container .mean-bar {
		background-color: #25245e;
		-webkit-box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, 0.05);
		box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, 0.05);
		height: 70px;
	}

	.mean-container a.meanmenu-reveal {
		padding: 24px 15px 0 0;
		color: #ffffff;
	}

	.mean-container a.meanmenu-reveal span {
		background-color: #ffffff;
		position: relative;
		top: 8px;
		margin-top: -5px;
	}

	.mobile-nav .logo {
		top: 14px;
		max-width: 105px;
	}

	.mobile-nav.mean-container .mean-nav {
		margin-top: 70px;
	}

	.mobile-nav.mean-container .mean-nav ul li a:hover {
		color: #04b8e5;
	}

	.mobile-nav.mean-container .mean-nav ul li a.active {
		color: #04b8e5;
	}

	.nav-area .others-option {
		display: none;
	}

	.fixed-top {
		position: unset;
	}

	.mobile-nav nav .navbar-nav {
		height: 325px;
	}
}