﻿/*Modal start
-----------*/

/*Modal end
-----------*/
/*Buttons start
-----------*/

/*Buttons end
-----------*/
/*Index-banner start
-----------*/
#index-banner {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
#index-banner h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 4rem;
}
#index-banner h1:first-child {
    margin-bottom: 0rem;
}
#index-banner p {
    line-height: 1.2rem;
    color: #636363;
}
/*Index-banner end
-----------*/
/*Services start
-----------*/
#services .card-services {
    border-radius: 4px;
    border: 2px solid #000000;
    padding: 1.5rem;
    transition: .5s;
    margin-bottom: 2rem;
}
#services .card-services .icon img {
	width: 40px;
}
#services .card-services p {
    color: #898989;
    line-height: 1.1rem;
}
#services .card-services .title {
    font-weight: bold;
    text-transform:  uppercase;
}
#services .card-services:hover {
	border: 2px solid #fff041;
	box-shadow: 0px 0px 30px 3px #00000024;
}
/*Services end
-----------*/
/*Our-works start
-----------*/
#our-works {
    background-color: #fff;
    color: #000;
}
#our-works h3 {
    font-weight: bold;
    text-transform: uppercase;
}
#our-works .works a {
	color: #000;	
}
#our-works .works a:hover {
	color: #000;
	text-decoration: none;	
}
#our-works .card {
	border-radius: 4px;
	overflow: hidden;
	border: none;
	background: hsla(0, 0%, 0%, 0.2);
	text-align: center;
	margin-bottom: 2rem;
	cursor: pointer;
	transition: .5s;
}
#our-works .card:hover {
	box-shadow: 0px 0px 25px 3px #00000024;
}
#our-works .card-img-top {
	border-radius: 0px;
	transition: .5s;
	height: 280px;
	padding: 1rem;
	font-size: .8em;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#our-works .card-img-top .gradient {
	opacity: 0;
	transition: .5s;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: #eaeaea5c;
	width: 100%;
	height: 100%;
}
#our-works .card:hover .gradient {
	opacity: 1;
}
#our-works .card-img-top .row {
	opacity: 0;
	transition: .5s;
}
#our-works .card:hover .row {
	opacity: 1;
}
#our-works .card .arrow {
    color: #000;
}
#our-works .card .arrow img {
	width: 20px;
}
#our-works .card .arrow img.hover {
	display: none;
} 
#our-works .card .arrow:hover img.no-hover {
	display: none;
}
#our-works .card .arrow:hover img.hover {
	display: block;
    color: #e30000;
}
#our-works .card .title {
    font-weight: bold;
}
/*Our-works end
-----------*/
/*Order-footer start
-----------*/
#order-footer {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
#order-footer h1 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 1rem;
}
#order-footer h1::after {
	content: ' ·';
	color: #fff041;
	font-size: .8em;
}
#order-footer h4 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: .8rem;
}
#order-footer .contact p {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 1rem;
}
#order-footer .contact a {
	color: #fff;
}
#order-footer .contact a:hover {
	color: #fff041;
}
#order-footer .navbar-nav {
    display: block;
}
#order-footer .navbar-nav li {
    display: inline-block;
}
#order-footer .navbar-nav li a {
	padding: 1rem;
	padding-left: 0;
	padding-right: 2rem;
	color: #5d5d5d;
	font-size: 1.5em;
}
#order-footer .navbar-nav li a:hover {
	color: #fff;
}
/*Order-footer end
-----------*/
/*large desktops*/
@media (min-width: 1200px) {
    
}
/*desktops*/
@media (min-width: 992px) and (max-width: 1999px) {
    
}
/*tablets*/
@media (min-width: 768px) and (max-width: 991px) {
    
}
/*phones*/
@media (min-width: 576px) and (max-width: 767px) {
    
}
/*extra phones*/
@media (max-width: 575px) {
    
}
/*large desktops, desktops, tablets, phones*/
@media (min-width: 576px) {
    
}
/*large desktops, desktops, tablets*/
@media (min-width: 768px) {
    
}
/*large desktops, desktops*/
@media (min-width: 992px) {
    #services .card-services {
    	min-height: 200px
    }
}
/*desktops, tablets, phones, extra phones*/
@media (max-width: 1999px) {
    
}
/*desktops, tablets, phones*/
@media (min-width: 576px) and (max-width: 1999px) {
    
}
/*desktops, tablets*/
@media (min-width: 768px) and (max-width: 1999px) {
    
}
/*tablets, phones, extra phones*/
@media (max-width: 991px) {
    .section {
		height: max-content!important;
		height: -moz-max-content!important;
		height: -webkit-max-content!important;
		height: -o-max-content!important;
	}
	#index-banner {
	    padding-top: 1rem;
	}
	#index-banner h1 {
        font-size: 2rem;
    }
    #our-works .card .gradient {
		opacity: 1;
	}
	#our-works .card .row {
		opacity: 1;
	}
	#order-footer h1 {
		text-align: center;
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 0;
		letter-spacing: .5rem;
	}
	#order-footer h1::after {
		content: '';
	}
	#order-footer .navbar-nav li a {
		padding: 1rem;
	}
}
/*tablets, phones*/
@media (min-width: 576px) and (max-width: 991px) {
    
}
/*phones, extra phones*/
@media (max-width: 767px) {
    
}