@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
/*----------------------------------------*/
/*  01. Template default CSS
/*----------------------------------------*/
/*-- Google Font --*/
/*-- Common Style --*/
*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	position: relative;
	outline: none;
	font-family: "Poppins", sans-serif;
	visibility: visible;
	overflow-x: hidden;
	color: #6c7178;
}

body[dir="rtl"] {
	text-align: right;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Agency FB", serif;
	color: #1d2733;
}

a,
button {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	outline: 0;
}

a:focus,
button:focus {
	outline: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

p {
	font-size: 15px;
	line-height: 1.8;
}

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

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

img {
	max-width: 100%;
}

/* Section Style */
.section,
.main-wrapper {
	float: left;
	width: 100%;
}

/* Custom Container */
.custom-container {
	max-width: 1750px;
}

/* Section Padding */
.section-padding {
	padding: 3em 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.section-padding {
		padding-top: 110px;
		padding-bottom: 110px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.section-padding {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

@media (max-width: 767px) {
	.section-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.section-padding-02 {
	padding-top: 160px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.section-padding-02 {
		padding-top: 110px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.section-padding-02 {
		padding-top: 80px;
	}
}

@media (max-width: 767px) {
	.section-padding-02 {
		padding-top: 60px;
	}
}

/* Section Padding */
.section-title .sub-title {
	font-size: 15px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	color: #ff7e00;
	margin-bottom: 0;
	text-transform: uppercase;
}

.section-title .sub-title span {
	color: #045ba8;
}

@media (max-width: 575px) {
	.section-title .sub-title {
		font-size: 13px;
	}
}

.section-title .main-title {
	font-size: 2.5em;
	font-weight: 700;
	margin-bottom: 0;
	margin-top: .25em;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.section-title .main-title {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.section-title .main-title {
		font-size: 24px;
	}
}

.section-title.shape {
	position: relative;
	padding: 1em 0;
	z-index: 1;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.section-title.shape {
		padding-top: 50px;
		padding-bottom: 45px;
	}
}

@media (max-width: 575px) {
	.section-title.shape {
		padding-top: 35px;
		padding-bottom: 30px;
	}
}

.section-title.shape::before,
.section-title.shape::after {
	position: absolute;
	content: "";
	width: 180px;
	height: 180px;
	border-radius: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.04;
	z-index: -1;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.section-title.shape::before,
	.section-title.shape::after {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 575px) {
	.section-title.shape::before,
	.section-title.shape::after {
		width: 130px;
		height: 130px;
	}
}

.section-title.shape::before {
	background-color: #045ba8;
	right: 45%;
}

.section-title.shape::after {
	background-color: #ff7e00;
	left: 45%;
}

.bg-color-01 {
	background-color: #f5f9fc;
}

/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

@media (prefers-reduced-motion: reduce) {
	.overlay {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

.overlay.open {
	opacity: 0.7;
	visibility: visible;
}

.page-pagination {
	padding-top: 80px;
}

@media (max-width: 767px) {
	.page-pagination {
		padding-top: 60px;
	}
}

.page-pagination .pagination li {
	margin-right: 12px;
}

.page-pagination .pagination li:last-child {
	margin-right: 0;
}

.page-pagination .pagination li a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #1d2733;
	background-color: #f5f9fc;
	display: block;
	-webkit-transform: all 0.3s ease 0s;
	-ms-transform: all 0.3s ease 0s;
	transform: all 0.3s ease 0s;
}

.page-pagination .pagination li a.active,
.page-pagination .pagination li a:hover {
	color: #fff;
	background-color: #ff7e00;
}

/*----------------------------------------*/
/*  02. Component CSS
/*----------------------------------------*/
/*--
/*  2.1 - Button CSS
/*----------------------------------------*/
.btn {
	position: relative;
	z-index: 2;
	overflow: hidden;
}

@media (max-width: 767px) {
	.btn {
		font-size: 14px;
	}
}

.btn::before {
	width: 300px;
	height: 300px;
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	z-index: -1;
	-webkit-transition: 0.4s all linear;
	-o-transition: 0.4s all linear;
	transition: 0.4s all linear;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
}

.btn i {
	margin-left: 8px;
}

.btn:hover::before {
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
	color: #fff;
}

.btn-hover-primary:hover {
	border-color: #ff7e00;
	color: #fff;
}

.btn-hover-primary:hover::before {
	background-color: #ff7e00;
}

.btn-outline-primary {
	border: 2px solid #ff7e00;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-primary:hover {
	background: #ff7e00;
	color: #fff;
}

.btn-secondary {
	color: #fff;
}

.btn-hover-secondary:hover {
	border-color: #045ba8;
	color: #fff;
}

.btn-hover-secondary:hover::before {
	background-color: #045ba8;
}

.btn-outline-secondary {
	border: 2px solid #045ba8;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-secondary:hover {
	background: #045ba8;
	color: #fff;
}

.btn-success {
	color: #fff;
}

.btn-hover-success:hover {
	border-color: #198754;
	color: #fff;
}

.btn-hover-success:hover::before {
	background-color: #198754;
}

.btn-outline-success {
	border: 2px solid #198754;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-success:hover {
	background: #198754;
	color: #fff;
}

.btn-info {
	color: #1d2733;
}

.btn-hover-info:hover {
	border-color: #d5dae0;
	color: #fff;
}

.btn-hover-info:hover::before {
	background-color: #d5dae0;
}

.btn-outline-info {
	border: 2px solid #d5dae0;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-info:hover {
	background: #d5dae0;
	color: #1d2733;
}

.btn-warning {
	color: #1d2733;
}

.btn-hover-warning:hover {
	border-color: #ffc107;
	color: #1d2733;
}

.btn-hover-warning:hover::before {
	background-color: #ffc107;
}

.btn-outline-warning {
	border: 2px solid #ffc107;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-warning:hover {
	background: #ffc107;
	color: #1d2733;
}

.btn-danger {
	color: #fff;
}

.btn-hover-danger:hover {
	border-color: #dc3545;
	color: #fff;
}

.btn-hover-danger:hover::before {
	background-color: #dc3545;
}

.btn-outline-danger {
	border: 2px solid #dc3545;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-danger:hover {
	background: #dc3545;
	color: #fff;
}

.btn-light {
	color: #1d2733;
}

.btn-hover-light:hover {
	border-color: #f8f9fa;
	color: #1d2733;
}

.btn-hover-light:hover::before {
	background-color: #f8f9fa;
}

.btn-outline-light {
	border: 2px solid #f8f9fa;
	line-height: 61px;
	color: #fff;
}

.btn-outline-light:hover {
	background: #f8f9fa;
	color: #1d2733;
}

.btn-dark {
	color: #fff;
}

.btn-hover-dark:hover {
	border-color: #1d2733;
	color: #fff;
}

.btn-hover-dark:hover::before {
	background-color: #1d2733;
}

.btn-outline-dark {
	border: 2px solid #1d2733;
	line-height: 61px;
	color: #1d2733;
}

.btn-outline-dark:hover {
	background: #1d2733;
	color: #fff;
}

/*--
/*  2.2 - Blockquote CSS
/*----------------------------------------*/
.blockquote {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
}

@media (max-width: 575px) {
	.blockquote {
		display: block;
	}
}

.blockquote .quote {
	padding: 10px 0;
}

.blockquote p {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 24px;
	font-weight: 700 !important;
	font-family: "Agency FB", serif;
	padding-left: 60px;
	line-height: 1.58;
	color: #045ba8;
	margin-bottom: 0;
	margin-top: 0 !important;
}

@media (max-width: 767px) {
	.blockquote p {
		font-size: 18px;
		padding-left: 30px;
	}
}

@media (max-width: 575px) {
	.blockquote p {
		padding-left: 0;
		padding-top: 15px;
	}
}

/*--
/*  2.3 - Form CSS
/*----------------------------------------*/
.single-form {
	margin-top: 20px;
}

.single-form input:not([type="checkbox"]):not([type="radio"]),
.single-form textarea {
	width: 100%;
	height: 60px;
	padding: 0 30px;
	font-size: 15px;
	color: #6c7178;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid #dde1e5;
	border-radius: 30px;
	background-color: #fff;
}

.single-form
	input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder,
.single-form textarea::-webkit-input-placeholder {
	opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"]):-moz-placeholder,
.single-form textarea:-moz-placeholder {
	opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder,
.single-form textarea::-moz-placeholder {
	opacity: 1;
}

.single-form
	input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder,
.single-form textarea:-ms-input-placeholder {
	opacity: 1;
}

.single-form input:not([type="checkbox"]):not([type="radio"]) + input,
.single-form textarea + input {
	margin-top: 15px;
}

.single-form input:not([type="checkbox"]):not([type="radio"]):focus,
.single-form textarea:focus {
	border-color: #ff7e00;
	outline: none;
}

.single-form label {
	font-size: 15px;
	color: #1d2733;
	margin-bottom: 12px;
}

.single-form input[type="checkbox"] {
	display: none;
}

.single-form input[type="checkbox"] + label {
	padding-left: 22px;
	position: relative;
	cursor: pointer;
	margin-bottom: 0;
	font-size: 15px;
}

.single-form input[type="checkbox"] + label span {
	width: 14px;
	height: 14px;
	border: 1px solid #e1e1e1;
	position: absolute;
	display: block;
	top: 4px;
	left: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-form input[type="checkbox"] + label span::before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: "\f107";
	font-family: FontAwesome;
	font-size: 14px;
	line-height: 12px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	color: #fff;
	text-align: center;
}

.single-form input[type="checkbox"]:checked + label span {
	background-color: #ff7e00;
	border-color: #ff7e00;
}

.single-form input[type="checkbox"]:checked + label span::before {
	opacity: 1;
	visibility: visible;
}

.single-form textarea {
	padding-top: 15px;
	height: 250px;
	resize: none;
}

.radio input[type="radio"] {
	display: none;
}

.radio input[type="radio"] + label {
	padding-left: 20px;
	position: relative;
	font-size: 14px;
	line-height: 27px;
}

.radio input[type="radio"] + label span {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 1px solid #1d2733;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}

.radio input[type="radio"] + label span::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #1d2733;
	top: 0;
	left: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.radio input[type="radio"]:checked + label span::before {
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
}

.form-control,
.form-select,.btn,.tooltip,.popover {
	font-family: "Poppins", sans-serif;
}

.single-select2 {
	margin-top: 20px;
}

.single-select2 span {
	display: block;
}

.single-select2 span:focus {
	outline: none;
}

.single-select2 .form-select2 .select2 {
	width: 100% !important;
}

.single-select2
	.form-select2
	.select2-container--default
	.select2-selection--single {
	height: 50px;
	border-color: #d7d7d7;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	border-radius: 0;
	outline: none;
}

@media (max-width: 767px) {
	.single-select2
		.form-select2
		.select2-container--default
		.select2-selection--single {
		height: 40px;
	}
}

.single-select2
	.form-select2
	.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	width: 100%;
	line-height: 48px;
	border-radius: 0px;
	padding-left: 20px;
	padding-right: 28px;
	font-style: italic;
	font-size: 14px;
	color: #999999;
}

@media (max-width: 767px) {
	.single-select2
		.form-select2
		.select2-container--default
		.select2-selection--single
		.select2-selection__rendered {
		line-height: 38px;
	}
}

.single-select2
	.form-select2
	.select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	height: 48px;
	width: 36px;
}

.single-select2
	.form-select2
	.select2-container--default.select2-container--open
	.select2-selection--single {
	border-color: #ff7e00;
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border-color: #ebebeb;
}

.select2-container--default
	.select2-search--dropdown
	.select2-search__field:focus {
	outline: none;
}

.select2-dropdown {
	border-color: #ebebeb;
}

.select2-results__option {
	font-size: 14px;
}

.gj-picker {
	border: 1px solid #eeecec;
	padding: 10px;
}

.gj-picker div[role="navigator"] div:first-child,
.gj-picker div[role="navigator"] div:last-child {
	max-width: 42px;
}

.gj-picker table tr td.selected.gj-cursor-pointer div {
	color: #fff;
	background: #ff7e00;
}

.gj-picker table tr td.today div {
	color: #ff7e00;
}

.gj-picker table tr td div,
.gj-picker table tr th div {
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 12px;
}

/*----------------------------------------*/
/*  03. Header CSS
/*----------------------------------------*/
/*--
/*  3.1 - Header Main CSS
/*----------------------------------------*/
.header-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0px 0px 3px 2px #eee;
	z-index: 999;
}

@media (min-width: 1600px) {
	.header-container {
		max-width: 1450px;
	}
}

.header-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-logo {
	padding: .5em 1em;
}

.header-logo a img {
	width: 170px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.header-logo a img {
		width: 150px;
	}
}

@media (max-width: 575px) {
	.header-logo a img {
		width: 130px;
	}
}

.header-menu ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header-menu ul li {
	position: relative;
	padding: 0 2px;
}

.header-menu ul li a {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: #8e8e8e;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: block;
	border: 1px solid transparent;
	padding: 12px 30px;
	border-radius: 50px;
}

@media (min-width: 1200px) and (max-width: 1599px) {
	.header-menu ul li a {
		padding: 12px 25px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.header-menu ul li a {
		padding: 6px 14px;
		font-size: 15px;
	}
}

.header-menu ul li.active > a,
.header-menu ul li:hover > a {
	color: #ff7e00;
	border-color: #8e8e8e;
}

.header-menu ul li ul {
	display: block;
}

.header-menu ul li:hover > .sub-menu,
.header-menu ul li:hover > .mega-sub-menu {
	top: 100%;
	opacity: 1;
	visibility: visible;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.header-menu ul li:nth-last-of-type(2) .sub-menu li .sub-menu {
		left: auto;
		right: 100%;
	}
}

.header-menu .sub-menu {
	position: absolute;
	width: 225px;
	background-color: #fff;
	border-top: 2px solid #1d2733;
	padding: 10px 0px;
	-webkit-box-shadow: 2px 2px 20px rgba(29, 39, 51, 0.1);
	box-shadow: 2px 2px 20px rgba(29, 39, 51, 0.1);
	top: 110%;
	left: 0;
	z-index: 9;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
}

.header-menu .sub-menu li {
	padding: 0;
}

.header-menu .sub-menu li a {
	padding: 7px 20px;
	color: #1d2733;
	border: 0;
}

.header-menu .sub-menu li .sub-menu {
	top: 0px;
	left: 100%;
	opacity: 0;
	visibility: hidden;
}

.header-menu .sub-menu li.menu-item-has-children > a::after {
	content: "\e684";
	font-family: "Pe-icon-7-stroke";
	margin-left: 5px;
	font-size: 24px;
	line-height: 20px;
	display: block;
	float: right;
}

.header-menu .sub-menu li:hover > a {
	padding-left: 25px;
}

.header-menu .sub-menu li:hover .sub-menu {
	top: -12px;
	opacity: 1;
	visibility: visible;
}

.header-menu .mega-sub-menu {
	position: absolute;
	top: 110%;
	left: 0;
	right: 0;
	width: 100%;
	-webkit-box-shadow: 2px 2px 20px rgba(29, 39, 51, 0.1);
	box-shadow: 2px 2px 20px rgba(29, 39, 51, 0.1);
	background-color: #fff;
	z-index: 9;
	padding: 30px 15px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.header-menu .mega-sub-menu > li {
	width: 25%;
	padding: 0 15px;
}

.header-menu .mega-sub-menu > li.manu-banner {
	width: 50%;
	margin-top: 20px;
	position: relative;
}

.header-menu .mega-sub-menu > li.manu-banner img {
	width: 100%;
}

.header-menu .mega-sub-menu > li.manu-banner a::before {
	content: "";
	background: rgba(255, 255, 255, 0.3);
	bottom: 50%;
	top: 50%;
	left: 0;
	right: 0;
	pointer-events: none;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
}

.header-menu .mega-sub-menu > li.manu-banner a::after {
	content: "";
	background: rgba(255, 255, 255, 0.3);
	left: 51%;
	right: 50%;
	top: 0;
	bottom: 0;
	pointer-events: none;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
}

.header-menu .mega-sub-menu > li.manu-banner a:hover::before {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
	opacity: 0;
}

.header-menu .mega-sub-menu > li.manu-banner a:hover::after {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 900ms linear;
	-o-transition: all 900ms linear;
	transition: all 900ms linear;
	opacity: 0;
}

.header-menu .mega-sub-menu > li .menu-title {
	color: #1d2733;
	line-height: 1;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	display: block;
	padding-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}

.header-menu .mega-sub-menu > li .menu-title::after {
	display: none;
}

.header-menu .mega-sub-menu > li:hover > a {
	color: #ff7e00;
}

.header-menu .mega-sub-menu > li .menu-item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 20px;
}

.header-menu .mega-sub-menu > li .menu-item > li {
	padding: 0;
}

.header-menu .mega-sub-menu > li .menu-item > li > a {
	color: #6c7178;
	text-transform: capitalize;
	line-height: 32px;
	font-weight: 400;
	font-size: 14px;
	display: block;
}

.header-menu .mega-sub-menu > li .menu-item > li:hover > a {
	padding-left: 5px;
	color: #ff7e00;
}

@media (min-width: 1200px) and (max-width: 1599px) {
	.header-btn .btn {
		line-height: 50px;
		padding: 0 25px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.header-btn .btn {
		line-height: 50px;
		padding: 0 20px;
	}
}

.header-toggle .menu-toggle {
	display: inline-block;
	background: none;
	border: 0;
	padding: 0;
}

.header-toggle .menu-toggle span {
	width: 23px;
	height: 2px;
	background-color: #8e8e8e;
	display: block;
}

.header-toggle .menu-toggle span:nth-of-type(2) {
	margin: 5px 0;
}

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 2px 4px 8px rgba(29, 39, 51, 0.15);
	box-shadow: 2px 4px 8px rgba(29, 39, 51, 0.15);
	background-color: #fff;
	padding: 0;
}

@-webkit-keyframes sticky {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@keyframes sticky {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

/*--
/*  3.2 - Mobile Menu CSS
/*----------------------------------------*/
.mobile-menu {
	position: fixed;
	top: 0;
	width: 300px;
	height: 100%;
	left: -305px;
	background-color: #fff;
	z-index: 999;
	padding-top: 70px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.mobile-menu.open {
	left: 0;
}

.mobile-menu .menu-close {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 30px;
	color: #045ba8;
}

.mobile-btn {
	padding: 30px;
}

.mobile-btn .btn {
	width: 100%;
	display: block;
}

.mobile-btn .btn::before {
	width: 300px;
	height: 300px;
}

.mobile-menu-items ul {
	border-top: 1px solid #eeecec;
}

.mobile-menu-items ul li {
	position: relative;
}

.mobile-menu-items ul li a {
	display: block;
	width: 100%;
	background: none;
	text-align: left;
	padding: 8px 20px;
	border: 0;
	border-bottom: 1px solid #eeecec;
	font-size: 15px;
	color: #045ba8;
}

.mobile-menu-items ul li .mobile-menu-expand {
	position: absolute;
	right: 20px;
	top: 12px;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.mobile-menu-items ul li .mobile-menu-expand::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #045ba8;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.mobile-menu-items ul li .mobile-menu-expand::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #045ba8;
	left: 50%;
	bottom: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
	.mobile-menu-items ul li .mobile-menu-expand::after {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

.mobile-menu-items ul li.active-expand > .mobile-menu-expand::after {
	height: 0;
}

.mobile-menu-items ul li ul {
	border-top: 0;
}

.mobile-menu-items ul li ul li a {
	padding-left: 12%;
}

.mobile-menu-items ul li ul li ul li a {
	padding-left: 24%;
}

/*----------------------------------------*/
/*  04. Page CSS
/*----------------------------------------*/
/*--
/*  4.1 - Slider CSS
/*----------------------------------------*/
.slider-section {
	background-color: #2fb8ca;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.slider-section .slider-shape-01 {
	width: 660px;
	height: 660px;
	position: absolute;
	top: -110px;
	right: 18.5%;
	background-color: #fff;
	opacity: 0.02;
	border-radius: 50%;
	z-index: -1;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.slider-section .slider-shape-01 {
		width: 520px;
		height: 520px;
	}
}

@media (max-width: 575px) {
	.slider-section .slider-shape-01 {
		width: 300px;
		height: 300px;
	}
}

.slider-section .slider-shape-02 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

@media (min-width: 1200px) and (max-width: 1599px) {
	.slider-section .slider-shape-02 {
		width: 525px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.slider-section .slider-shape-02 {
		width: 425px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-section .slider-shape-02 {
		width: 50%;
		margin-left: auto;
	}
}

.single-slider {
	padding-top: 144px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.slider-left,
.slider-right {
	width: 50%;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-left,
	.slider-right {
		width: 100%;
	}
}

.slider-left {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	padding-bottom: 43px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-left {
		padding-bottom: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-images {
		padding-top: 50px;
		max-width: 480px;
		margin: 0 auto;
	}
}

.slider-content {
	width: 660px;
	height: 660px;
	background-color: #045ba8;
	padding: 30px;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	margin-left: auto;
	position: relative;
	z-index: 2;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.slider-content {
		width: 520px;
		height: 520px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.slider-content {
		width: 520px;
		height: 520px;
		margin-right: 70px;
	}
}

@media (max-width: 767px) {
	.slider-content {
		width: 500px;
		height: 500px;
	}
}

@media (max-width: 575px) {
	.slider-content {
		width: 300px;
		height: 300px;
		margin: 0 auto;
	}
}

.slider-content::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #045ba8;
	z-index: -1;
	border-radius: 50%;
}

.slider-content::after {
	position: absolute;
	content: "";
	top: 0;
	left: -16%;
	width: 100%;
	height: 100%;
	background-color: #ff7e00;
	z-index: -2;
	border-radius: 50%;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.slider-content::after {
		left: -10%;
	}
}

@media (max-width: 575px) {
	.slider-content::after {
		left: -5%;
	}
}

.slider-content .sub-title {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-content .sub-title {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.slider-content .sub-title {
		font-size: 14px;
	}
}

.slider-content .main-title {
	font-size: 60px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 0;
	margin-top: 26px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-content .main-title {
		font-size: 44px;
	}
}

@media (max-width: 575px) {
	.slider-content .main-title {
		font-size: 24px;
		margin-top: 10px;
	}
}

.slider-content .main-title strong {
	font-size: 100px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.slider-content .main-title strong {
		font-size: 80px;
	}
}

@media (max-width: 575px) {
	.slider-content .main-title strong {
		font-size: 40px;
	}
}

.slider-content .btn {
	margin-top: 60px;
	width: 225px;
}

@media (max-width: 575px) {
	.slider-content .btn {
		height: 45px;
		line-height: 41px;
		padding: 0 25px;
		width: auto;
		margin-top: 30px;
	}
}

.animation-style-01 .slider-images,
.animation-style-01 .slider-content,
.animation-style-01 .slider-content-02 {
	opacity: 0;
}

.animation-style-01.swiper-slide-active .slider-content {
	opacity: 1;
}

.animation-style-01.swiper-slide-active .slider-content .sub-title {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content .main-title {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content .btn {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-images {
	opacity: 1;
}

.animation-style-01.swiper-slide-active .slider-images img {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.slider-active .swiper-pagination {
	text-align: left;
	bottom: 60px;
	left: 70px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.slider-active .swiper-pagination {
		bottom: 40px;
		left: 50px;
	}
}

@media (max-width: 767px) {
	.slider-active .swiper-pagination {
		left: 30px;
		bottom: 20px;
	}
}

.slider-active .swiper-pagination .swiper-pagination-bullet {
	outline: none;
	background-color: #045ba8;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 1;
	width: 8px;
	height: 8px;
	display: block;
	position: relative;
	margin: 8px 0;
}

.slider-active
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #ff7e00;
}

.slider-active
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	border-color: #ff7e00;
}

/*--
/*  4.2 - Services CSS
/*----------------------------------------*/
.service-section {
	overflow: hidden;
}

.services-wrapper {
	padding-top: 50px;
}

.single-service {
	overflow: hidden;
	margin-top: 30px;
}

.single-service .service-images a {
	display: block;
}

.single-service .service-images a img {
	width: 100%;
}

.single-service .service-content {
	background-color: #f5f9fc;
	padding: 45px 40px 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.single-service .service-content {
		padding: 30px 25px 40px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.single-service .service-content {
		padding: 30px 30px 40px;
	}
}

@media (max-width: 575px) {
	.single-service .service-content {
		padding: 25px 30px 30px;
	}
}

.single-service .service-content::after,
.single-service .service-content::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 200px;
	bottom: -80px;
	right: -40px;
	background-color: #fff;
	-webkit-transform: rotate(42deg);
	-ms-transform: rotate(42deg);
	transform: rotate(42deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-service .service-content::after {
	bottom: -105px;
	right: -20px;
}

.single-service .service-content .title {
	margin-bottom: 0;
}

.single-service .service-content .title a {
	font-size: 22px;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-service .service-content .title a {
		font-size: 22px;
	}
}

.single-service .service-content p {
	margin-top: 15px;
	margin-bottom: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-service .service-content .btn {
	height: 50px;
	line-height: 46px;
	background-color: #f5f9fc;
	border: 2px solid #d5dae0;
	color: #1d2733;
	margin-top: 25px;
	padding: 0 30px;
}

.single-service .service-content .shape {
	width: 255px;
	height: 255px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.single-service .service-content .shape {
		width: 215px;
		height: 215px;
	}
}

.single-service:hover .service-content {
	background-color: #ff7e00;
}

.single-service:hover .service-content::before {
	bottom: -50px;
	right: 40px;
}

.single-service:hover .service-content::after {
	bottom: -65px;
	right: 20px;
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.single-service:hover .service-content .title a {
	color: #fff;
}

.single-service:hover .service-content p {
	color: #fff;
}

.single-service:hover .service-content .btn {
	background-color: #fff;
	border: 2px solid #fff;
	color: #1d2733;
}

.single-service:hover .service-content .shape {
	opacity: 0.12;
}

/*--
/*  4.3 - Call to Action CSS
/*----------------------------------------*/
.call-to-action-section {
	position: relative;
	z-index: 1;
}

.call-to-action-section::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 860px;
	height: 860px;
	background-color: #fff;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.45;
}

.call-to-action-title {
	text-align: center;
	margin-top: -15px;
}

.call-to-action-title .title {
	font-size: 2.5em;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.call-to-action-title .title {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.call-to-action-title .title {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.call-to-action-title .title {
		font-size: 20px;
	}
	.call-to-action-title .title br {
		display: none;
	}
}

.call-to-action-title .title span {
	font-style: italic;
	color: #ff7e00;
}

.call-to-action-wrapper {
	padding-top: 80px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.call-to-action-wrapper {
		padding-top: 50px;
	}
}

.call-to-action-video {
	height: 230px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.call-to-action-video .play {
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	font-size: 16px;
	color: #ff7e00;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
}

.call-to-action-video .play:hover {
	background-color: #045ba8;
	color: #fff;
}

.call-to-action-contact {
	background-color: #045ba8;
	height: 230px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.call-to-action-contact .cta-icon {
	position: absolute;
	top: 50%;
	left: 70px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -1;
}

.call-to-action-contact .title {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.call-to-action-contact .title {
		font-size: 28px;
	}
}

.call-to-action-contact p {
	font-size: 45px;
	color: #fff;
	font-weight: 300;
	line-height: 1.4;
	margin-top: 21px;
}

@media (max-width: 575px) {
	.call-to-action-contact p {
		font-size: 30px;
		margin-top: 11px;
	}
}

.call-to-action-btn {
	margin-top: 100px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.call-to-action-btn {
		margin-top: 60px;
	}
}

.call-to-action-section-02 {
	background-color: #045ba8;
	padding-bottom: 60px;
	padding-top: 10px;
}

.call-to-action-contact-02 {
	margin-top: 35px;
}

.call-to-action-contact-02 .title {
	font-size: 55px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.call-to-action-contact-02 .title {
		font-size: 44px;
	}
}

@media (max-width: 575px) {
	.call-to-action-contact-02 .title {
		font-size: 30px;
	}
}

.call-to-action-contact-02 .title span {
	font-size: 60px;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.call-to-action-contact-02 .title span {
		font-size: 50px;
	}
}

@media (max-width: 575px) {
	.call-to-action-contact-02 .title span {
		font-size: 30px;
	}
}

.call-to-action-btn-02 {
	text-align: right;
	margin-top: 50px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.call-to-action-btn-02 {
		text-align: left;
	}
}

/*--
/*  4.4 - Why Choose Us CSS
/*----------------------------------------*/
.why-choose-section {
	overflow: hidden;
}

.why-choose-content {
	max-width: 500px;
	margin-top: 45px;
}

.why-choose-title {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 37px;
}

.why-choose-title .sub-title {
	font-size: 15px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	color: #ff7e00;
	margin-bottom: 0;
	text-transform: uppercase;
}

.why-choose-title .sub-title span {
	color: #045ba8;
}

.why-choose-title .main-title {
	font-size: 2.5em;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.why-choose-title .main-title {
		font-size: 46px;
	}
}

@media (max-width: 767px) {
	.why-choose-title .main-title {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.why-choose-title .main-title {
		font-size: 30px;
	}
}

.why-choose-title .main-title span {
	font-weight: 700;
}

.why-choose-items .single-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px;
}

.why-choose-items .single-item .item-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 60px;
	margin-top: -4px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.why-choose-items .single-item .item-content {
		padding-left: 30px;
	}
}

.why-choose-items .single-item .item-content .title {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.why-choose-items .single-item .item-content .title {
		font-size: 22px;
	}
}

.why-choose-items .single-item .item-content .title span {
	color: #ff7e00;
}

.why-choose-items .single-item .item-content p {
	margin-top: 20px;
	margin-bottom: 0;
}

.why-choose-images {
	position: relative;
	z-index: 1;
	margin-top: 50px;
}

@media (min-width: 1600px) {
	.why-choose-images {
		right: -30px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.why-choose-images {
		width: 575px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	.why-choose-images {
		width: 470px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 575px) {
	.why-choose-images {
		width: 280px;
	}
}

.why-choose-images .choose-images {
	width: 525px;
	text-align: center;
	margin-left: auto;
	padding-right: 18px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.why-choose-images .choose-images {
		width: 450px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.why-choose-images .choose-images {
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.why-choose-images .choose-images {
		width: 280px;
	}
}

.why-choose-images .choose-images img {
	position: relative;
}

@media (max-width: 767px) {
	.why-choose-images .choose-images img {
		width: 325px;
	}
}

@media (max-width: 575px) {
	.why-choose-images .choose-images img {
		width: 215px;
	}
}

.why-choose-images .choose-shape {
	width: 525px;
	height: 525px;
	border-radius: 50%;
	background-color: #045ba8;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.why-choose-images .choose-shape {
		width: 450px;
		height: 450px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.why-choose-images .choose-shape {
		left: 0;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.why-choose-images .choose-shape {
		width: 450px;
		height: 450px;
		margin: 0 auto;
		left: 0;
	}
}

@media (max-width: 575px) {
	.why-choose-images .choose-shape {
		width: 280px;
		height: 280px;
	}
}

.why-choose-images .choose-shape::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #ff7e00;
	top: -200.5px;
	left: 0;
}

.why-choose-images .choose-arrow {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	text-align: center;
	width: 100%;
}

/*--
/*  4.5 - Cases CSS
/*----------------------------------------*/
.cases-wrapper {
	position: relative;
	padding-top: 80px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-wrapper {
		padding-top: 60px;
	}
}

.call-to-action-section .arrow-shape, .cases-wrapper .arrow-shape {
	position: absolute;
	top: -20px;
	left: -80px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-wrapper .arrow-shape {
		width: 180px;
		left: -30px;
	}
}

@media (max-width: 575px) {
	.cases-wrapper .arrow-shape {
		left: -10px;
		width: 140px;
		top: 0;
	}
}

.cases-wrapper .single-cases {
	position: relative;
	overflow: hidden;
}

.cases-wrapper .single-cases .cases-content {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 35px 40px;
	text-align: right;
	z-index: 2;
}

@media (max-width: 575px) {
	.cases-wrapper .single-cases .cases-content {
		padding: 15px 20px;
	}
}

.cases-wrapper .single-cases .cases-content .title a {
	color: #fff;
	font-size: 27px;
	font-weight: 700;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.cases-wrapper .single-cases .cases-content .title a {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.cases-wrapper .single-cases .cases-content .title a {
		font-size: 20px;
	}
}

.cases-wrapper .single-cases .cases-content .tags {
	color: #e3e6e8;
	font-size: 14px;
	font-weight: 400;
}

.cases-wrapper .single-cases .cases-content::before {
	position: absolute;
	content: "";
	width: 400px;
	height: 400px;
	background-color: #ff7e00;
	border-radius: 50%;
	bottom: -215px;
	right: -45px;
	z-index: -1;
}

@media (max-width: 767px) {
	.cases-wrapper .single-cases .cases-content::before {
		bottom: -250px;
	}
}

@media (max-width: 575px) {
	.cases-wrapper .single-cases .cases-content::before {
		width: 300px;
		height: 300px;
		bottom: -185px;
	}
}

.cases-wrapper .single-cases .cases-content::after {
	position: absolute;
	content: "";
	width: 400px;
	height: 400px;
	background-color: #045ba8;
	border-radius: 50%;
	bottom: -215px;
	right: -105px;
	z-index: -1;
}

@media (max-width: 767px) {
	.cases-wrapper .single-cases .cases-content::after {
		bottom: -250px;
	}
}

@media (max-width: 575px) {
	.cases-wrapper .single-cases .cases-content::after {
		width: 300px;
		height: 300px;
		bottom: -185px;
	}
}

.cases-wrapper .swiper-arrows {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 60px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-wrapper .swiper-arrows {
		padding-top: 30px;
	}
}

.cases-wrapper .swiper-arrows .swiper-button-next,
.cases-wrapper .swiper-arrows .swiper-button-prev {
	position: relative;
	top: 0;
	margin-top: 0;
	width: 55px;
	height: 55px;
	line-height: 51px;
	text-align: center;
	border: 2px solid #c9c9c9;
	display: block;
	left: 0;
	right: 0;
	margin: 0 10px;
	color: #323232;
	border-radius: 50%;
	font-size: 15px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	outline: none;
	opacity: 1;
}

@media (max-width: 575px) {
	.cases-wrapper .swiper-arrows .swiper-button-next,
	.cases-wrapper .swiper-arrows .swiper-button-prev {
		width: 45px;
		height: 45px;
		line-height: 41px;
	}
}

.cases-wrapper .swiper-arrows .swiper-button-next:hover,
.cases-wrapper .swiper-arrows .swiper-button-prev:hover {
	color: #045ba8;
	border-color: #045ba8;
}

.cases-wrapper .swiper-arrows .swiper-button-next::after,
.cases-wrapper .swiper-arrows .swiper-button-prev::after {
	display: none;
}

.single-cases-02 {
	position: relative;
	margin-top: 30px;
}

.single-cases-02 .cases-images a {
	display: block;
	position: relative;
	overflow: hidden;
}

.single-cases-02 .cases-images a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(34%, rgba(10, 17, 35, 0)),
		color-stop(95%, #0a1123)
	);
	background: -webkit-linear-gradient(
		top,
		rgba(10, 17, 35, 0) 34%,
		#0a1123 95%
	);
	background: -o-linear-gradient(top, rgba(10, 17, 35, 0) 34%, #0a1123 95%);
	background: linear-gradient(180deg, rgba(10, 17, 35, 0) 34%, #0a1123 95%);
	top: 0;
	left: 0;
	z-index: 1;
}

.single-cases-02 .cases-images a img {
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-cases-02 .cases-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px 25px;
	text-align: center;
	z-index: 1;
}

.single-cases-02 .cases-content .title a {
	color: #fff;
	font-size: 27px;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-cases-02 .cases-content .title a {
		font-size: 22px;
	}
}

.single-cases-02 .cases-content .title a:hover {
	color: #ff7e00;
}

.single-cases-02 .cases-content .tags {
	color: #e3e6e8;
	font-size: 14px;
	font-weight: 400;
}

.single-cases-02:hover .cases-images a img {
	-webkit-transform: scale(1.1) rotate(4deg);
	-ms-transform: scale(1.1) rotate(4deg);
	transform: scale(1.1) rotate(4deg);
}

/*--
/*  4.6 - Brand CSS
/*----------------------------------------*/
.brand-section {
	border-bottom: 1px solid #eaeaea;
}

.single-brand {
	padding: 120px 30px;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.single-brand {
		padding: 60px 30px;
	}
}

@media (max-width: 575px) {
	.single-brand {
		padding: 30px 30px;
	}
}

.single-brand::after,
.single-brand::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	bottom: 9px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-bottom: 1px solid #045ba8;
	opacity: 0;
	visibility: hidden;
}

.single-brand::before {
	left: 10px;
	border-left: 1px solid #045ba8;
}

.single-brand::after {
	right: 10px;
	border-right: 1px solid #045ba8;
}

.single-brand .brand-logo {
	position: relative;
	display: inline-block;
}

.single-brand .brand-logo img {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-brand .brand-logo .hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
}

.single-brand:hover {
	border-color: #eaeaea;
}

.single-brand:hover::after,
.single-brand:hover::before {
	opacity: 1;
	visibility: visible;
	bottom: -1px;
}

.single-brand:hover::before {
	left: -1px;
}

.single-brand:hover::after {
	right: -1px;
}

.single-brand:hover .brand-logo .hover {
	opacity: 1;
	visibility: visible;
}

/*--
/*  4.7 - Customer CSS
/*----------------------------------------*/
.customer-wrapper {
	position: relative;
	padding-top: 80px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.customer-wrapper {
		padding-top: 60px;
	}
}

.single-customer {
	background-color: #f5f9fc;
	position: relative;
	padding: 60px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.single-customer {
		padding: 40px;
	}
}

@media (max-width: 575px) {
	.single-customer {
		padding: 20px;
	}
}

.single-customer::before {
	position: absolute;
	content: "";
	bottom: 30px;
	right: 30px;
	width: 0;
	height: 0;
	border-bottom: 65px solid #045ba8;
	border-left: 65px solid transparent;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-customer::after {
	position: absolute;
	content: "";
	top: -40px;
	right: -35px;
	width: 198px;
	height: 198px;
	background-image: url(../images/quote-1.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background-size: cover;
}

@media (max-width: 575px) {
	.single-customer::after {
		width: 128px;
		height: 128px;
	}
}

.single-customer .customer-author {
	position: relative;
	z-index: 1;
}

.single-customer .customer-author::before {
	position: absolute;
	content: "";
	width: 140px;
	height: 140px;
	top: -20px;
	left: -20px;
	border: 3px dashed #045ba8;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	z-index: -2;
}

.single-customer .customer-author::after {
	position: absolute;
	content: "";
	top: -85px;
	left: -50px;
	background-color: #f5f9fc;
	width: 140px;
	height: 180px;
	-webkit-transform: rotate(55deg);
	-ms-transform: rotate(55deg);
	transform: rotate(55deg);
	z-index: -1;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-customer .customer-author img {
	border-radius: 50%;
	border: 4px solid #fff;
	width: 100px;
}

.single-customer .customer-content {
	padding-top: 50px;
}

.single-customer .customer-content p {
	font-size: 21px;
	font-weight: 600;
	font-family: "Agency FB", serif;
	margin-bottom: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 575px) {
	.single-customer .customer-content p {
		font-size: 16px;
	}
}

.single-customer .customer-content .name {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 22px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 575px) {
	.single-customer .customer-content .name {
		font-size: 20px;
	}
}

.single-customer .customer-content .designation {
	color: #045ba8;
	font-size: 14px;
	display: block;
	margin-top: 12px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-customer:hover {
	background-color: #045ba8;
}

.single-customer:hover::before {
	border-bottom-color: #ff7e00;
}

.single-customer:hover::after {
	background-image: url(../images/quote-2.png);
}

.single-customer:hover .customer-author::before {
	border-color: #fff;
}

.single-customer:hover .customer-author::after {
	background-color: #045ba8;
}

.single-customer:hover .customer-content p {
	color: #d9e2ea;
}

.single-customer:hover .customer-content .name {
	color: #fff;
}

.single-customer:hover .customer-content .designation {
	color: #eeeeee;
}

.customer-pagination-arrow {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 80px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.customer-pagination-arrow {
		padding-top: 40px;
	}
}

.customer-pagination-arrow .swiper-pagination {
	position: relative;
	bottom: 0;
	font-size: 30px;
	font-weight: 300;
	color: #c9c9c9;
	text-align: left;
}

.customer-pagination-arrow .swiper-pagination .swiper-pagination-current {
	color: #ff7e00;
}

.customer-pagination-arrow .swiper-arrows {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.customer-pagination-arrow .swiper-arrows .swiper-button-next,
.customer-pagination-arrow .swiper-arrows .swiper-button-prev {
	position: relative;
	top: 0;
	margin-top: 0;
	width: 55px;
	height: 55px;
	line-height: 51px;
	text-align: center;
	border: 2px solid #c9c9c9;
	display: block;
	left: 0;
	right: 0;
	margin: 0 10px;
	color: #323232;
	border-radius: 50%;
	font-size: 15px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	outline: none;
	opacity: 1;
}

@media (max-width: 575px) {
	.customer-pagination-arrow .swiper-arrows .swiper-button-next,
	.customer-pagination-arrow .swiper-arrows .swiper-button-prev {
		width: 45px;
		height: 45px;
		line-height: 41px;
	}
}

.customer-pagination-arrow .swiper-arrows .swiper-button-next:hover,
.customer-pagination-arrow .swiper-arrows .swiper-button-prev:hover {
	color: #045ba8;
	border-color: #045ba8;
}

.customer-pagination-arrow .swiper-arrows .swiper-button-next::after,
.customer-pagination-arrow .swiper-arrows .swiper-button-prev::after {
	display: none;
}

/*--
/*  4.8 - Blog CSS
/*----------------------------------------*/
.blog-section {
	position: relative;
	overflow: hidden;
}

.blog-section .shape-01 {
	position: absolute;
	bottom: -560px;
	left: -284px;
	width: 1130px;
	height: 1130px;
	border-radius: 50%;
	background-color: #fff;
}

@media (min-width: 1200px) and (max-width: 1599px) {
	.blog-section .shape-01 {
		width: 930px;
		height: 930px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.blog-section .shape-01 {
		width: 730px;
		height: 730px;
		bottom: -360px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.blog-section .shape-01 {
		display: none;
	}
}

.blog-wrapper {
	padding-top: 30px;
	position: relative;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.blog-wrapper {
		padding-top: 10px;
	}
}

.blog-wrapper .shape-02 {
	position: absolute;
	left: -105px;
	top: 150px;
	z-index: 1;
}

@media (max-width: 575px) {
	.blog-wrapper .shape-02 {
		width: 120px;
		left: -45px;
	}
}

.blog-video {
	position: relative;
	margin-top: 50px;
}

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

.blog-video .play {
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	font-size: 16px;
	color: #ff7e00;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.blog-video .play:hover {
	background-color: #045ba8;
	color: #fff;
}

.blog-items {
	padding-left: 40px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.blog-items {
		padding-left: 0;
	}
}

.single-blog {
	background-color: #fff;
	padding: 39px 60px 40px;
	margin-top: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.single-blog {
		padding: 29px 30px 30px;
	}
}

@media (max-width: 575px) {
	.single-blog {
		padding: 29px 30px 30px;
	}
}

.single-blog::after,
.single-blog::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 200px;
	bottom: -80px;
	right: -40px;
	background-color: #fff;
	-webkit-transform: rotate(42deg);
	-ms-transform: rotate(42deg);
	transform: rotate(42deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-blog::after {
	bottom: -105px;
	right: -20px;
}

.single-blog .shape {
	position: absolute;
	width: 255px;
	height: 255px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.12;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.single-blog .meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.single-blog .meta li {
	font-size: 15px;
	color: #6c7178;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 575px) {
	.single-blog .meta li {
		font-size: 14px;
	}
}

.single-blog .meta li + li {
	margin-left: 30px;
}

@media (max-width: 575px) {
	.single-blog .meta li + li {
		margin-left: 15px;
	}
}

.single-blog .meta li a {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-blog .meta li i {
	color: #045ba8;
	margin-right: 5px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-blog .title {
	margin-bottom: 0;
}

.single-blog .title a {
	font-size: 27px;
	font-weight: 700;
	margin-top: 17px;
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 575px) {
	.single-blog .title a {
		font-size: 20px;
	}
}

.single-blog p {
	margin-top: 20px;
	margin-bottom: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-blog .btn {
	border: 2px solid #045ba8;
	height: 50px;
	line-height: 46px;
	margin-top: 25px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-blog:hover {
	background-color: #ff7e00;
}

.single-blog:hover::before {
	bottom: -50px;
	right: 40px;
}

.single-blog:hover::after {
	bottom: -65px;
	right: 20px;
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.single-blog:hover .meta li {
	color: #fff;
}

.single-blog:hover .meta li a {
	color: #fff;
}

.single-blog:hover .meta li i {
	color: #fff;
}

.single-blog:hover .title a {
	color: #fff;
}

.single-blog:hover p {
	color: #fff;
}

.single-blog:hover .btn {
	background-color: #fff;
	border-color: #fff;
	color: #1d2733;
}

.blog-wrapper-02 .single-blog {
	background-color: #f5f9fc;
}

.blog-wrapper-02 .single-blog .shape {
	background-color: #ff7e00;
	opacity: 0.03;
}

.blog-wrapper-02 .single-blog:hover {
	background-color: #ff7e00;
}

.blog-wrapper-02 .single-blog:hover .shape {
	background-color: #fff;
	opacity: 0.12;
}

/*--
/*  4.9 - Page Banner CSS
/*----------------------------------------*/
.page-banner-section {
	position: relative;
	z-index: 1;
	height: 444px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.page-banner-section {
		height: 550px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.page-banner-section {
		height: 460px;
	}
}

@media (max-width: 575px) {
	.page-banner-section {
		height: 360px;
	}
}

.page-banner-section::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	z-index: -1;
}

.page-banner-section::after {
	position: absolute;
	content: "";
	top: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 728px;
	height: 728px;
	background-color: #ff7e00;
	opacity: 0.15;
	z-index: -1;
	border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.page-banner-section::after {
		width: 528px;
		height: 528px;
	}
}

@media (max-width: 575px) {
	.page-banner-section::after {
		width: 328px;
		height: 328px;
	}
}

.page-banner-content {
	text-align: center;
	padding-top: 94px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.page-banner-content {
		padding-top: 90px;
	}
}

@media (max-width: 575px) {
	.page-banner-content {
		padding-top: 75px;
	}
}

.page-banner-content .title {
	font-weight: 700;
	font-size: 70px;
	color: #fff;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.page-banner-content .title {
		font-size: 50px;
	}
}

@media (max-width: 575px) {
	.page-banner-content .title {
		font-size: 30px;
	}
}

.page-banner-content .breadcrumb {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0;
}

.page-banner-content .breadcrumb li {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	position: relative;
}

@media (max-width: 575px) {
	.page-banner-content .breadcrumb li {
		font-size: 14px;
	}
}

.page-banner-content .breadcrumb li + li::before {
	content: "//";
	color: #fff;
	margin: 0 10px;
}

.page-banner-content .breadcrumb li.active {
	color: #ff7e00;
}

/*--
/*  4.10 - About CSS
/*----------------------------------------*/
.about-images {
	position: relative;
	margin-top: 50px;
}

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

.about-images .about-icon {
	width: 200px;
	height: 200px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 126, 0, 0.85);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.about-content {
	padding-left: 70px;
	margin-top: 50px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.about-content {
		padding-left: 0;
	}
}

.about-content .about-title .sub-title {
	font-size: 15px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	color: #ff7e00;
	margin-bottom: 0;
	text-transform: uppercase;
}

.about-content .about-title .sub-title span {
	color: #045ba8;
}

.about-content .about-title .main-title {
	font-size: 58px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.about-content .about-title .main-title {
		font-size: 46px;
	}
}

@media (max-width: 767px) {
	.about-content .about-title .main-title {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.about-content .about-title .main-title {
		font-size: 30px;
	}
}

.about-content .about-title .main-title span {
	font-weight: 700;
}

.about-content .single-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px;
}

.about-content .single-item .item-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 60px;
	margin-top: -4px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.about-content .single-item .item-content {
		padding-left: 30px;
	}
}

.about-content .single-item .item-content .title {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.about-content .single-item .item-content .title {
		font-size: 22px;
	}
}

.about-content .single-item .item-content .title span {
	color: #ff7e00;
}

.about-content .single-item .item-content p {
	margin-top: 20px;
	margin-bottom: 0;
}

.about-content > p {
	margin-bottom: 0;
	margin-top: 25px;
}

/*--
/*  4.11 - Video CSS
/*----------------------------------------*/
.video-title {
	text-align: center;
	margin-top: -15px;
}

.video-title .title {
	font-size: 58px;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.video-title .title {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.video-title .title {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.video-title .title {
		font-size: 20px;
	}
	.video-title .title br {
		display: none;
	}
}

.video-title .title span {
	font-style: italic;
	color: #ff7e00;
}

.video-wrapper {
	position: relative;
	margin-top: 80px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.video-wrapper {
		margin-top: 60px;
	}
}

.video-wrapper img {
	width: 100%;
}

.video-wrapper .play {
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background-color: #ff7e00;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}

@media (max-width: 767px) {
	.video-wrapper .play {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
}

.video-wrapper .play:hover {
	background-color: #045ba8;
	color: #fff;
}

.video-wrapper .play::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	top: 0;
	left: 0;
	border-radius: 50%;
	z-index: -1;
	-webkit-animation: video 2s infinite;
	animation: video 2s infinite;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@-webkit-keyframes video {
	0% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes video {
	0% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0.7;
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

/*--
/*  4.12 - Consultant CSS
/*----------------------------------------*/
.consultant-wrapper {
	padding-top: 80px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.consultant-wrapper {
		padding-top: 60px;
	}
}

.single-consultant {
	position: relative;
	overflow: hidden;
}

.single-consultant .consultant-images {
	position: relative;
}

.single-consultant .consultant-images::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(30%, rgba(4, 91, 168, 0)),
		color-stop(80%, #045ba8)
	);
	background: -webkit-linear-gradient(
		top,
		rgba(4, 91, 168, 0) 30%,
		#045ba8 80%
	);
	background: -o-linear-gradient(top, rgba(4, 91, 168, 0) 30%, #045ba8 80%);
	background: linear-gradient(180deg, rgba(4, 91, 168, 0) 30%, #045ba8 80%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-consultant .consultant-images img {
	width: 100%;
}

.single-consultant .consultant-content {
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 35px 25px;
}

.single-consultant .consultant-content .social {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
}

.single-consultant .consultant-content .social li {
	display: inline-block;
	margin: 0 6px;
}

.single-consultant .consultant-content .social li a {
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-consultant .consultant-content .social li a:hover {
	color: #fff;
	background-color: #ff7e00;
	border-color: #ff7e00;
}

.single-consultant .consultant-content .name {
	margin-bottom: 0;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
}

.single-consultant .consultant-content .name a {
	color: #fff;
	font-size: 27px;
	font-weight: 700;
	margin-top: 35px;
	display: block;
}

.single-consultant .consultant-content .name a:hover {
	color: #ff7e00;
}

.single-consultant .consultant-content .designation {
	display: block;
	font-size: 14px;
	color: #e3e6e8;
	margin-top: 15px;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
}

.single-consultant:hover .consultant-images::before {
	opacity: 1;
	visibility: visible;
}

.single-consultant:hover .consultant-images img {
	width: 100%;
}

.single-consultant:hover .consultant-content .social {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	opacity: 1;
	visibility: visible;
}

.single-consultant:hover .consultant-content .name {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s;
	opacity: 1;
	visibility: visible;
}

.single-consultant:hover .consultant-content .designation {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
	opacity: 1;
	visibility: visible;
}

.consultant-btn-pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 40px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.consultant-btn-pagination {
		padding-top: 10px;
	}
}

.consultant-btn-pagination .consultant-btn {
	padding-top: 20px;
}

.consultant-btn-pagination .consultant-pagination {
	position: relative;
	padding-top: 10px;
}

.consultant-btn-pagination .consultant-pagination .swiper-pagination {
	text-align: left;
	bottom: 0;
	left: 0;
	position: relative;
}

.consultant-btn-pagination
	.consultant-pagination
	.swiper-pagination
	.swiper-pagination-bullet {
	outline: none;
	background-color: #1d2733;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 1;
	width: 8px;
	height: 8px;
	position: relative;
	margin: 0 5px;
	display: inline-block;
}

.consultant-btn-pagination
	.consultant-pagination
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #ff7e00;
}

.consultant-btn-pagination
	.consultant-pagination
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	border-color: #ff7e00;
}

/*--
/*  4.13 - Service Details CSS
/*----------------------------------------*/
.service-details-wrapper {
	position: relative;
}

.service-details-wrapper .service-details-images {
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.service-details-wrapper .service-details-images {
		position: relative;
		width: 100%;
	}
}

.service-details-wrapper .video-wrapper {
	margin-top: 45px;
}

.service-details-content {
	padding-left: 50px;
	margin-top: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.service-details-content {
		padding-left: 20px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.service-details-content {
		padding-left: 0;
	}
}

.service-details-content .main-title {
	font-size: 50px;
	font-weight: 700;
	color: #1d2733;
	margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.service-details-content .main-title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.service-details-content .main-title {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.service-details-content .main-title {
		font-size: 24px;
	}
}

.service-details-content .sub-title {
	font-size: 39px;
	font-weight: 400;
	color: #1d2733;
	margin-bottom: 0;
	margin-top: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.service-details-content .sub-title {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.service-details-content .sub-title {
		font-size: 26px;
	}
}

@media (max-width: 575px) {
	.service-details-content .sub-title {
		font-size: 18px;
		line-height: 1.5;
	}
}

.service-details-content p {
	margin-top: 30px;
	margin-bottom: 0;
}

.service-details-content.content-box {
	background-color: #f5f9fc;
	padding: 60px 100px;
	margin-bottom: 5em;
	position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.service-details-content.content-box {
		padding: 20px 60px 50px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.service-details-content.content-box {
		margin-top: 75px;
	}
}

@media (max-width: 767px) {
	.service-details-content.content-box {
		margin-top: 55px;
		padding: 10px 50px 40px;
	}
}

@media (max-width: 575px) {
	.service-details-content.content-box {
		padding: 0 30px 25px;
	}
}

.service-details-content.content-box::before {
	position: absolute;
	content: "";
	height: 10px;
	left: 100px;
	right: 100px;
	background-color: #045ba8;
	bottom: -10px;
}

.service-details-content.content-box .main-title {
	margin-top: 20px;
}

.service-details-content.content-box p {
	margin-top: 20px;
}

.service-details-content.content-box .content-text {
	font-weight: 600;
	color: #045ba8;
}

.service-details-description {
	padding-top: 35px;
}

.service-details-description p {
	margin-bottom: 0;
	margin-top: 25px;
}

.service-details-description .blockquote {
	padding-left: 165px;
	padding-top: 40px;
	padding-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.service-details-description .blockquote {
		padding-left: 60px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.service-details-description .blockquote {
		padding-left: 0;
	}
}

/*--
/*  4.14 - Blog Details CSS
/*----------------------------------------*/
.blog-details-wrapper {
	padding-left: 70px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.blog-details-wrapper {
		padding-left: 0;
	}
}

.blog-details-content {
	margin-top: 40px;
}

.blog-details-content .details-meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.blog-details-content .details-meta li {
	letter-spacing: 2px;
	font-size: 15px;
	font-weight: 600;
	color: #91979d;
	margin-top: 5px;
}

.blog-details-content .details-meta li::after {
	content: "/";
	color: #91979d;
	font-size: 14px;
	margin: 0 15px;
}

.blog-details-content .details-meta li:last-child::after {
	display: none;
}

.blog-details-content .details-meta li span {
	color: #ff7e00;
}

.blog-details-content .title {
	font-size: 44px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 20px;
	padding-bottom: 20px;
}

.blog-details-content .title strong {
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.blog-details-content .title {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.blog-details-content .title {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	.blog-details-content .title {
		font-size: 28px;
	}
}

.blog-details-content p {
	margin-bottom: 0;
	margin-top: 20px;
}

.blog-details-content > img {
	margin-top: 55px;
	padding-bottom: 20px;
	width: 100%;
}

.blog-details-content .blockquote {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-top: 30px;
}

.blog-details-tags-share {
	border-top: 1px solid #dde1e5;
	border-bottom: 1px solid #dde1e5;
	padding-bottom: 30px;
	margin-top: 60px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 575px) {
	.blog-details-tags-share {
		display: block;
	}
}

.blog-details-tags-share .lable {
	letter-spacing: 2px;
	font-size: 15px;
	font-weight: 600;
	color: #91979d;
	text-transform: uppercase;
	display: block;
}

.blog-details-tags-share .lable::before {
	content: "/";
	color: #91979d;
	font-size: 14px;
	margin-right: 5px;
}

.blog-details-tags-share .blog-details-tags {
	margin-top: 25px;
}

.blog-details-tags-share .blog-details-tags .tags-list {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border: 1px solid #dde1e5;
	padding: 12px 45px 14px;
	border-radius: 50px;
	margin-top: 30px;
}

@media (max-width: 767px) {
	.blog-details-tags-share .blog-details-tags .tags-list {
		padding: 12px 30px 14px;
	}
}

.blog-details-tags-share .blog-details-tags .tags-list li {
	font-size: 15px;
	font-weight: 400;
	color: #91979d;
}

.blog-details-tags-share .blog-details-tags .tags-list li + li::before {
	content: "/";
	color: #91979d;
	font-size: 14px;
	margin: 0 5px;
}

.blog-details-tags-share .blog-details-share {
	margin-top: 25px;
}

.blog-details-tags-share .blog-details-share .social {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 30px;
}

.blog-details-tags-share .blog-details-share .social li {
	margin-right: 20px;
}

.blog-details-tags-share .blog-details-share .social li:last-child {
	margin-right: 0;
}

.blog-details-tags-share .blog-details-share .social li a {
	width: 50px;
	height: 50px;
	line-height: 48px;
	border: 1px solid #dde1e5;
	color: #1d2733;
	display: block;
	font-size: 16px;
	text-align: center;
	border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
	.blog-details-tags-share .blog-details-share .social li a {
		width: 50px;
		height: 50px;
		line-height: 48px;
	}
}

.blog-details-tags-share .blog-details-share .social li a:hover {
	color: #fff;
	background-color: #ff7e00;
	border-color: #ff7e00;
}

.blog-details-comment-form .comment-title {
	font-size: 35px;
	font-weight: 700;
	color: #1d2733;
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.blog-details-comment-form .comment-title {
		font-size: 28px;
	}
}

.blog-details-comment {
	margin-top: 90px;
}

.blog-details-form {
	margin-top: 90px;
}

.blog-details-form .form-wrapper {
	padding-top: 20px;
}

.single-comment {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px;
}

@media (max-width: 575px) {
	.single-comment {
		display: block;
	}
}

@media (max-width: 575px) {
	.single-comment .comment-author {
		width: 100px;
	}
}

.single-comment .comment-content {
	padding-left: 50px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.single-comment .comment-content {
		padding-left: 30px;
	}
}

@media (max-width: 575px) {
	.single-comment .comment-content {
		padding-left: 0;
		padding-top: 25px;
	}
}

.single-comment .comment-content .name {
	font-size: 27px;
	font-weight: 700;
	color: #1d2733;
	margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.single-comment .comment-content .name {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.single-comment .comment-content .name {
		font-size: 20px;
	}
}

.single-comment .comment-content .designation {
	color: #ff7e00;
	display: block;
	font-size: 14px;
	margin-top: 12px;
}

.single-comment .comment-content .date {
	font-size: 15px;
	color: #6c7178;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
}

@media (max-width: 575px) {
	.single-comment .comment-content .date {
		position: relative;
		margin-top: 10px;
	}
}

.single-comment .comment-content p {
	margin-top: 12px;
	margin-bottom: 0;
}

.single-comment .comment-content .reply {
	height: 40px;
	line-height: 38px;
	border: 1px solid #dde1e5;
	padding: 0 24px;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: inline-block;
	margin-top: 20px;
}

.single-comment .comment-content .reply i {
	margin-right: 3px;
}

.single-comment .comment-content .reply:hover {
	background-color: #ff7e00;
	border-color: #ff7e00;
	color: #fff;
}

.comment-reply {
	padding-left: 100px;
}

@media (max-width: 767px) {
	.comment-reply {
		padding-left: 30px;
	}
}

.comment-reply .single-comment .comment-author img {
	width: 100px;
}

/*--
/*  4.15 - Cases Details CSS
/*----------------------------------------*/
.cases-details-title-share {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cases-details-title-share .cases-details-title {
	width: 80%;
	padding-top: 25px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-details-title-share .cases-details-title {
		width: 100%;
	}
}

.cases-details-title-share .cases-details-title .cases-meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cases-details-title-share .cases-details-title .cases-meta li::after {
	content: "/";
	color: #91979d;
	font-size: 12px;
	font-weight: 600;
	margin: 0 10px;
}

.cases-details-title-share
	.cases-details-title
	.cases-meta
	li:last-child::after {
	display: none;
}

.cases-details-title-share .cases-details-title .cases-meta li a {
	letter-spacing: 2px;
	font-size: 15px;
	font-weight: 600;
	color: #91979d;
	text-transform: uppercase;
	display: inline-block;
}

.cases-details-title-share .cases-details-title .cases-meta li a:hover {
	color: #ff7e00;
}

.cases-details-title-share .cases-details-title .title {
	font-size: 60px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.cases-details-title-share .cases-details-title .title {
		font-size: 50px;
	}
}

@media (max-width: 767px) {
	.cases-details-title-share .cases-details-title .title {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.cases-details-title-share .cases-details-title .title {
		font-size: 28px;
	}
}

.cases-details-title-share .cases-details-share {
	width: 20%;
	padding-top: 25px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-details-title-share .cases-details-share {
		width: 100%;
	}
}

.cases-details-title-share .cases-details-share .lable {
	letter-spacing: 2px;
	font-size: 15px;
	font-weight: 600;
	color: #91979d;
	text-transform: uppercase;
	display: block;
}

.cases-details-title-share .cases-details-share .lable::before {
	content: "/";
	color: #91979d;
	font-size: 14px;
	margin-right: 5px;
}

.cases-details-title-share .cases-details-share .social {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 30px;
}

.cases-details-title-share .cases-details-share .social li {
	margin-right: 20px;
}

.cases-details-title-share .cases-details-share .social li:last-child {
	margin-right: 0;
}

.cases-details-title-share .cases-details-share .social li a {
	width: 50px;
	height: 50px;
	line-height: 48px;
	border: 1px solid #dde1e5;
	color: #1d2733;
	display: block;
	font-size: 16px;
	text-align: center;
	border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
	.cases-details-title-share .cases-details-share .social li a {
		width: 50px;
		height: 50px;
		line-height: 48px;
	}
}

.cases-details-title-share .cases-details-share .social li a:hover {
	color: #fff;
	background-color: #ff7e00;
	border-color: #ff7e00;
}

.cases-details-wrapper .cases-details-images {
	padding-top: 100px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-details-wrapper .cases-details-images {
		padding-top: 60px;
	}
}

.cases-details-wrapper .cases-details-images img {
	width: 100%;
}

.cases-details-wrapper .cases-details-project-info {
	background-color: #f5f9fc;
	max-width: 500px;
	padding: 20px 50px 35px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: auto;
	margin-top: -104px;
	margin-bottom: 50px;
	position: relative;
}

@media (max-width: 767px) {
	.cases-details-wrapper .cases-details-project-info {
		padding: 0px 30px 25px;
		max-width: 450px;
	}
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-project-info {
		margin-top: 30px;
		display: block;
	}
}

.cases-details-wrapper .cases-details-project-info .project-info-title {
	width: 50%;
	padding-top: 25px;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-project-info .project-info-title {
		width: 100%;
	}
}

.cases-details-wrapper .cases-details-project-info .project-info-title .title {
	font-size: 25px;
	font-weight: 700;
	color: #045ba8;
	margin-bottom: 0;
}

.cases-details-wrapper .cases-details-project-info .project-info-list {
	width: 50%;
	padding-top: 25px;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-project-info .project-info-list {
		width: 100%;
	}
}

.cases-details-wrapper
	.cases-details-project-info
	.project-info-list
	.info-list
	li {
	margin-top: 5px;
}

.cases-details-wrapper
	.cases-details-project-info
	.project-info-list
	.info-list
	li
	.title {
	display: inline-block;
	width: 80px;
}

.cases-details-wrapper
	.cases-details-project-info
	.project-info-list
	.info-list
	li
	span {
	font-family: "Agency FB", serif;
	font-weight: 700;
	font-size: 18px;
	color: #1d2733;
}

.cases-details-wrapper .cases-details-blockquote {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding-right: 40px;
	margin-top: 40px;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-blockquote {
		display: block;
		padding-right: 0;
	}
}

.cases-details-wrapper .cases-details-blockquote .quote {
	padding: 10px 0;
}

.cases-details-wrapper .cases-details-blockquote .quote-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 60px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.cases-details-wrapper .cases-details-blockquote .quote-content {
		padding-left: 30px;
	}
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-blockquote .quote-content {
		padding-left: 0;
		padding-top: 15px;
	}
}

.cases-details-wrapper .cases-details-blockquote .quote-content .text {
	font-size: 24px;
	font-weight: 700 !important;
	font-family: "Agency FB", serif;
	line-height: 1.58;
	color: #045ba8;
	margin-top: 0 !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.cases-details-wrapper .cases-details-blockquote .quote-content .text {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.cases-details-wrapper .cases-details-blockquote .quote-content .text {
		font-size: 18px;
	}
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-blockquote .quote-content .text {
		padding-left: 0;
	}
}

.cases-details-wrapper .cases-details-download {
	padding: 70px;
	background-color: #f5f9fc;
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin-top: 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.cases-details-wrapper .cases-details-download {
		padding: 40px;
	}
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-download {
		padding: 30px;
	}
}

.cases-details-wrapper .cases-details-download::before,
.cases-details-wrapper .cases-details-download::after {
	position: absolute;
	content: "";
	width: 164px;
	height: 164px;
	border-radius: 50%;
	background-color: #045ba8;
	top: -74px;
	right: -44px;
	z-index: -1;
}

.cases-details-wrapper .cases-details-download::after {
	background-color: #ff7e00;
	top: -54px;
	right: -54px;
	z-index: -2;
}

.cases-details-wrapper .cases-details-download .title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0;
	margin-top: -10px;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-download .title {
		font-size: 24px;
	}
}

.cases-details-wrapper .cases-details-download .download-link {
	padding-top: 12px;
}

.cases-details-wrapper .cases-details-download .download-link li {
	margin-top: 20px;
}

.cases-details-wrapper .cases-details-download .download-link li a {
	display: block;
	height: 75px;
	line-height: 73px;
	padding: 0 40px;
	font-size: 15px;
	color: #6c7178;
	background-color: #fff;
	border: 1px solid #edeef0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	white-space: nowrap;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-download .download-link li a {
		height: 60px;
		line-height: 58px;
		padding: 0 20px;
	}
}

.cases-details-wrapper .cases-details-download .download-link li a i {
	display: block;
	float: right;
	line-height: 73px;
	color: #ff7e00;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-download .download-link li a i {
		line-height: 58px;
	}
}

.cases-details-wrapper .cases-details-download .download-link li a:hover {
	background-color: #045ba8;
	border-color: #045ba8;
	color: #fff;
}

.cases-details-wrapper .cases-details-download .download-link li a:hover i {
	color: #fff;
}

.cases-details-wrapper .cases-details-description {
	padding-top: 50px;
}

.cases-details-wrapper .cases-details-description .title {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 30px;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-description .title {
		font-size: 24px;
	}
}

.cases-details-wrapper .cases-details-next-preview {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px 30px 30px;
	background-color: #f5f9fc;
	margin-top: 75px;
}

@media (max-width: 767px) {
	.cases-details-wrapper .cases-details-next-preview {
		padding: 0 10px 10px;
		margin-top: 55px;
	}
}

.cases-details-wrapper .cases-details-next-preview .cases-details-next,
.cases-details-wrapper .cases-details-next-preview .cases-details-preview {
	margin-top: 10px;
}

@media (max-width: 575px) {
	.cases-details-wrapper .cases-details-next-preview .cases-details-next,
	.cases-details-wrapper .cases-details-next-preview .cases-details-preview {
		width: 100%;
		text-align: center;
	}
}

.cases-details-wrapper .cases-details-next-preview .cases-details-next .next a,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.preview
	a,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.next
	a,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.preview
	a {
	font-size: 28px;
	font-weight: 700;
	font-family: "Agency FB", serif;
	color: #1d2733;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (min-width: 768px) and (max-width: 991px) {
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.next
		a,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.preview
		a,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.next
		a,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.preview
		a {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.next
		a,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.preview
		a,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.next
		a,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.preview
		a {
		font-size: 18px;
	}
}

.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.next
	a
	i,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.preview
	a
	i,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.next
	a
	i,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.preview
	a
	i {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	font-size: 16px;
	background-color: #1d2733;
	color: #fff;
	display: inline-block;
	border-radius: 50%;
	margin-right: 20px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.next
		a
		i,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.preview
		a
		i,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.next
		a
		i,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.preview
		a
		i {
		width: 50px;
		height: 50px;
		line-height: 50px;
		margin-right: 5px;
	}
}

@media (max-width: 575px) {
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.next
		a
		i,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-next
		.preview
		a
		i,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.next
		a
		i,
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.preview
		a
		i {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.next:hover
	a,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.preview:hover
	a,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.next:hover
	a,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.preview:hover
	a {
	color: #045ba8;
}

.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.next:hover
	a
	i,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-next
	.preview:hover
	a
	i,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.next:hover
	a
	i,
.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.preview:hover
	a
	i {
	background-color: #045ba8;
	color: #fff;
}

.cases-details-wrapper
	.cases-details-next-preview
	.cases-details-preview
	.preview
	a
	i {
	margin-right: 0;
	margin-left: 20px;
}

@media (max-width: 767px) {
	.cases-details-wrapper
		.cases-details-next-preview
		.cases-details-preview
		.preview
		a
		i {
		margin-left: 5px;
	}
}

/*--
/*  4.16 - FAQ CSS
/*----------------------------------------*/
.faq-section {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.faq-question {
	width: 60%;
	padding-left: 100px;
	padding-right: 100px;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(min-width: 992px) and (max-width: 1199px) {
	.faq-question {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.faq-question {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.faq-question {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (max-width: 575px) {
	.faq-question {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.single-faq {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-width: 785px;
	border-bottom: 1px solid #e8ecef;
	padding-bottom: 15px;
	margin-left: auto;
}

@media (max-width: 575px) {
	.single-faq {
		display: block;
	}
}

.single-faq + .single-faq {
	margin-top: 50px;
}

.single-faq .faq-number .number {
	width: 75px;
	height: 75px;
	line-height: 75px;
	background-color: #045ba8;
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	display: inline-block;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 1;
}

.single-faq .faq-number .number::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #045ba8;
	bottom: 0px;
	right: 0px;
	z-index: -1;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-faq .faq-number .number::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #e9eef2;
	bottom: -10px;
	right: -10px;
	z-index: -2;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-faq .faq-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 60px;
}

@media (max-width: 767px) {
	.single-faq .faq-content {
		padding-left: 40px;
	}
}

@media (max-width: 575px) {
	.single-faq .faq-content {
		padding-left: 0;
		padding-top: 35px;
	}
}

.single-faq .faq-content .title {
	margin-bottom: 0;
	font-size: 27px;
	font-weight: 700;
	margin-top: -6px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
	.single-faq .faq-content .title {
		font-size: 24px;
	}
}

.single-faq .faq-content p {
	margin-top: 15px;
	margin-bottom: 0;
}

.single-faq:hover .faq-number .number {
	background-color: #ff7e00;
	color: #fff;
}

.single-faq:hover .faq-number .number::before {
	background-color: #ff7e00;
}

.single-faq:hover .faq-content .title {
	color: #ff7e00;
}

.faq-form {
	padding-left: 100px;
	padding-right: 100px;
	width: 40%;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(min-width: 992px) and (max-width: 1199px) {
	.faq-form {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.faq-form {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.faq-form {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (max-width: 575px) {
	.faq-form {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.faq-form .faq-form-title {
	margin-top: -17px;
}

.faq-form .faq-form-title .title {
	font-size: 50px;
	font-weight: 400;
	margin-bottom: 0;
	padding-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.faq-form .faq-form-title .title {
		font-size: 36px;
	}
}

.faq-form .faq-form-title .title span {
	font-size: 60px;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.faq-form .faq-form-title .title span {
		font-size: 40px;
	}
}

.faq-form .faq-form-title .line {
	width: 50px;
	height: 4px;
	background-color: #ff7e00;
	position: relative;
}

.faq-form .faq-form-title .line::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 100%;
	top: 0;
	left: 4px;
	background-color: #f5f9fc;
}

.faq-form .form-wrapper {
	padding-top: 20px;
}

.faq-form .form-wrapper .single-form input,
.faq-form .form-wrapper .single-form textarea {
	background-color: transparent;
}

/*--
/*  4.17 - Contact CSS
/*----------------------------------------*/
.contact-info-section {
	padding-top: 70px;
	padding-bottom: 100px;
	border-bottom: 1px solid #e8ecef;
}

.contact-info-color-01 {
	background-color: #045ba8;
}

.contact-info-color-01 .contact-info .info-content .line::before {
	background-color: #045ba8;
}

.contact-info-color-01 > p {
	color: #b4c4d2;
}

.contact-info-color-02 {
	background-color: #ff7e00;
}

.contact-info-color-02 .contact-info .info-content .line::before {
	background-color: #ff7e00;
}

.contact-info-color-02 > p {
	color: #faf4ed;
}

.contact-info-color-03 {
	background-color: #1d2733;
}

.contact-info-color-03 .contact-info .info-content .line::before {
	background-color: #1d2733;
}

.contact-info-color-03 > p {
	color: #b4c4d2;
}

.single-contact-info {
	padding: 70px;
	margin-top: 30px;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(max-width: 575px) {
	.single-contact-info {
		padding: 30px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.single-contact-info {
		padding: 20px;
	}
}

.single-contact-info .contact-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-contact-info .contact-info {
		display: block;
	}
}

.single-contact-info .contact-info .info-icon .icon-wrapper {
	background-color: #fff;
	width: 120px;
	height: 120px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-contact-info .contact-info .info-icon .icon-wrapper {
		width: 80px;
		height: 80px;
	}
}

.single-contact-info .contact-info .info-icon .icon-wrapper::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	right: -10px;
	bottom: -10px;
	background-color: #fff;
	opacity: 0.1;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-contact-info .contact-info .info-icon .icon-wrapper img {
		width: 45px;
	}
}

.single-contact-info .contact-info .info-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 60px;
}

@media (min-width: 1200px) and (max-width: 1599px) {
	.single-contact-info .contact-info .info-content {
		padding-left: 40px;
	}
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-contact-info .contact-info .info-content {
		padding-left: 0;
		padding-top: 35px;
	}
}

.single-contact-info .contact-info .info-content .title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
	padding-bottom: 22px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.single-contact-info .contact-info .info-content .title {
		font-size: 26px;
	}
}

.single-contact-info .contact-info .info-content .line {
	width: 50px;
	height: 4px;
	background-color: #fff;
	position: relative;
	margin-bottom: 30px;
}

.single-contact-info .contact-info .info-content .line::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 100%;
	top: 0;
	left: 4px;
}

.single-contact-info .contact-info .info-content p {
	color: #fff;
	margin-bottom: 0;
}

.single-contact-info .contact-info .info-content p a {
	color: #fff;
}

.single-contact-info > p {
	font-size: 15px;
	margin-bottom: 0;
	margin-top: 30px;
}

.contact-title .title {
	font-size: 50px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: -20px;
	line-height: 1.3;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.contact-title .title {
		font-size: 36px;
	}
}

@media (max-width: 575px) {
	.contact-title .title {
		font-size: 28px;
	}
}

.contact-title .title strong {
	font-size: 60px;
	font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.contact-title .title strong {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.contact-title .title strong {
		font-size: 28px;
	}
}

.form-message {
	margin-bottom: 0;
}

.form-message.error,
.form-message.success {
	font-size: 16px;
	color: #1d2733;
	background: #ddd;
	padding: 10px 15px;
	margin: 15px 0 0 15px;
}

.form-message.error {
	color: #ff0000;
}

.contact-wrapper {
	padding-top: 55px;
}

@media (max-width: 767px) {
	.contact-wrapper {
		padding-top: 20px;
	}
}

.contact-wrapper .single-form {
	margin-top: 30px;
}

.contact-wrapper .single-form label.error {
	font-size: 13px;
	color: red;
	margin-top: 5px;
}

/*--
/*  4.18 - 404 Error CSS
/*----------------------------------------*/
.error-section {
	position: relative;
	z-index: 1;
}

.error-section .shape-01 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.error-section .shape-01 img {
		width: 286px;
	}
}

@media (max-width: 767px) {
	.error-section .shape-01 img {
		width: 186px;
	}
}

@media (max-width: 575px) {
	.error-section .shape-01 img {
		width: 146px;
	}
}

.error-section .shape-02 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

@media (min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px) {
	.error-section .shape-02 img {
		width: 286px;
	}
}

@media (max-width: 767px) {
	.error-section .shape-02 img {
		width: 186px;
	}
}

@media (max-width: 575px) {
	.error-section .shape-02 img {
		width: 146px;
	}
}

.error-wrapper .error-content {
	padding-top: 10px;
}

.error-wrapper .error-content .title {
	font-weight: 600;
	font-size: 80px;
	margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.error-wrapper .error-content .title {
		font-size: 60px;
	}
}

@media (max-width: 575px) {
	.error-wrapper .error-content .title {
		font-size: 40px;
	}
}

.error-wrapper .error-content .sub-title {
	font-size: 30px;
	font-weight: 600;
	color: #959ba1;
	margin-bottom: 0;
	margin-top: 20px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.error-wrapper .error-content .sub-title {
		font-size: 26px;
	}
}

@media (max-width: 575px) {
	.error-wrapper .error-content .sub-title {
		font-size: 20px;
	}
}

.error-wrapper .error-content .btn {
	margin-top: 50px;
}

@media (max-width: 575px) {
	.error-wrapper .error-content .btn {
		margin-top: 30px;
	}
}

.error-wrapper .error-content .btn i {
	margin-left: 0;
	margin-right: 8px;
}

/*----------------------------------------*/
/*  05. Widget CSS
/*----------------------------------------*/
/*--
/*  5.1 - Footer Widget CSS
/*----------------------------------------*/
.footer-widget-section {
	position: relative;
	padding: 0 0 1em;
}

.footer-widget-section .shape-01 {
	position: absolute;
	top: 100px;
	left: 80px;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.footer-widget-section .shape-01 {
		width: 130px;
		top: 50px;
		left: 30px;
	}
}

@media (max-width: 575px) {
	.footer-widget-section .shape-01 {
		width: 100px;
	}
}

.footer-widget-section .shape-02 {
	position: absolute;
	bottom: 100px;
	right: 80px;
}

@media (min-width: 1200px) and (max-width: 1599px),
	(min-width: 992px) and (max-width: 1199px),
	(min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.footer-widget-section .shape-02 {
		width: 130px;
		bottom: 50px;
		right: 30px;
	}
}

@media (max-width: 575px) {
	.footer-widget-section .shape-02 {
		width: 100px;
	}
}

.footer-widget-title .title {
	color: #fff;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 0px;
}

.footer-widget-title .line {
	width: 50px;
	height: 3px;
	background-color: #ff7e00;
	display: block;
	position: relative;
	margin-top: 43px;
}

.footer-widget-title .line::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 3px;
	background-color: #1d2733;
	left: 4px;
	top: 0;
}

.footer-widget {
	margin-top: 50px;
}

.footer-widget .widget-map {
	max-width: 526px;
	height: 526px;
	border: 1px solid #293441;
	border-radius: 50%;
	padding: 35px;
	position: relative;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.footer-widget .widget-map {
		max-width: 450px;
		height: 450px;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.footer-widget .widget-map {
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.footer-widget .widget-map {
		width: 300px;
		height: 300px;
		margin: 0 auto;
		padding: 10px;
	}
}

.footer-widget .widget-map iframe {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
}

.footer-widget .widget-map .mover-1 {
	margin: 0 auto 0;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
	background: #ff7e00;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform-origin: 50% 268px;
	-ms-transform-origin: 50% 268px;
	transform-origin: 50% 268px;
	-webkit-animation: spin-1 7s infinite linear;
	animation: spin-1 7s infinite linear;
	top: -5px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.footer-widget .widget-map .mover-1 {
		-webkit-transform-origin: 50% 230px;
		-ms-transform-origin: 50% 230px;
		transform-origin: 50% 230px;
	}
}

@media (max-width: 575px) {
	.footer-widget .widget-map .mover-1 {
		-webkit-transform-origin: 50% 155px;
		-ms-transform-origin: 50% 155px;
		transform-origin: 50% 155px;
	}
}

.footer-widget .widget-map .mover-2 {
	margin: 0 auto 0;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
	background: #ff7e00;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform-origin: 50% 268px;
	-ms-transform-origin: 50% 268px;
	transform-origin: 50% 268px;
	-webkit-animation: spin-2 7s infinite linear;
	animation: spin-2 7s infinite linear;
	top: -5px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 767px) {
	.footer-widget .widget-map .mover-2 {
		-webkit-transform-origin: 50% 230px;
		-ms-transform-origin: 50% 230px;
		transform-origin: 50% 230px;
	}
}

@media (max-width: 575px) {
	.footer-widget .widget-map .mover-2 {
		-webkit-transform-origin: 50% 155px;
		-ms-transform-origin: 50% 155px;
		transform-origin: 50% 155px;
	}
}

.footer-widget .footer-link {
	padding-top: 26px;
}

.footer-widget .footer-link li {
	margin-top: 15px;
}

.footer-widget .footer-link li a {
	font-size: 16px;
	color: #a6afba;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.footer-widget .footer-link li a:hover {
	color: #ff7e00;
}

.footer-widget .footer-info {
	padding-top: 25px;
}

.footer-widget .footer-info li {
	margin-top: 15px;
}

.footer-widget .single-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.footer-widget .single-info .info-icon i {
	color: #ff7e00;
	margin-top: 1px;
	line-height: 1.8;
}

.footer-widget .single-info .info-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 25px;
}

.footer-widget .single-info .info-content p {
	color: #a6afba;
}

@-webkit-keyframes spin-1 {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes spin-1 {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@-webkit-keyframes spin-2 {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}

@keyframes spin-2 {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}

.footer-widget-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.footer-widget-link {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.footer-widget-link .footer-widget {
		width: 50%;
	}
}

@media (max-width: 575px) {
	.footer-widget-link .footer-widget {
		width: 100%;
	}
}

/*--
/*  5.2 - Sidebar Widget CSS
/*----------------------------------------*/
.sidebar-widget {
	margin-top: 50px;
	background-color: #f5f9fc;
	padding: 50px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.sidebar-widget {
		padding: 30px;
	}
}

.widget-title {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: -13px;
}

@media (min-width: 992px) and (max-width: 1199px),
	(max-width: 575px) {
	.widget-title {
		font-size: 30px;
	}
}

.widget-search {
	position: relative;
}

.widget-search input {
	width: 100%;
	height: 65px;
	padding: 0 15px;
	padding-right: 75px;
	border: 0;
	font-size: 15px;
	color: #6c7178;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 0;
	background-color: #fff;
}

.widget-search input:focus {
	outline: none;
	border-color: #ff7e00;
}

.widget-search input::-webkit-input-placeholder {
	opacity: 1;
}

.widget-search input:-moz-placeholder {
	opacity: 1;
}

.widget-search input::-moz-placeholder {
	opacity: 1;
}

.widget-search input:-ms-input-placeholder {
	opacity: 1;
}

.widget-search button {
	position: absolute;
	top: 0px;
	right: 0px;
	border: 0;
	padding: 0;
	width: 65px;
	height: 65px;
	color: #fff;
	text-align: center;
	background-color: #045ba8;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.widget-categories {
	padding-top: 40px;
}

.widget-categories li {
	padding-top: 10px;
}

.widget-categories li a {
	padding: 0 30px;
	height: 65px;
	line-height: 65px;
	background-color: #fff;
	display: block;
	color: #6c7178;
}

@media (max-width: 575px) {
	.widget-categories li a {
		padding: 0 20px;
		height: 50px;
		line-height: 50px;
	}
}

.widget-categories li a i {
	color: #1d2733;
	margin-right: 10px;
}

.widget-categories li a:hover {
	color: #fff;
	background-color: #045ba8;
}

.widget-categories li a:hover i {
	color: #fff;
}

.widget-newsletter {
	text-align: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

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

.widget-newsletter::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-top: 340px solid transparent;
	border-left: 273px solid #fff;
	border-bottom: 340px solid transparent;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0.15;
}

.widget-newsletter .widget-title {
	color: #fff;
}

.widget-newsletter .newsletter-form {
	margin-top: 50px;
}

.widget-newsletter .newsletter-form input {
	width: 100%;
	height: 65px;
	padding: 0 30px;
	font-size: 15px;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: none;
	border: 2px solid #fff;
	border-radius: 0;
}

.widget-newsletter .newsletter-form input::-webkit-input-placeholder {
	opacity: 1;
	color: #fff;
}

.widget-newsletter .newsletter-form input:-moz-placeholder {
	opacity: 1;
	color: #fff;
}

.widget-newsletter .newsletter-form input::-moz-placeholder {
	opacity: 1;
	color: #fff;
}

.widget-newsletter .newsletter-form input:-ms-input-placeholder {
	opacity: 1;
	color: #fff;
}

.widget-newsletter .newsletter-form input + input {
	margin-top: 20px;
}

.widget-newsletter .newsletter-form input:focus {
	outline: none;
}

.widget-newsletter .newsletter-form .btn {
	margin-top: 30px;
}

.widget-tags {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -7px;
	margin-right: -7px;
	padding-top: 40px;
}

.widget-tags li {
	padding: 10px 5px 0;
}

.widget-tags li a {
	height: 45px;
	line-height: 45px;
	padding: 0 26px;
	font-size: 15px;
	background-color: #fff;
	display: block;
	color: #6c7178;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.widget-tags li a {
		padding: 0 15px;
	}
}

@media (max-width: 575px) {
	.widget-tags li a {
		padding: 0 16px;
	}
}

.widget-tags li a:hover {
	background-color: #045ba8;
	color: #fff;
}

.widget-subscribe {
	margin-top: 30px;
}

.widget-subscribe input {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	font-size: 14px;
	font-family: "Agency FB", serif;
	font-weight: 600;
	color: #c0c0c0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid #d7d7d7;
	border-radius: 0;
	background-color: #fff;
	text-align: center;
}

.widget-subscribe input::-webkit-input-placeholder {
	opacity: 1;
}

.widget-subscribe input:-moz-placeholder {
	opacity: 1;
}

.widget-subscribe input::-moz-placeholder {
	opacity: 1;
}

.widget-subscribe input:-ms-input-placeholder {
	opacity: 1;
}

.widget-subscribe input:focus {
	border-color: #ff7e00;
	outline: none;
}

.widget-subscribe .btn {
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	border-radius: 0;
	margin-top: 1rem;
	width: 100%;
}

/*----------------------------------------*/
/*  06. Footer CSS
/*----------------------------------------*/
.footer-section {
	background-color: #1d2733;
}

.footer-top {
	padding: .5em 0;
	border-bottom: 1px solid #293441;
}

.footer-logo {
	margin-top: 30px;
	width: 50%;
}

.footer-call {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 30px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer-call .call-icon {
	width: 60px;
	height: 60px;
	border: 1px solid #293441;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-call .call-icon {
		width: 50px;
		height: 50px;
	}
}

.footer-call .call-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-call .call-content {
		padding-left: 10px;
	}
}

.footer-call .call-content .title {
	font-size: 22px;
	color: #ff7e00;
	font-weight: 600;
	margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-call .call-content .title {
		font-size: 18px;
	}
}

.footer-call .call-content p {
	font-size: 25px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 0;
	white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-call .call-content p {
		font-size: 18px;
	}
}

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

.footer-social .social {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.footer-social .social {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.footer-social .social li {
	margin-right: 20px;
}

.footer-social .social li:last-child {
	margin-right: 0;
}

.footer-social .social li a {
	width: 60px;
	height: 60px;
	line-height: 58px;
	border: 1px solid #293441;
	color: #fff;
	display: block;
	font-size: 16px;
	text-align: center;
	border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-social .social li a {
		width: 50px;
		height: 50px;
		line-height: 48px;
	}
}

.footer-social .social li a:hover {
	color: #fff;
	background-color: #ff7e00;
	border-color: #ff7e00;
}

.footer-copyright {
	background-color: #232e3a;
}

.copyright-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 25px;
	padding-top: 10px;
}

@media (min-width: 768px) and (max-width: 991px),
	(max-width: 767px) {
	.copyright-wrapper {
		display: block;
		text-align: center;
	}
}

.copyright-text {
	padding-top: 15px;
}

.copyright-text p {
	color: #8690a1;
	font-size: 16px;
	font-weight: 300;
}

.copyright-text p span {
	color: #ff7e00;
	text-transform: uppercase;
}

.copyright-text p i {
	color: #ff0000;
}

.copyright-text p a {
	color: #ff7e00;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-weight: 500;
}

.copyright-text p a:hover {
	color: #ff7e00;
}

.copyright-link {
	padding-top: 15px;
}

.copyright-link a {
	font-weight: 300;
	font-size: 15px;
	color: #a6afba;
	position: relative;
}

.copyright-link a + a::before {
	content: "|";
	font-size: 15px;
	color: #a6afba;
	margin-left: 15px;
	margin-right: 20px;
}

.copyright-link a:hover {
	color: #ff7e00;
}

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	z-index: 99;
	text-align: center;
	display: none;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
	box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	color: #fff;
	background-color: #ff7e00;
}

.back-to-top:hover {
	color: #fff;
	background-color: #1d2733;
}
