@charset "utf-8";

/*============================================================
* Template Name    : HomeConstruction - Builder Landing Page
* Author           : Vishal Lad
* Version          : 1.0.0
* Created          : 08/May/2020;
* File Description : Main CSS file of the template
===========================================================*/

/*====================== TABLE 
    1.GOOGLE FONT
    2.BASIC
    3.COMMON
	4.PRELOADER
    5.NAVIGATION
    6.HOME
	7.QUOTES
    8.ABOUT 
    9.HIRE
    10.SERVICES
    11.TESTIMONIAL
    12.PROJECT
	13.COUNTER
	14.TEAM
    15.BLOG
	16.CONTACT
    17.FOOTER
	18.SCROLL-TOP
    19.RESPONSIVE
 ========================*/

/*====================== GOOGLE FONT ========================*/
 
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Lato:700,900');

/*====================== BASIC ========================*/
       
body {
    font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    font-weight: normal;
    letter-spacing: 0px;
}
h1,h2,h3,h4,h5,h6{
	font-family: "Lato", sans-serif;
}
h1,h2{
	font-weight: 800;
}
h2{
	font-size: 42px;
	color: #10131E;
}
p{
	font-size: 16px;
}
a,
a:hover,
a:focus,
button,
button:focus {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/*========================== END BASIC ============================*/

/*========================== START COMMON ============================*/
        
.section {
    padding: 100px 0;
    position: relative;
    background-color: #fff;
}
.bg{
	background-color: #F8F9FC;
}
.common-title h2{
	position:relative;
	margin-bottom:40px;
}
.common-title h2::before {
    border: 2px solid #EE1C25;
    content: "";
    left: 0px;
    position: absolute;
    top: 55px;
    width: 60px;
	right:0;
	margin:auto;
}
.common-title h2::after {
    content: '';
    position: absolute;
    top: 52px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    left: 0;
	right:0;
	margin:auto;
    padding: 0;
    border: 1px solid #EE1C25;
}
.common-desc {
    max-width: 700px;
	margin:auto;
}
.common-transition{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.common-transform {
    opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
    transform: scale(0);	
}
.common-transform-hover:hover .common-transform{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
    transform: scale(1);
	opacity: 1;
}
.btn {
    padding: 15px 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: none !important;   
    outline: none !important;
	font-weight: 800;
	border-radius: 48px;
}
.home-btn,
.custom-btn {
    border: 2px solid #EE1C25;
	background-color: #EE1C25;
	color:#fff;
}
.home-btn:hover,
.home-btn:focus{
    color: #fff;
    background-color: #10131E;
    border-color: #10131E;
}
.home-btn i, .custom-btn i  {
    margin-left: 10px;
}
.custom-btn:hover,
.custom-btn:focus{
    color: #000;
    background-color: #fff;
    border-color: #fff;
}
.custom-navbar .navbar-nav li a:hover,
.custom-navbar .navbar-nav li a.active,
.common-color,.blog .blog-title a:hover,
.read a.common-hover:hover {
    color: #EE1C25 !important;
}
.common-back-color {
    background-color: #EE1C25;
}
.layer {
    position: relative;
	background-position: center center;
    background-size: cover;
    background-attachment: fixed;	
}
.layer::before {
	background-image: url(../images/cover.jpg);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
}
.cover {
    position: relative;
	background-position: center center;
    background-size: cover;
    background-attachment: fixed;	
}
.cover::before {
	background-image: url(../images/plots.jpg);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
}

/*========================== END COMMON ============================*/

/*========================== START PRELOADER ============================*/

#preloader-content {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #EE1C25;
}

#preloader-content .loader {
    border: 8px solid #fff; /* Light grey */
    border-top: 8px solid transparent; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*========================== END PRELOADER ============================*/

/*==========================  START NAVIGATION ============================*/
       
.custom-navbar {
    background-color: #10131E;
    z-index: 999;
    padding: 20px 0;
	border-bottom: 3px solid #EE1C25;
}
.custom-navbar .navbar-nav li a {
    color: #fff;
    line-height: 24px;
    background-color: transparent;
	text-transform: uppercase;
    margin: 0 7px;
    font-family: "Lato", sans-serif;
    position: relative;	
	font-weight: 500;
}
.custom-navbar .navbar-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    top: 0;
    margin: auto;
    width: 8px;
    display: none;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #EE1C25;
}
.custom-navbar .navbar-nav li a:hover::before,
.custom-navbar .navbar-nav li a.active::before {
	display: block;
}
.custom-navbar .navbar-toggler {
    color: #fff;
	padding: 0px;
    font-size: 24px;   
}

/*==========================  END NAVIGATION ============================*/

/*==========================  START HOME ============================*/

.home {
    background-image: url("http://ceramiqueritzco.com/images/home4.jpg");
	position: relative;
	background-position: center center;
    background-size: cover;  
}
.home {
    background-image: url("http://ceramiqueritzco.com/images/home4.jpg");
	position: relative;
	background-position: center center;
    background-size: cover;  
}
.home::before {
    background-image: url("");
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
}
.home-height {
    height: calc(100vh - 80px);
}
.home .home-data {
    position:relative;
    height: 100%;
}
.home .home-inner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
    width: 75%;
}
.home .home-title {
    font-size: 50px;
	text-transform: uppercase;
}
.home .home-title span{
    color: #EE1C25;
}
.home .home-desc {
    max-width: 830px;
    line-height: 1.5;
    font-size: 18px;
}

/*==========================  END HOME ============================*/

/*==========================  START QUOTES ============================*/

.home-quotes {
    background-color: #EE1C25;
    padding: 15px 0px;
}
.quote_text {
    float: left;
}
.home-quotes .quote_text p {
    color: #333;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    margin: 11px 0;
    text-transform: uppercase;
}
.home-quotes .quote_button {
    float: right;
}
.home-quotes .quote_button a {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #10131E;
    display: inline-block;
    font-weight: 600;
    padding: 13px 25px;
    border-radius: 48px;
    transition: all .3s ease;
	font-size: 14px;
	text-transform: uppercase;	
}
.home-quotes .quote_button a:hover{
	background-color: #fff;
	color: #000;
}
/*==========================  END QUOTES ============================*/

/*==========================  START ABOUT ============================*/

.about .about-image{
	position:relative;
	z-index: 0;
}
.about .about-title h2::before {
    border: 2px solid #EE1C25;
    content: '';
    left: 0px;
    position: absolute;
    top: 55px;
    width: 60px;
    margin: auto;
}
.about .about-title h2::after {
    content: '';
    position: absolute;
    top: 52px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    left: 24px;
    padding: 0;
    border: 1px solid #EE1C25;
}
.about .about-title h2{
	position:relative;
	margin-bottom:26px;
}
.about h4 {
    color: #3a3a3a;
    font-size: 24px;
    font-weight: bold;
}
.about-image:before {
    position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    height: 100px;
    width: 100px;
    background-color: #ececec;
    z-index: -1;
}
 .about-image:after {
    position: absolute;
    content: '';
    right: -10px;
    bottom: -10px;
    height: 100px;
    width: 100px;
    background-color: #ececec;
    z-index: -1;
}

/*==========================  END ABOUT ============================*/

/*==========================  START HIRE ============================*/

.hire {
    background-image: url("http://epsilonitservice.com/moster/construction/images/hire.jpg");
}
.hire h2 {
    color: #FFF;
    font-size: 40px;
}

/*==========================  END HIRE ============================*/

/*==========================  START SERVICE ============================*/

.service .service-data {
    border: 1px solid #ecebeb;
}
.service .service-data:hover {
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .09);
	-webkit-transform: translate(0, -5px);
	-moz-transform: translate(0, -5px);
	-ms-transform: translate(0, -5px);
	-o-transform: translate(0, -5px);
	transform: translate(0, -5px);
}
.service .service-data .service-icon i {
    font-size: 60px;
	color: #c3c3c3;
}
.service .service-data h5 {
	font-size: 18px;
	color: #10131E;
}
.service img.svg-ico {
    width: 52px;
}
.service .service-data:hover img.svg-ico {
	filter: grayscale(100) brightness(10);
}
.service .service-data:hover{
	background-color: #EE1C25;
}
.service-data p {
    color: #6A7680;
}
.service-data:hover p {
    color: #000;
}

/*==========================  END SERVICE ============================*/

/*==========================  START TESTIMONIAL ============================*/
.testimonial{
	background-image: url("http://epsilonitservice.com/moster/construction/images/testimonial/testimonial-back.jpg");
}
.testimonial h2{
	color: #fff;
}
.testimonial .inner-testimonial .testimonial-data {
    max-width: 700px;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-img img{
	height: 130px;
	width: 130px !important;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-detail {
    background-color: #fff;
    padding: 20px;
    margin-top: 50px;
	position: relative;
}
.testimonial .testimonial-data .testimonial-detail::before {
    content: '';
    position: absolute;
    left: 40%;
    margin: auto;
    top: -39px;
    border-top: 20px solid transparent;
    border-right: 20px solid #fff;
    border-bottom: 19px solid #fff;
    border-left: 20px solid transparent;
    width: 20px;
}
.testimonial .inner-testimonial .testimonial-data .client-review {
    font-size: 14px;
    color: #6c757d;
}
.testimonial .inner-testimonial .testimonial-data .client-name {
    font-size: 20px;
	color: #10131E;
}
.testimonial .inner-testimonial .testimonial-data .client-name.position {
    color: #EE1C25;
	font-weight: bold;
	font-size: 16px;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-icon i{
    font-size: 48px;
	color: #EE1C25;
}
.testimonial .owl-carousel .owl-dot {
    height: 15px;
    margin-right: 4px;
    width: 15px;
	background-color:transparent;
	margin-bottom: 10px;
}
.testimonial .owl-carousel .owl-dot.active{
	background-color:#EE1C25;
}
.testimonial .owl-carousel .owl-dots {
    text-align: center;
	margin-top: 15px;
}
.testimonial .owl-carousel .owl-dot{
	border:1px solid #EE1C25;
}

/*==========================  START TESTIMONIAL ============================*/

/*==========================  START PROJECT ============================*/

.project .project-image{
	position:relative;
	overflow: hidden;
}
.project .project-image img{
	width: 100%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.project .project-image:hover img{
	transform: scale(1.1);
}
.project .pro-view {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
	z-index: 1;
	background-color: rgba(232, 68, 58, 0.8);
}
.project .pro-view::before {
    position: absolute;
    content: '';
    border: 1px solid #fff;
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
}
.project .project-image .pro-view .pro-view-data a {
    color: #051429;
    display: inline-block;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	border: 2px solid #fff;
	background-color: #fafafa;
}
.pro-view-data i {
    font-size: 20px;
    line-height: 44px;
}
.pro-view-data {
    position: absolute;
    width: 100%;
    top: 50%;
	transform: translateY(-50%);
}
.pro-view-data h5 {
    font-size: 18px;
}
.project .project-image .pro-view .pro-view-data a:hover {
	background-color: #fff;
	color: #000;
}

/*==========================  END PROJECT ============================*/

/*==========================  START COUNTER ============================*/

.counter{
	background-image: url("http://epsilonitservice.com/moster/construction/images/counter/counter-back.jpg");
}
.counter-icon {
    font-size: 36px;
    color: #fff;
}
.counterarea {
    background-color: rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}
.counter .counter-number {
    display: block;
    color: #fff;
    font-size: 36px;
    line-height: 42px;
	margin-bottom: 10px;
}
.counter span {
    color: #fff;
    font-weight: bold;
}
.counter {
    text-align: center;
}

/*==========================  END COUNTER ============================*/

/*==========================  START TEAM ============================*/

.team-image {
    position: relative;
    overflow: hidden;
}
.team-data .team-image img {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
	max-width: 100%;
}
.team-data:hover .team-image img {
    transform: scale(1.1) rotate(5deg);
    -webkit-transform: scale(1.1) rotate(5deg);
    -moz-transform: scale(1.1) rotate(5deg);
}
.team-inner {
    background-color: #10131E;
    padding: 10px;
    position: absolute;
    bottom: -54px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
	z-index: 1;
}
.team-data:hover .team-inner{
	bottom: 0;
}
.team-data {
    overflow: hidden;
}
.team-image .team-inner ul {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0;
    transition: all .5s;
    z-index: 1;
	margin: 0 0 10px 0
}
.team-image .team-inner ul li {
    display: inline-block;
    margin: 0px 2px;
}
.team-image .team-inner ul li a {
    background-color: #1d1f25;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    color: #EE1C25;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.team-image .team-inner ul li a:hover{
	background-color: #EE1C25;
	color: #fff;
}
.team-inner .team-info {
    text-align: center;
    position: relative;
    padding: 0;
}
.team-inner .team-info a {
    color: #EE1C25;
    font-size: 20px;
    font-weight: 700;
}
.team-inner .team-info span {
    font-size: 14px;
    color: #fff;
    display: block;
}


/*==========================  END TEAM ============================*/

/*==========================  START BLOG ============================*/

.blog .blog-data p.blog-comment {
    font-size: 15px;
	color: #666;
}
.blog .blog-data p.blog-desc {
    font-size: 14px;
}
.blog .blog-data p.read {
    font-size: 15px;
}
.blog .blog-comment a {
    font-style: italic;
    font-size: 13px;
	font-weight: 500;
}
.blog .blog-img{
	position: relative;
}
.blog .blog-title h5{
	font-size: 18px;
}
.blog .blog-img img {
    width: 100%;
}
.blog .blog-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #fff;
    padding: 6px;
}
.blog p.read a{
	font-weight: bold;
	color: #EE1C25;
}
.blog .bg-white:hover .blog-date{
	background-color: #EE1C25;
	color: #fff;
}
.blog .blog-title h5 a {
    color: #10131E;
}
/*==========================  END BLOG ============================*/

/*==========================  START CONTACT ============================*/
.contact{
	background-image: url("http://epsilonitservice.com/moster/construction/images/project/view-10.jpg");
}
.contact .icon i {
    font-size: 30px;
    line-height: 32px;
}
.contact .contact-data:hover i {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
    transform: rotateY(180deg);
	color: #fff !important;
}
.contact .contact-data:hover .icon {
	background-color: #EE1C25;
	border: 2px solid #EE1C25;
}
.contact .contact-det h5{
	font-size: 18px; 
}
.contact p{
	color: #fff;
}
.contact h2{
	color: #fff;
}
.contact .contact-form textarea.form-control {
    height: auto;
	min-height:200px;
}
.contact-det {
    color: #fff;
}
.contact .contact-form .form-control {
	border: 2px solid transparent;
    box-shadow: none !important;
    height: 50px; 
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff;	
}
.contact .contact-form .form-control:focus {
    border: 2px solid #EE1C25;
}
.contact .contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}
.contact .icon {
    border: 2px solid transparent;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    position: relative;
}
.contact .icon i {
    font-size: 30px;
    line-height: 32px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    top: 0;
    width: max-content;
    height: max-content;
}

/*==========================  END CONTACT ============================*/

/*==========================  START FOOTER ============================*/

.footer {
    background-color: #10131E;
}
.footer .copy-right p {
    font-size: 14px;
    color: #fff;
	float: left;
	margin: 10px 0;
}
.footer ul{
	float: right;
}
.footer ul li a {
    border-radius: 50%;
    background-color: #1d1f25;
    width: 42px;
    height: 42px;
    display: block;
    font-size: 14px;
    line-height: 44px;
    text-align: center;
}
.footer ul li{
	margin: 0 !important;
}
.footer ul li a i {
    color: #fff;
}
.footer ul li a:hover i {
    color: #EE1C25;
}
.copy-right {
	float: left;
	width: 100%;
	padding: 12px 0;
}

/*==========================  END FOOTER ============================*/

/*==========================  START SCROLL-TOP ============================*/

.scrollToTop {
    border-radius: 50%;
    bottom: 15px;
    color: #fff;
    display: none;
    height: 50px;
    position: fixed;
    right: 15px;
    text-align: center;
    text-decoration: none;
    width: 50px;
    z-index: 99;
}
.scrollToTop i:focus {
    color: #fff;
}
.scrollToTop:hover i {
    color: #fff;
}
.scroll-top .fa-angle-up {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
	font-size: 30px;
    line-height: 48px;
}

/*==========================  END SCROLL-TOP ============================*/

/*===========================  RESPONSIVE ============================*/
@media (max-width: 1199px) {
	.home .home-inner{
		width: 65%;
	}
	.section {
		padding: 80px 0;
	}
}
@media (max-width: 991px) {
	.custom-navbar, .custom-navbar.sticky {
	    padding: 4px 0;
	}
	.home .home-inner{
		width: 100%;
	}
	.navbar-nav {
		margin: 15px 0;
	}
	.about .about-image {
        margin-top: 35px;
    }
	.counter .counter-number {
		font-size: 36px;
		line-height: 40px;
    }
	.section {
		padding: 60px 0;
	}
	.custom-navbar .navbar-nav li a {
		margin: 0;
		padding-left: 18px;
	}
	.custom-navbar .navbar-nav li a::before {
		left: 0;
	}
	.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 767px) {
	.section {
		padding: 40px 0;
	}
	.home .home-title {
        font-size: 40px;
    }
	.counter-data.one{
		margin-bottom: 30px;
	}
	.footer .copy-right p {
		width: 100%;
    }
	.footer ul {
		float: none;
    }
	.copy-right {
		text-align: center;
	}
	.quote_text {
		float: left;
		text-align: center;
		width: 100%;
    }
	.home-quotes .quote_button {
		float: none;
		text-align: center;
    }
}
@media (max-width: 543px) {
	
	.home .home-desc {
        line-height: 1;
	}
	.home .home-title {
		font-size: 42px;
	}
	.counter-data {
        max-width: 100%;
        flex: 0 0 100%;
    }
	h2 {
		font-size: 30px;
	}
	.about .about-title h2::before {
        top: 45px;
	}
	.about .about-title h2::after {
        top: 42px;
	}
	.common-title h2::before {
		top: 52px;
	}
	.common-title h2::after {
        top: 49px;
	}
	.hire h2 {
        font-size: 30px;
    }
	.counter-data.two{
		margin-bottom: 30px;
	}
	.scrollToTop{
		height: 40px;
		width: 40px;
	}
	.scroll-top .fa-angle-up{
		line-height: 38px;
	}
	.btn {
		padding: 10px 16px;
	}
}

/*===========================  END RESPONSIVE ============================*/
