/*------------------------------------------------------------------

Project:	A Future HTML UI Kit
Version:	1.0.0
Author: 	webstrot 

------------------------------------------------------------------
[Table of contents]
 
1. comments_form_section start
2. social_icon_section start
3. contact_info_section start


*/


/* custom css start */

.section_heading{
	margin-bottom:30px;
	text-align:center;
}
.section_heading h2{
	font-size: 30px;
    margin: 0 0 5px;
    text-transform: uppercase;
	font-weight:600;
    position: relative;
}
.section_heading h3 {
    font-size: 16px;
	margin-bottom:15px;
    color: #4285f4;
}
.section_heading span.bordered-icon {
	color: #dadada;
    padding: 0 10px;
    font-size: 12px;
    line-height: 18px;
    position: relative;
    display: inline-block;
}
.section_heading span.bordered-icon:before, 
.section_heading span.bordered-icon:after {
	content: "";
    background: #dadada;
    width: 50px;
    height: 1px;
    top: 8px;
    position: absolute;
}
.section_heading span.bordered-icon:before {
  left: 100%;
}
.section_heading span.bordered-icon:after {
  right: 100%;
}
.section_content{
	margin-bottom:50px;
}
.section_content p{
	font-size:16px;
	text-align: center;
}

/* custom css end */


/** comments_form_section_section start **/

.comments_form_section {
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.comments_form_section h4{
	 font-size: 30px;
    margin-bottom: 40px;
    color: #111;
}
.comments_form_section h4:after{
	display: block;
    content: "";
    background: #4285f4;
    border: 1px solid #4285f4;
    width: 40px;
    height: 4px;
    border-radius: 3px;
    margin-top: 13px;
}
.comments_form_section .form-control {
	height: 53px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #efefef;
    border-radius: 3px;
    box-shadow: none;
    font-family: 'Roboto';
	-webkit-transition: all 0.3s ease 0s;
   -moz-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   background-color: transparent;
}
.comments_form_section textarea.form-control{
	height:auto;
	resize:none;
}
.comments_form_section input::placeholder, .comments_form_section textarea::placeholder {
  color: #999;
}
.comments_form_section .form-control:focus {
	color: #999;
	background-color: transparent;
	border: 1px solid #4285f4 !important;	
}
.comments_form_section .btn{
	margin: 0 auto;
    padding: 15px 32px;
	letter-spacing:1px;
	margin-top:20px;
	text-transform:uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.comments_form_section .btn-primary{
	background: #4285f4;
  	border: 1px solid #4285f4 !important;
}
.comments_form_section .btn-primary.focus,
.comments_form_section .btn-primary:hover{
	background-color: transparent;
  	color: #4285f4;
  	border: 1px solid #4285f4 !important;
}
.comments_form_section .btn:focus{
	outline:none;
}
.comments_form_section-pos,.comments_form_section-e,.comments_form_section-m,.comments_form_section-p{
	position: relative;
}
.form-group.i-name:after, .form-group.i-email:after, .form-group.i-subject:after, .form-group.i-message:after {
    position: absolute;
    top: 13px;
    font-size: 18px;
    font-family: "FontAwesome";
    color: #c0c0c0;
}
.comments_form_section .form-group.i-name:after{
	content: "\f007";
	right: 32px;
}
.comments_form_section .form-group.i-email:after{
	content: "\f003";
	right: 32px;
}
.comments_form_section .form-group.i-message:after{
	content: "\f059";
	right: 32px;
}.comments_form_section .form-group.i-subject:after{
	content: "\f064";
	right: 32px;
}

/** comments_form_section end **/


/** social_icon_section start **/

.social_icon_section{
	float:left;
	width:100%;
}
.social_icon_content{
	float: left;
    width: 20%;
    padding: 80px 0px;
    text-align: center;
    line-height: 0;
}
.social_icon_content a{
	display:inline-block;
}
.social_icon_img{
	float: left;
    color: #fff;
    font-size: 30px;
}
.social_icon_heading{
	float: left;
    padding-left: 10px;
    padding-top: 17px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}
.facebook{
	background:#3c5a96;
}
.twitter{
	background:#1dadea;
}
.youtube{
	background:#c4302b;
}
.linkedin{
	background:#127cb4;
}
.google_plus{
	background:#db4c3e;
}

/** social_icon_section end **/


/** contact_info_section start **/

.contact_info_section{
	float:left;
	width:100%;
	padding-top:100px;
	padding-bottom:100px;
}
.contact_info_content{
	float:left;
	width:100%;
}
.contact_info_content:hover .contact_info_icon{
	background:#4285f4;
	color:#fff;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.contact_info_icon{
	float:left;
	border:1px solid #4285f4;
	border-radius:50%;
	color:#4285f4;
	font-size:22px;
	width:100px;
	height:100px;
	line-height:100px;
	text-align:center;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.contact_info_details{
	float:left;
	width:calc(100% - 100px);
	padding-left:20px;
	padding-top:20px;
	color:#999;
}
.contact_info_details h2{
	font-size:18px;
	font-weight:600;
	text-transform:uppercase;
	padding-bottom:10px;
}
#map{
	width: 100%; 
	height: 600px;
}

/** contact_info_section end **/


@media (min-width: 992px) and (max-width: 1199px){
	
	.working_hours_wrapper tbody td {
		padding: 10px 0px;
	}
	.enquiry_form_section ul li a {
		font-size: 15px;
	}
	.contact_info_content {
		margin-bottom:40px;
	}
}

@media (min-width: 768px) and (max-width: 991px){
	
	.contact_details_wrapper {
		padding: 50px 30px;
	}
	.working_hours_wrapper {
		padding: 50px 30px;
	}
	.working_hours_wrapper tbody td {
		padding: 10px 0px;
	}
	.enquiry_form_section ul li a{
		line-height: 30px;
	}
	.contact_info_content {
		margin-bottom:40px;
	}
}

@media (max-width: 767px){
	
	.contact_details_wrapper {
		width:100%;
		margin-bottom:40px;
	}
	.working_hours_wrapper {
		width:100%;
	}
	.call_to_action:after {
		left: 47%;
	}
	.social_icon_content {
		width: 100%;
	}
	.contact_info_content {
		margin-bottom:40px;
	}
}

@media (max-width: 480px){
	
	.call_to_action:after {
		left: 42%;
	}
	.callout_content h2{
		font-size: 20px;
	}
}

@media (max-width: 390px){
	
	.about_text_wrapper_btn{
		text-align: center;
	}
	.about_text_wrapper_btn button {
		display: inline-block;
	}
}