@media only screen and (max-width: 600px) {
	.m-heading {
		font-size: 18px;
	}
	.m-hview{
	    color: #fff;
	}
}
.m-bottom{
	margin-bottom: 70px;
}

.slider-content{
	padding-top: 19%;
}
.service-h:hover{
	background-color: #e74c3c;
	color: #fff;
	cursor: pointer;
}
.h-mb{
	margin-bottom: 10px;
}
.bg-orange{
	background-color: #e74c3c;
}
.underline{
	border-bottom: 4px solid #ee4826;
}
.redhover:hover{
	color: #ffffff !important;
    background-color: #ee4826;
}

.redhover h3:hover{
	color: #ffffff!important;
    background-color: #ee4826;
}

.redhover p:hover{
	color: #ffffff!important;
    background-color: #ee4826;
}
/* .feature-box-pop-up {
	padding-top: 15%!important;
    padding-bottom: 8%!important;
    margin-top: 0px!important;
    margin-bottom: 0px!important;
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
} */

.feature-box-pop-up:hover{
	transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    box-shadow: 0px 3px 22px 4px ;
}

.in-card{
	padding-top: 15%!important;
    padding-bottom: 8%!important;
    margin-top: 0px!important;
    margin-bottom: 0px!important;
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
}

.in-card:hover{
	transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    box-shadow: 0px 3px 22px 4px rgba(237,39,0,0.98);
}

.f-18{
	font-size: 18px;
}
.heading-underline{
    border-bottom: 4px solid #ee4826;
	width: 15%;
	margin-left: auto;
    margin-right: auto;
}
.bg-blue{
	background-color: #105aa5;
}
.bg-f2f2f2{
	background-color: #f2f2f2;
}
.my-text{
	font-size: 14px;
}
.contact-margin{
	margin-bottom: 02%;
}
.infosize{
	font-size: 18px;
	font-weight: 600;
}
.color-gray {
	color: gray;
}
.service-text{
	font-size: 12px !important;
	font-weight: 100 !important;
}

.icon-borders{
	/* color: #343498 !important; */
	border: 1px solid lightgrey;
	/* padding: 03% 03% 03% 03%; */
}
.readmorehover:hover{
	color: #f5821f !important;
}
.color-blue-bg{
	background-color: #1d3766 !important;
}
.color-blue{
	color: #105aa5 !important;
}
.fonnter-margin{
	margin-bottom: 05%;
}
.footer-link{
	color: white;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 10px !important;
}
.footer-link:hover{
	color: #e74c3c;
}
.footer-heading{
	color: white;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 12px;
}
.contact-info{
	margin-top: 2%;
	margin-bottom: 1%;
}
.card {
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	border: 0px;
}

.border-box{
	border-top: 1px solid lightgray;
	border-right: 1px solid lightgray;
	border-left: 1px solid lightgray;
	border-bottom: 1px solid lightgray;
	padding: 3%;
}

.service-border{
	border: 1px solid lightgray;
	border-radius: 05px;
	padding: 4% 2% 2% 2%;	
}

.zoommyimg img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .5s ease-in-out;
}
.zoommyimg:hover img {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}


.border-line{
    border: 1px solid #777777;
    margin-bottom: 10px;
}

.border-light{
    border: 1px solid darkgray;
}


/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
	background-color: #555;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	opacity: 0.8;
	position: fixed;
	bottom: 23px;
	right: 28px;
	width: 280px;
  }
  
  /* The popup form - hidden by default */
  .form-popup {
	display: none;
	position: fixed;
	bottom: 0;
	right: 15px;
	border: 3px solid #f1f1f1;
	z-index: 9;
  }
  
  /* Add styles to the form container */
  .form-container {
	max-width: 300px;
	padding: 10px;
	background-color: white;
  }
  
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
	background-color: #ddd;
	outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
	background-color: #4CAF50;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom:10px;
	opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
	background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
	opacity: 1;
  }