/*
Author       : EnvyTheme
Template Name: App
Version      : 1.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. DEFAULT STYLE
    02. NAVIGATION DESIGN
    03. START HOME SLIDER SECTION DESIGN
    04. START ABOUT US SECTION DESIGN
    05. START FEATURES SECTION DESIGN
    06. START SCREENSHOT SECTION DESIGN
    07. START OUR PRICE SECTION DESIGN
    08. START ACHIEVEMENT SECTION DESIGN
    09. START TEAM SECTION DESIGN
    10. START FAQS SECTION DESIGN
    11. START OUR TESTIMONIALS SECTION DESIGN
    12. START OUR BLOG SECTION DESIGN
    13. START SUBSCRIBE SECTION DESIGN
    14. START CONTACT SECTION DESIGN
    15. START TOP FOOTER SECTION DESIGN
    16. START BACK TO TOP BUTTON SECTION DESIGN
  =============================================================*/
/*
* ------------------------------------------------------------
* 01.DEFAULT STYLE
* ------------------------------------------------------------
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700');
body {
    font-family: 'Montserrat', sans-serif;
}
a {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}
a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
a:focus, a:hover, a:active {
    text-decoration: none;
}
p {
    color: #646464;   
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
}
img {
    max-width: 100%;
}
section {
   padding: 100px 0 105px; 
}
.d-table {
    display: table;
    width: 100%;
    height: 100%;
}
.d-tablecell {
    display: table-cell;
    vertical-align: middle;
}
.section-title {
    text-align: center;
    margin-bottom: 80px;
}
.section-title h2 {
	color: #4e2a84;
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	text-transform: uppercase;
}
.section-title .bar {
	background-color: #4e2a84;
	height: 1px;
	margin: 30px auto;
	max-width: 325px;
	position: relative;
}
.section-title .bar::before {
	background-image: url("../../assets/img/middle-arrow.png");
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	left: 0;
	right: 0;
	margin: auto;
	top: -14px;
}
.section-title p {
	max-width: 800px;
	margin: auto;
}
.section-bg {
	background-image: url("../../assets/img/section_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: none-repeat;
}
.gray-bg {
    background-color: #f5f5f5;
}
.default-button {
    background: #4e2a84;
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 13px;
}
.default-button:hover {
    background: #010101;
    color: #fff;
}
.preloader-wrap {
    background: #fff;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}
.loader {
	position: absolute;
	margin: auto;
	top: 40%;
	left: 0;
	right: 0;
}
.loader{
    width: 150px;
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.loader .loader-inner{ height: 100%; }
.loader,
.loader .loader-inner{
    padding: 8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #4e2a84;
    border-left-color: #cf1c5d;
    -webkit-animation: loading-1 linear 3.5s infinite;
    animation: loading-1 linear 3.5s infinite;
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.38, 0.21, 0.88);
    animation-timing-function: cubic-bezier(0.55, 0.38, 0.21, 0.88);
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
@-webkit-keyframes loading-1{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50%{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loading-1{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50%{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*
* ------------------------------------------------------------
* 02.NAVIGATION STYLE
* ------------------------------------------------------------
*/
.navbar-default {
    background: transparent;
	border: none;
	margin: 0;
    padding: 15px 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}
.navbar-default .navbar-brand > img {
    width: 120px;
}
.navbar-default .navbar-nav > li > a {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	padding: 5px 0;
	margin: 10px 15px;
	border-bottom: 2px solid transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
	color: #fff;
	background-color: transparent;
	border-bottom: 2px solid #fff;
}
.navbar-default .navbar-nav > li > a:focus, 
.navbar-default .navbar-nav > li > a:hover {
	border-bottom: 2px solid #4e2a84;
    color: #fff;
}
.menu-shrink {
    background-color: #4e2a84;
    padding: 5px 0;
    box-shadow: 0 0 10px #000;
}
.navbar-toggle {
    border: none;
    background: transparent !important;
}
.navbar-toggle:hover {
    background: transparent !important;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #4e2a84;
}
.navbar-toggle .icon-bar {
    width: 22px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}
.navbar-toggle .top-bar {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
    opacity: 0;
}
.navbar-toggle .bottom-bar {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);    
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
    opacity: 1;
}
.navbar-toggle.collapsed .bottom-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
}
/*
* ------------------------------------------------------------
* 03.HOME SLIDER STYLE
* ------------------------------------------------------------
*/
.home-slider .single-item {
    background-image: url("../../assets/img/slider_1.jpg");
	height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
}
.slider-text-content {
	margin-top: 50px;
}
.slider-text-content h1 {
	font-size: 45px;
	margin: 0;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 60px;
}
.slider-text-content p {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	margin: 30px 0 40px;
	line-height: 36px;
}
.hero-img {
    position: absolute;
    right: 0;
}
.slider-text-content .slider-btn-one {
	color: #fff;
	font-size: 16px;
	border: 1px solid #fff;
	display: inline-block;
	padding: 6px 20px;
    margin-right: 15px;
}
.slider-text-content .slider-btn-one:hover {
    background-color: #fff;
    color: #4e2a84;
}
.slider-text-content .slider-btn-two {
    background-color: #fff;
   	color: #4e2a84;
	font-size: 16px;
	border: 1px solid #fff;
	display: inline-block;
	padding: 6px 20px;
}
.slider-text-content .slider-btn-two:hover {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}
.home-slider .owl-prev {
	background: #4e2a84;
	position: absolute;
	color: #fff;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	top: 50%;
	font-size: 25px;
    left: 0;
}
.home-slider .owl-next {
	background: #4e2a84;
	position: absolute;
	color: #fff;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	top: 50%;
	font-size: 25px;
    right: 0;
}
.home-slider .owl-prev:hover, .home-slider .owl-next:hover {
    background-color: #010101;
}
/*
* ------------------------------------------------------------
* 04.ABOUT US SECTION STYLE
* ------------------------------------------------------------
*/
.about-section {
    padding: 100px 0 75px;
}
.single-card {
    text-align: center;
    margin-bottom: 30px;
}
.single-card i {
	background: #4e2a84;
	color: #fff;
	display: inline-block;
	height: 65px;
	width: 65px;
	line-height: 65px;
	font-size: 32px;
	border-radius: 50%;
    transition: .3s;
    -webkit-transition: .3s;
}
.single-card:hover i {
    box-shadow: 0 5px 15px #707070;
}
.single-card h3 {
	margin: 30px 0 15px;
	font-size: 22px;
}
.single-card p {
    margin: 0;
}
/*
* ------------------------------------------------------------
* 05.FEATURES SECTION STYLE
* ------------------------------------------------------------
*/
.features-section {
    padding: 100px 0 60px;
}
.white-title h2 {
    color: #fff;
}
.white-title .bar {
	background-color: #fff;
}
.white-title .bar::before {
	background-image: url("../../assets/img/white-middle-arrow.png");
}
.white-title p {
    color: #fff;
}
.single-feature {
	margin-bottom: 40px;
	position: relative;
	padding: 0 0 0 75px;
}
.single-feature i {
	position: absolute;
	color: #4e2a84;
	font-size: 30px;
	left: 0;
	top: 0;
	background-color: #fff;
	height: 55px;
	width: 55px;
	text-align: center;
	line-height: 55px;
	border-radius: 50%;
}
.single-feature h3 {
	color: #fff;
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 600;
}
.single-feature p {
    color: #fff;
}
/*
* ------------------------------------------------------------
* 06.FEATURES SECTION STYLE
* ------------------------------------------------------------
*/
.pricing-section {
    padding: 100px 0 70px;
}
.single-pricing {
	margin-bottom: 30px;
	border: 1px solid #fff;
	text-align: center;
	border-radius: 10px;
}
.single-pricing h3 {
	color: #fff;
	margin: 0;
	border-bottom: 1px solid #fff;
	padding: 20px 0;
	text-transform: uppercase;
	font-weight: bold;
}
.price-box {
	border: 1px solid #fff;
	height: 150px;
	width: 150px;
	margin: 40px auto;
	border-radius: 50%;
}
.single-pricing:hover .price-box {
    border: 1px solid #4e2a84;
    background-color: #4e2a84;
}
.price-box .price {
	color: #fff;
	display: block;
	font-size: 35px;
	font-weight: bold;
}
.price-box .month {
    color: #fff;
}
.single-pricing ul {
	list-style: none;
	padding: 0 0 35px;
	margin: 0;
	border-bottom: 1px solid #fff;
}
.single-pricing ul li {
	color: #fff;
	font-size: 16px;
	line-height: 32px;
}
.purchase-now {
	background: #fff;
	color: #4e2a84;
	padding: 10px 25px;
	display: inline-block;
	margin: 20px 0;
	border-radius: 100px;
	font-weight: bold;
}
.single-pricing:hover .purchase-now {
    background-color: #4e2a84;
    color: #fff;
}
/*
* ------------------------------------------------------------
* 07.ACHIEVEMENT SECTION STYLE
* ------------------------------------------------------------
*/
.achievement-section {
    padding: 100px 0 70px;
}
.single-achievement {
    text-align: center;
    margin-bottom: 30px;
}
.single-achievement i {
	font-size: 40px;
	color: #fff;
	background: #4e2a84;
	display: inline-block;
	height: 65px;
	width: 65px;
	line-height: 65px;
	border-radius: 50%;
}
.single-achievement h3 {
	font-size: 35px;
	font-weight: bold;
	margin: 25px 0 15px;
}
.single-achievement p {
	margin: 0;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 500;
}
/*
* ------------------------------------------------------------
* 08.OUR TEAM SECTION STYLE
* ------------------------------------------------------------
*/
.our-team-section {
    padding: 100px 0 70px;
}
.single-member { 
    text-align: center;
    margin-bottom: 30px;
}
.single-member h3 { 
    font-size: 22px;
    margin: 30px 0 5px;
}
.single-member h3 p { }
/*
* ------------------------------------------------------------
* 09.FAQS SECTION STYLE
* ------------------------------------------------------------
*/
.faqs-section {}
.faqs-section .panel-group {
    margin: 0;
}
#accordion::before {
	content: "";
	width: 1px;
	height: 90%;
	background: #4e2a84;
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translatey(-50%);
	-webkit-transform: translatey(-50%);
}
#accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    margin: 0 0 12px 50px;
    position: relative;
}
#accordion .panel:before {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #688e26 0%,#4e2a84 100%);
    position: absolute;
    top: 0;
    left: -2px;
}
#accordion .panel-heading {
    padding: 0;
    background: #fff;
    position: relative;
}
#accordion .panel-heading:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #550527;
    position: absolute;
    top: 50%;
    left: -48px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
#accordion .panel-title a {
    display: block;
    padding: 15px 55px 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #4e2a84;
    border: none;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #ddd;
}
#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
    content: "\f068";
    font-family: fontawesome;
    width: 25px;
    height: 25px;
    line-height: 24px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: normal;
    color: #4e2a84;
    text-align: center;
    border: 1px solid #4e2a84;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
#accordion .panel-title a.collapsed:before { 
    content: "\f067"; 
}
#accordion .panel-body {
    padding: 15px 30px 5px;
    border: none;
    color: #305275;
}
/*
* ------------------------------------------------------------
* 10.OUR TESTIMONIALS SECTION STYLE
* ------------------------------------------------------------
*/
.our-testimonials {}
.testimonial-item {
    text-align: center;
}
.testimonial-item .client-pic {
	width: 100px;
	height: 100px;
	border: 3px solid #ededed;
	border-radius: 50%;
	margin: auto;
	position: relative;
}
.testimonial-item .client-pic i {
	background: #4e2a84;
	color: #fff;
	height: 30px;
	width: 30px;
	display: inline-block;
	line-height: 30px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.testimonial-item .client-pic img {
    width: 100%;
    border-radius: 50%;
}
.testimonial-item p {
	font-size: 16px;
	color: #fff;
    line-height: 30px;
	font-weight: 500;
	max-width: 800px;
	margin: 30px auto 0;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px; 
}
.owl-theme .owl-dots {
    text-align: center;
    margin-top: 20px;
    -webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; 
}
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    -ms-transform: rotate(50deg); /* IE 9 */
    -webkit-transform: rotate(50deg); /* Safari */
    transform: rotate(50deg);
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #4e2a84; 
}
/*
* ------------------------------------------------------------
* 11.OUR BLOG SECTION STYLE
* ------------------------------------------------------------
*/
.our-blog {
    padding: 100px 0 70px;
}
.single-article {
    margin-bottom: 30px;
}
.single-article h3 {
	margin: 25px 0 10px;
	line-height: 30px;
}
.single-article a:hover img {
    opacity: .6;
}
.single-article h3 a {
	color: #333;
	font-size: 17px;
	font-weight: 600;
}
.single-article h3 a:hover {
    color: #4e2a84;
}
.single-article p {}
.single-article .default-button {
	margin-top: 10px;
	font-size: 14px;
	padding: 8px 25px;
}
.page-header-section {
	background-color: #4e2a84;
	padding: 120px 0 60px;
}
.page-header-section h1 {
	color: #fff;
	margin: 0;
	font-size: 25px;
}
.page-header-section .breadcrumb {
    text-align: right;
    background-color: transparent;
    margin: 0;
}
.page-header-section .breadcrumb li {
	text-transform: uppercase;
}
.page-header-section .breadcrumb li a {
	color: #fff;
}
.breadcrumb > .active {
	color: #fff;
}
.blog-main-area {
    padding: 70px 0;
}
.blog-main-area .single-blog {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}
.blog-main-area .single-blog:hover {
    box-shadow: none;
}
.blog-main-area .single-blog .article-text {
	padding: 20px 0 0;
}
.blog-main-area .single-blog .article-text .heading {
	font-size: 25px;
}
.post-date {
	background-color: #4e2a84;
	color: #fff;
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 5px;
	text-align: center;
	line-height: 20px;
}
.search-box {
    margin-bottom: 30px;
}
.search-box form {
    position: relative;
}
.search-box .form-control {
	background: #f0f4f7;
	border-color: #f0f4f7;
	border-radius: 0;
	height: 45px;
    box-shadow: inset 0 0px 1px rgba(0,0,0,.075);
}
.search-box .form-control:hover {
    border-color: #4e2a84;
}
.search-box .search-btn {
    background-color: #4e2a84;
    color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	height: 45px;
	font-size: 20px;
    border-radius: 0;
    transition: .3s;
    -webkit-transition: .3s;
}
.search-box .search-btn:hover {
    opacity: .7;
}
.sidebar-area .title {
	color: #0d3b66;
	font-weight: 600;
	font-size: 20px;
	margin: 0 0 25px;
	border-bottom: 1px dashed #ddd;
	padding: 0 0 10px;
    position: relative;
}
.sidebar-area .title::before {
	background-color: #4e2a84;
	content: "";
	height: 2px;
	width: 40px;
	position: absolute;
	bottom: -1px;
	left: 0;
}
.recent-post-box {
    margin-bottom: 30px;
}
.recent-post-box .recent-post {
	position: relative;
	padding: 0 0 5px 100px;
	overflow: hidden;
	margin-bottom: 15px;
}
.recent-post-box .recent-post img {
	position: absolute;
	width: 80px;
	left: 0;
	top: 5px;
}
.recent-post-box .recent-post:hover img {
    opacity: .7;
}
.recent-post-box .recent-post h4 {
    line-height: 25px;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
}
.recent-post-box .recent-post h4 a {
    color: #0d3b66;
}
.recent-post-box .recent-post h4 a:hover {
    color: #4e2a84;
}
.recent-post-box .recent-post .post-dt {
	color: #6b6b6b;
	font-size: 14px;
	text-transform: uppercase;
	margin: 0;
}
.recent-post-box .recent-post .comments {
    color: #6b6b6b;
	font-size: 14px;
	text-transform: uppercase;
}
.recent-post-box .recent-post .comments:hover {
    color: #4e2a84;
}
.recent-post-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-post-box ul li {
    line-height: 25px;
    margin-bottom: 10px;
}
.recent-post-box ul li:last-child {
    margin-bottom: 0;
}
.recent-post-box ul li a {
	color: #0d3b66;
	font-weight: 600;
	font-size: 14px;
}
.recent-post-box ul li a:hover {
    color: #4e2a84;
}
.recent-post-box ul li .post-dt {
    color: #6b6b6b;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}
.categories-box {
    margin-bottom: 30px;
}
.categories-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.categories-box ul li {
	line-height: 35px;
	position: relative;
	border-bottom: 1px dashed #ddd;
}
.categories-box ul li a {
    color: #0d3b66;
    display: block;
}
.categories-box ul li a:hover {
    color: #4e2a84;
}
.categories-box ul li a span {
	position: absolute;
	right: 0;
	top: 0;
}
.tags-box {
   margin-bottom: 30px; 
}
.tags-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tags-box ul li {
	display: inline-block;
	margin: 0 5px 8px 0;
}
.tags-box ul li a {
	color: #6b6b6b;
	border: 1px solid #ddd;
	padding: 3px 10px;
	display: inline-block;
	font-size: 14px;
}
.tags-box ul li a:hover {
    background-color: #4e2a84;
    border: 1px solid #4e2a84;
    color: #fff;
}
.pagination-area {
	text-align: center;
    margin-top: 30px;
}
.pagination-area .pagination {
	margin: 0;
}
.pagination-area .pagination > li > a {
	background-color: #f0f4f7;
	float: none;
	margin: 2px;
	color: #0d3b66;
	border-radius: 50%;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 0;
	line-height: 38px;
}
.pagination-area .pagination > .active > a {
	background-color: #4e2a84;
	border-color: #4e2a84;
    color: #fff;
}
.pagination-area .pagination > li > a:focus, 
.pagination-area .pagination > li > a:hover {
	color: #fff;
	background-color: #4e2a84;
	border-color: #4e2a84;
}
.blog-details-content {
    margin-bottom: 40px;
}
.blog-details-content .post-image {
    position: relative;
}
.blog-details-textarea {}
.blog-details-textarea .title {
	font-weight: 600;
	line-height: 28px;
	font-size: 25px;
	margin: 30px 0 10px;
}
.blog-details-textarea p {
    margin-bottom: 25px;
}
.post-admin {
	color: #6b6b6b;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 15px;
}
.post-admin a {
	color: #001F91;
}
.sharing-link {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
}
.sharing-link li {
	display: inline-block;
	margin: 0 5px 10px 0px;
}
.sharing-link li a i {
	color: #888;
	border: 1px solid #888;
	display: block;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 28px;
	border-radius: 3px;
	font-size: 14px;
    transition: .3s;
    -webkit-transition: .3s;
}
.sharing-link li a i:hover {
    background-color: #4e2a84;
    border: 1px solid #4e2a84;
    color: #fff;
}
.comments-area {}
.comments-area .title {
    color: #0d3b66;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 30px;
    text-transform: uppercase;
    border-bottom: 1px dashed #ddd;
    padding: 0 0 15px;
    position: relative;
}
.comments-area .title::before {
    background-color: #4e2a84;
    content: "";
    height: 2px;
    width: 40px;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.comments-area .single-comments {
    margin-bottom: 30px;
}
.comments-area .single-comments .media {
    margin: 0;
}
.comments-area .single-comments .media-object {
	height: 80px;
	width: 80px;
	max-width: 800px;
	border-radius: 50%;
    border: 1px solid #4e2a84;
}
.comments-area .single-comments .media-left {
    padding-right: 20px;
}
.comments-area .single-comments .media-body h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}
.comments-area .single-comments .media-body p {}
.comments-area .single-comments .media-body .reply {
    color: #6b6b6b;
    text-transform: uppercase;
    font-size: 13px;
}
.comments-area .single-comments .media-body .reply:hover {
    color: #4e2a84;
}
.comments-area .single-comments .mt {
    margin-top: 30px !important;
}
.comments-area .single-comments .bg {
	background-color: #f0f4f7;
	padding: 5px 15px 10px 15px;
	border-radius: 3px;
}
.comments-area .single-comments .c-date {
    color: #6b6b6b;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}
.comments-form {
    margin-top: 40px;
}
.comments-form .title {
    color: #0d3b66;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 30px;
    text-transform: uppercase;
    border-bottom: 1px dashed #ddd;
    padding: 0 0 15px;
    position: relative;
}
.comments-form .title::before {
    background-color: #4e2a84;
    content: "";
    height: 2px;
    width: 40px;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.comments-form .form-group {
    margin-bottom: 20px;
}
.comments-form .form-control {
    background-color: #f0f4f7;
	border-radius: 0;
	border-color: #f0f4f7;
    border-bottom-color: #caced1;
	height: 42px;
    box-shadow: inset 0 0 1px rgba(0,0,0,.075);
}
.comments-form .form-control:focus {
	border-color: #001F91;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0, 31, 145,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0, 31, 145,.6);
}
.comments-form textarea.form-control {
    height: auto !important;
}
.comments-form .form-control::-moz-placeholder {
	color: #676767;
}
.comments-form .default-button {
	padding: 8px 25px;
	font-size: 14px;
}
/*
* ------------------------------------------------------------
* 12.OUR SUBSCRIBE SECTION STYLE
* ------------------------------------------------------------
*/
.subscribe-section {
    background-image: url("../../assets/img/subscribe_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-attachment: fixed;
}
.subscribe-section:before {
    background-color: #4e2a84;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: .9;
}
.subscribe-form {
    position: relative;
    max-width: 600px;
    margin: auto;
}
.subscribe-form h2 {
    color: #fff;
    margin: 0 0 40px;
    text-align: center;
    font-size: 40px;
}
.subscribe-form form {
    position: relative;
}
.subscribe-form .form-control {
    border-radius: 100px;
    height: 45px;
    padding: 7px 25px;
}
.subscribe-form .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #4e2a84;
    color: #fff;
    height: 45px;
    border-radius: 100px;
    border-color: #4e2a84;
    padding: 6px 25px;
    text-transform: uppercase;
}
.subscribe-form .subscribe-btn:hover {
    background: #010101;
}
/*
* ------------------------------------------------------------
* 13.OUR SUBSCRIBE SECTION STYLE
* ------------------------------------------------------------
*/
.contact-section {}
.contact-form {}
.contact-form .form-control {
	height: 40px;
	border-radius: 0;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	box-shadow: none;
	margin-bottom: 20px;
}
.contact-form textarea.form-control {
    height: auto !important;
}
.contact-form .form-control:focus {
    border-color: #4e2a84;
}
.contact-form .default-button {
	padding: 8px 25px;
	font-size: 15px;
}
.contact-form {
	background: #f5f5f5;
	padding: 20px;
}
.contact-info h3 {
	margin: 0 0 20px;
	font-size: 22px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}
.contact-info p {
    margin-bottom: 20px;
}
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info ul li {
	position: relative;
	padding: 6px 0 6px 45px;
    margin-bottom: 10px;
}
.contact-info ul li i {
	display: inline-block;
	position: absolute;
	left: 0;
	background: #4e2a84;
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	top: 0;
    border-radius: 50%;
}
#rc-imageselect, .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
} 
#contact_send_status {
	color: red;
	margin: 0 0 10px;
}
/*
* ------------------------------------------------------------
* 14.FOOTER SECTION STYLE
* ------------------------------------------------------------
*/
.footer {
	background: #4e2a84;
	padding: 40px 0 30px;
}
.foot-title {
	text-align: center;
	color: #fff;
	margin: 0;
    text-transform: uppercase;
    font-size: 25px;
}
.footer ul {
	list-style: none;
	padding: 0;
	margin: 25px 0 20px;
	text-align: center;
}
.footer ul li {
    display: inline-block;
    margin: 0 3px;
}
.footer ul li i {
	background: #fff;
	color: #4e2a84;
	display: inline-block;
	height: 35px;
	width: 35px;
	line-height: 35px;
	border-radius: 50%;
	font-size: 17px;
}
.footer ul li i:hover {
    background: #101010;
    color: #fff;
}
.footer p {
    color: #fff;
    margin: 0;
    text-align: center;
}
.footer p a {
    color: #fff;
}
/*
* ------------------------------------------------------------
* 15.BACK TO TOP BUTTON STYLE
* ------------------------------------------------------------
*/
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
}
.back-to-top i {
    background-color: #4e2a84;
    border-radius: 1px;
    color: #ffffff;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 35px;
    display: inline-block;
}
.back-to-top i:hover {
    background-color: #010101;
    color: #ffffff;
}
 