
/*******************************************************
	Template Name	 : Plover - Agency One Page Html Template
    Author           : webtech-bd
    Version          : 1.0
    Created          : 2020
    File Description : Main css file of the template
*******************************************************/


/**************************************
	--CONTENT
	01.Generale Style
	02.Preloader Style
	03.Navber Style
	04.Home Section Style
	05.About Section Style
	06.Services Section Style
	07.Portfolio Section Style
	08.Hire Section Style
	09.Pricing Section Style
	10.Client-logo Section Style
	11.Contact Section Style
	12.Subscribe Section Style
	13.Footer Section Style
 *************************************/



/**
 * -------------------------------------------------------
 * 01. GENERALES STYLES
 * -------------------------------------------------------
 **/

body {
	background: #ffffff;
	color: #858585;
	font-family: 'Quicksand', sans-serif;
	font-size: 15px;
	font-weight: normal;
	line-height: 24px;
	overflow-x: hidden;
	margin: 0 auto;
	padding: 0;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	color: #131c2b;
}

a {
	color: #FF9800;
	text-decoration: none !important;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

img {
	max-width: 100%;
}

p {
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: #7d7d7d;
	line-height: 25px;
	font-family: 'Ubuntu', sans-serif;
}

.form-control:focus {
	box-shadow: none;
	outline: 0 none;
	border-bottom: 1px solid #d20202;
}

.button {
	display: inline-block;
    padding: 12px 30px;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 700;
    background: #d20202;
    transition: all 500ms ease;
    cursor: pointer;
    color: #fff;
	position: relative;
	letter-spacing: 0.1em;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
	font-family: 'Quicksand', sans-serif;
	--c: #231f20;
}

.button span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.button:hover {
    color: #ffffff;
}

.button:hover span {
    transform: translateY(0) scale(3);
}

.button span:nth-child(1) {
    --n: 1;
}

.button span:nth-child(2) {
    --n: 2;
}

.button span:nth-child(3) {
    --n: 3;
}

.button span:nth-child(4) {
    --n: 4;
}

.button:focus {
	outline: 0;
	box-shadow: none;
}

dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.section-padding {
	padding: 100px 0;
}
.sub-title {
    color: #7d7d7d;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-family: 'Ubuntu', sans-serif;
}
.section-title {
	text-align: center;
	margin-bottom: 25px;
}

.section-title h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 40px;
    color: #131c2b;
    margin-bottom: 35px;
}

.display-table {
	width: 100%;
	height: 100%;
	display: table;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.back-to-top {
	position: fixed;
	display: none;
	background: #d20202;
	color: #fff;
	width: 55px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	right: 0;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}

.back-to-top i {
	padding-top: 12px;
	color: #fff;
}
/**
 * -------------------------------------------------------
 * 02. GENERALES STYLES
 * -------------------------------------------------------
 **/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #d20202;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/**
 * -------------------------------------------------------
 * 03. Navber Style
 * -------------------------------------------------------
 **/

.navbar-b {
	transition: all .5s ease-in-out;
	background-color: transparent;
	padding-top: 1.563rem;
	padding-bottom: 1.563rem;
}

.navbar-b.navbar-reduce {
	box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

.navbar-b.navbar-trans .nav-item, .navbar-b.navbar-reduce .nav-item {
	position: relative;
	padding-right: 10px;
	padding-left: 0;
}

.navbar-b.navbar-trans .nav-link, .navbar-b.navbar-reduce .nav-link {
	color: #000;
	text-transform: capitalize;
	font-weight: 500;
	letter-spacing: 0.3px;
	font-family: 'Ubuntu', sans-serif;
}

.navbar-b.navbar-trans .nav-link:hover, .navbar-b.navbar-reduce .nav-link:hover {
	color: #1B1B1B;
}

.navbar-b.navbar-trans .nav-link:hover {
	color: #d20202;
}

.navbar-b.navbar-trans .show > .nav-link, .navbar-b.navbar-trans .active > .nav-link, .navbar-b.navbar-trans .nav-link.show, .navbar-b.navbar-trans .nav-link.active {
	color: #d20202;
}

.navbar-b.navbar-reduce {
	transition: all .5s ease-in-out;
	background-color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
}

.navbar-b.navbar-reduce .nav-link {
	color: #585858;
}

.navbar-b.navbar-reduce .nav-link:hover {
	color: #d20202;
}

.navbar-b.navbar-reduce .show > .nav-link, .navbar-b.navbar-reduce .active > .nav-link, .navbar-b.navbar-reduce .nav-link.show, .navbar-b.navbar-reduce .nav-link.active {
	color: #d20202;
}

.navbar-b.navbar-reduce .navbar-brand {
	color: #d20202;
}
.navbar-b.navbar-reduce .navbar-brand span{
	color: #FF9800;
}

.navbar-b.navbar-reduce .navbar-toggler span {
	background-color: #1B1B1B;
}

.navbar-b .navbar-brand {
	color: #000;
	font-size: 35px;
	font-weight: 700;
	font-family: 'Ubuntu', sans-serif;
}

.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu, .navbar-b .dropdown.show .dropdown-menu, .navbar-b .dropdown-btn.show .dropdown-menu {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	visibility: visible !important;
}

.navbar-b .dropdown-menu {
	margin: 1.12rem 0 0;
	border-radius: 0;
}

.navbar-b .dropdown-menu .dropdown-item {
	padding: .7rem 1.7rem;
	transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item:hover {
	background-color: #d20202;
	color: #fff;
	transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item.active {
	background-color: #d20202;
}

.navbar-toggler {
	position: relative;
}

.navbar-toggler:focus, .navbar-toggler:active {
	outline: 0;
}

.navbar-toggler span {
	display: block;
	background-color: #fff;
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	left: 0;
	opacity: 1;
}

.navbar-toggler span:nth-child(1), .navbar-toggler span:nth-child(3) {
	transition: -webkit-transform .35s ease-in-out;
	transition: transform .35s ease-in-out;
	transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.9;
}
.navbar-nav.navbar-sub-button {
    margin-left: 110px;
}
.navbar-nav.navbar-sub-button .button {
    border-radius: 10px;
}
/**
 * -------------------------------------------------------
 * 04. Home Section Style
 * -------------------------------------------------------
 **/

.intro {
	height: 100vh;
	position: relative;
	text-align: left;
	background: url(../img/home-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index:1;
}

.intro:after {
    position: absolute;
    content: "";
    right: 60px;
    bottom: 120px;
    height: 100%;
    width: 100%;
    z-index: -1;
   /** background: url(../img/undraw.svg);*/
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 45%;
}
.home-content h1 {
	font-size: 70px;
    color: #000000;
    margin-bottom: 35px;
    font-weight: 700;
}

.home-content p {
    margin-bottom: 50px;
    color: #7d7d7d;
    font-size: 24px;
}
.home-content .iq-video {
    background: #d20202;
    display: inline-block;
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    float: left;
    border-radius: 100%;
    line-height: 72px;
    z-index: 9;
    position: relative;
}
.home-content .iq-video i {
    padding-left: 5px;
}
.home-content .video-box h4 {
    display: inline-block;
    margin-left: 30px;
    margin-top: 20px;
    font-size: 27px;
}
.home-content .iq-video::before,
.home-content .iq-video::after {
	content: "";
    display: block;
    position: absolute;
    border: 10px solid #d2020280;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: animate 1.7s linear infinite;
    backface-visibility: hidden;
}

.home-content .iq-video::after {
  animation-delay: 0.5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/**
 * -------------------------------------------------------
 *  05. About Section Style
 * -------------------------------------------------------
 **/
.about-area {
    padding: 140px 0;
}
.about-area .about-top-area {
    padding-bottom: 150px;
}

.about-creative-business {
    display: block;
    overflow: hidden;
    margin-top: 50px;
}
.color-1 {
	color: #ffb400 !important;
}
.color-2 {
	color: #b832fd !important;
}
.color-3 {
	color: #08981c !important;
}
.color-4 {
	color: #78a154 !important;
}
.color-5 {
	color: #4f93a6 !important;
}
.color-6 {
	color: #fecb3c !important;
}
.about-creative-business .creative-business-icon i {
    font-size: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #FFC107;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.09);
    border-radius: 50%;
}
.creative-business-content h3 {
    font-size: 23px;
	margin-top: 13px;
	margin-bottom: 15px;
	
}

.about-creative-business .creative-business-icon {
    width: 15%;
    float: left;
    text-align: center;
}

.about-creative-business .creative-business-content {
	width: 80%;
    float: right;
}

.about-bottom-area {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.about-side-image {
	position: absolute;
    background: url(../img/about-bottom-bg.png) scroll center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: right center;
    height: 100%;
}
.side-image-text {
    padding-left: 40px;
}
.about-bottom-content {
    padding-bottom: 200px;
}
.about-bottom-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.about-bottom-content h4 {
    font-size: 20px;
    margin-bottom: 40px;
}

.about-bottom-content p {
    margin-bottom: 45px;
}

/**
 * -------------------------------------------------------
 *  06. Services Section Style
 * -------------------------------------------------------
 **/
.services-area {
}
.service-title h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.service-title h4 {
    font-size: 20px;
    margin-bottom: 35px;
}

.service-title p {
    margin-bottom: 40px;
}
.service-right-side {
    margin-top: 200px;
}
.icon-block {
    background: #eeeeee;
    padding: 30px 20px 30px 30px;
	border-radius: 8px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.icon-block:hover {
    background: #d20202;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.color1-block {
    margin-bottom: 30px;
}

.color2-block {
    margin-top: 30px;
}
.color4-block {
    margin-top: 30px;
}
.icon-block .icon i {
    font-size: 70px;
    color: #d20202;
    margin-bottom: 10px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.icon-block:hover .icon i {
    color: #ffffff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}
.icon-block .icon-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.icon-block:hover .icon-info h3 {
	color:#fff;
}

.icon-block:hover .icon-info p {
	color:#fff;
}
/**
 * -------------------------------------------------------
 *  07. Portfolio Section Style
 * -------------------------------------------------------
 **/
#portfolio {
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
}
.portfolio-title h2 {
    font-size: 40px;
}
#portfolio .portfolio-list {
	margin-bottom: 50px;
	text-align: center;
	margin-top: 40px;
}

#portfolio .portfolio-list .nav {
	display: inline-block;
	margin: 0;
	padding: 15px 20px;
	background: #f4f4f4;
	border-radius: 10px;
}

#portfolio .portfolio-list .nav li {
	float: left;
	font-size: 20px;
	color: #000000;
	cursor: pointer;
	font-weight: 600;
	text-transform: capitalize;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	padding: 18px 25px;
}

#portfolio .portfolio-list .nav li:hover, #portfolio .portfolio-list .nav li.filter-active {
	color: #d20202;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

#portfolio .portfolio-container {
	display: inline-block;
	width: 100%;
}
.portfolio-grid-item .portfolio-single-item {
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
    display: block;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}
.portfolio-single-item .portfolio-hover-title {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 0;
    background-color: rgba(68, 59, 138, 0.85);
}
.portfolio-single-item .portfolio-hover-title:hover {
	opacity: 1;
}

.portfolio-single-item .portfolio-hover-title .portfolio-content {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
    height: auto;
    text-align: center;
	overflow: hidden;
    -webkit-transition: .5s;
    transition: .5s;

}
.portfolio-single-item .portfolio-hover-title:hover .portfolio-content {
    opacity: 1;
}
.portfolio-single-item .portfolio-hover-title .portfolio-content i {
    color: #fff;
    font-size: 30px;
	transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
}
.portfolio-single-item:hover .portfolio-hover-title .portfolio-content i {
    transition: transform ease 0.4s 0.4s;
    -webkit-transition: transform ease 0.4s 0.4s;
    -moz-transition: transform ease 0.4s 0.4s;
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
}
.portfolio-grid-item img {
    width: 100%;
}
.portfolio-single-item figure .image-box{
    position: relative;
    overflow: hidden;    
	margin-bottom: 0;
}

.portfolio-grid-item figure figcaption {
	padding: 30px 30px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    background: #fff;
}
.portfolio-grid-item figure figcaption p {
    font-size: 20px;
    margin-bottom: 15px;
}
.portfolio-grid-item figure figcaption h3 {
    font-size: 25px;
}

/**
 * -------------------------------------------------------
 *  08. Hire Section Style
 * -------------------------------------------------------
 **/
.hire-area {
    padding: 70px 0;
    background: #d20202;
}

.hire-content span {
    color: #fff;
}

.hire-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 40px;
}
.hire-content .underline-mark {
	text-decoration: underline !important;
    color: #fff;
}
.hire-content .hire-button {
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 2px;
    border-radius: 4px;
    font-weight: 700;
    background: #d20202;
    transition: all 500ms ease;
    cursor: pointer;
    color: #fff;
    margin-right: 30px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.29);
}
.hire-content .hire-popup-button {
    background: #fff;
    padding: 12px 30px;
    color: #d20202;
	font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
	display: inline-block;
    transition: all 500ms ease;
    cursor: pointer;
    margin-right: 30px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.29);
}
/**
 * -------------------------------------------------------
 *  09. Pricing Section Style
 * -------------------------------------------------------
 **/
.pricing-area {
    padding-top: 150px;
    padding-bottom: 60px;
}
.pricing-title h2 {
    font-size: 40px;
    margin-bottom: 60px;
}
.pricing-content {
    background: #e6e6e9;
	border-radius: 10px 10px 10px 10px;
}
.active-pricing-top-section {
    background: #d20202;
    padding: 13px;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
}

.active-pricing-top-section h6 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.pricing-content.active-price {
    border-radius: 0px 0px 10px 10px;
}

.pricing-content.none-active {
    margin-top: 50px;
	
    transition: box-shadow 0.2s ease, z-index 0s 0s ease, -webkit-transform 0.2s ease;
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease, -webkit-transform 0.2s ease;
}
.pricing-content.none-active:hover {
    box-shadow: 0 8px 50px rgba(193, 223, 255, 0.3);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: box-shadow 0.2s ease, z-index 0s 0s ease, -webkit-transform 0.2s ease;
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease, -webkit-transform 0.2s ease;
}
.pricing-content .pricing-top-section {
    padding: 25px;
}

.pricing-content .pricing-top-section h6 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pricing-content .pricing-center-section {
    background: #000;
    padding: 12px;
    text-align: center;
}

.pricing-content .pricing-center-section h6 span {
    font-size: 30px;
    color: #fff;
}

.pricing-content .pricing-center-section h6 {
    color: #fff;
}

.pricing-content .pricing-bottom-section {
    padding: 25px;
}

.pricing-content .pricing-bottom-section ul li i {
    font-size: 13px;
    color: #d20202;
    padding-right: 10px;
}

.pricing-content .pricing-bottom-section ul li {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Ubuntu', sans-serif;
}

.pricing-content .pricing-button {
    font-size: 16px;
    color: #fff;
    background: #d20202;
    font-weight: 700;
    display: block;
    padding: 12px 30px;
    margin-top: 50px;
    border-radius: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Quicksand', sans-serif;
}

/**
 * -------------------------------------------------------
 *  10. Client-logo Section Style
 * -------------------------------------------------------
 **/
.client-area {
	padding-bottom: 145px;
	
}
.owl-carousel .owl-item img {
    display: block;
    width: 85%;
    margin: 0 auto;
}
.owl-theme .owl-dots {
	text-align: center;
	margin-top: 18px;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	outline: none;
}

.owl-theme .owl-dots .owl-dot span {
	width: 18px;
	height: 18px;
	margin: 5px 5px;
	background: #cde1f8;
	border: 0px solid #cde1f8;
	display: block;
	transition: all 0.6s ease-in-out;
	cursor: pointer;
	border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #cde1f8;
}

.owl-theme .owl-dots .owl-dot.active span {
	background-color: #d20202;
	border-radius: 50%;
}

/**
 * -------------------------------------------------------
 * 11. Contact Section Style
 * -------------------------------------------------------
 **/
#contact {
	background: #f9f9f9;
}
.contact-title h2 {
    font-size: 38px;
    margin-bottom: 60px;
}
.contact-info-title {
    margin-bottom: 20px;
}
.contact-info-title h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-address {
    font-size: 14px;
    line-height: 22px;
}
.contact-address ul li {
    padding: 10px 0;
}
.contact-address ul li i {
	margin-right: 13px;
    font-size: 15px;
    line-height: 18px;
    float: left;
    display: inline-block;
    padding-top: 13px;
    background: white;
    width: 30px;
    height: 42px;
    text-align: center;
    border-radius: 30px;
}

.contact-address ul li a {
    color: #ff631e;
}
.contact-address span {
    overflow: hidden;
    display: block;
    font-weight: 300;
}
.icon-color i{
	color: #2c7ae7;
}

.form-control {
	height: 45px;
	width: 100%;
	background: #fff;
	border: none;
	border-bottom: 1px solid #dddddd;
	margin-bottom: 35px;
	letter-spacing: 1px;
	font-size: 13px;
	border-radius: 0;
}
.form-group {
    margin-bottom: 0;
}
form.contact-form .button i {
    margin-left: 10px;
	vertical-align: middle;
}
.contact-form button {
    border: 0;
}
#contact .form-message.success {
    background: #03b103;
    color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
}	  
#contact .form-message.error {
    background: #ff4d15;
    color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
}

/**
 * -------------------------------------------------------
 * 12. Subscribe Section Style
 * -------------------------------------------------------
 **/
 .Subscribe-area {
    background: #d20202;
    padding: 80px 0;
}

.Subscribe-newsletter h2 {
    font-size: 40px;
    color: #fff;
	margin-top: 7px;
}
.Subscribe-form .form-group {
    margin: 0;
}
form.Subscribe-form input {
    width: 60%;
    height: 65px;
    border-radius: 50px 0px 0px 50px;
    padding-left: 25px;
    border: none;
    display: inline-block;
    float: left;
	margin: 0;
}

.Subscribe-form .subscribe-button {
    width: 25%;
    height: 65px;
    border: none;
    background: #d20202;
    border-radius: 0px 50px 50px 0px;
    border: none;
    display: inline-block;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.29);
    text-align: center;
}

.Subscribe-form .subscribe-button i {
    font-size: 40px;
    color: #fff;
}
/**
 * -------------------------------------------------------
 * 13. Footer Section Style
 * -------------------------------------------------------
 **/
.footer {
    background: #ffffff;
}
.footer-top-area {
	padding-top: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.footer-top-area h5 {
    margin-bottom: 30px;
}

.footer-top-area .list-menu li {
    margin-bottom: 5px;
}
.footer-link-list li {
    display: inline-block;
    margin-right: 20px;
}
.footer-social-list .list-inline li {
    display: inline-block;
    margin-right: 20px;
}
.footer-link-list li a {
    color: #7d7d7d;
    font-family: 'Ubuntu', sans-serif;
}
.footer-top-area .list-menu li a {
    font-size: 16px;
    color: #7d7d7d;
    font-family: 'Ubuntu', sans-serif;
}
.footer-bottom-area {
    padding: 30px 0;
}
.footer-social-list ul li a i {
    color: #000;
    font-size: 16px;
}
.footer-social-list ul li:hover i{
	color: #d20202 !important;
}
.copyright-text p {
    color: #7d7d7d;
}