.bg-f2f2f2{
    background-color: #f2f2f2;
}
.si-sticky {
    position: fixed;
    top: 50%;
    right: 5px;
    width: 80px;
    z-index: 100;
}
.si-font {
    font-size: 10px;
    font-weight: 800;
}
.portfolio-view-image {
    box-shadow: 3px 3px 9px 3px lightgrey;
}
.portfolio-content{
    padding: 10px;
}
.portfolio-heading {
    font-size: 28px;
    font-weight: 600;
}
.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.inner-box {
    position: relative;
}
.portfolio-image img{
    position: relative;
    width: 100%;
    display: block;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.inner-box .portfolio-image .overlay-box {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 40%;
    display: block;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
    background: -moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
    background: -o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
    background: -ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
}
.inner-box .portfolio-image .overlay-box .content-box {
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 0px 28px 22px;
}
.overlay-box .content-box .content {
    position: relative;
}
.overlay-box .content-box .content h3 {
    position: relative;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 600;
}
.overlay-box .content-box .content h3 a{
    color: #fff;
}

.navbar{
    padding: 0rem 5rem;
}
.myslider-para{
    height: 120px;
    overflow-y: scroll;
}
.myslider-para::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.myslider-para::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.myslider-para::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #D62929;
}

.nav-link{
    font-family: 'Teko', sans-serif;
    font-size: 20px !important;
    letter-spacing: 1px;
    color: #111 !important;
    font-weight: 400;
    padding: 16px 10px !important;
}
.book-link{
    font-family: 'Teko', sans-serif;
    font-size: 20px !important;
    letter-spacing: 1px;
    margin-top: 10px;
    font-weight: 400;
    padding-top: 8px;
    padding-bottom: 4px;
    padding-right: 18px;
    padding-left: 18px;
    background-color: #ED1C24;
}

.home-c-f{
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    box-shadow: 3px 3px 9px 3px lightblue;
}
.custom-input {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 0px !important;
    border-color: #ccc;
    margin-top: 20px;
    padding: 0px 19px;
    width: 100%;
    height: 40px;
    color: #111111;
}
.custom-input:focus {
    box-shadow: none;
    border: 1px solid #ec1a22;
    color: #111111;
    background: none;
}
.zoominterior {
    padding-top: 20px;
    padding-bottom: 20px;
	transform: translateX(0) translateY(-5px) translateZ(0) rotate(1deg) scale(1);
	-webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
	transition: all 0.6s ease-out;
}
.zoominterior:hover{
    box-shadow: 3px 3px 9px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12);
    transform: scale(1.04);
	transition: all 0.6s ease-out;
}


.project-container .title{
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .content {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
  }
  
  .content .content-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  
  .content:hover .content-overlay{
    opacity: 1;
  }
  
  .content-image{
    width: 100%;
  }
  
  .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .content:hover .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  
  .content-details h3{
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
  }
  
  .content-details p{
    color: #fff;
    font-size: 0.8em;
  }
  
  .fadeIn-bottom{
    top: 80%;
  }

  

.logosize{
    width: 200px;
}
.bg-black{
    background-color:#242424;
}

.nav-social-icon{
    padding: 5px;
    border: 1px solid;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
    margin-right: 10px;
    color: white;
}

.section{
    padding-top: 54px;
    padding-bottom: 54px;
}
.section-heading{
    font-size: 40px;
    font-weight: 800;
    color: red;
   
}
.bg-mybtn{
    background-color: red;
    color:#fff !important;
    border-radius:12px;
}

.c{
    margin-top: 0;
    margin-bottom: 0rem;
}
.underline{
    width: 70px;
    height: 3px;
    background-color: #ED1C24;
    margin-bottom: 10px;

}
.read-more{
    color: #ED1C24 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline !important;
}


p{
    font-size: 14px;
}
.imgwhy{
    width: 50% !important;
    margin-right: auto;
    margin-left:auto;
   
}

.bg-testi{
    background-image: url(../images/testi.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.red{
    color:#ED1C24;
}


.black{
    color:#000000;
}

hr.style-one {
    border: 0;
    height: 2px;
    background:rgb(170, 6, 6);
    background-image: linear-gradient(to right,rgb(197,8,8), rgb(170, 6, 6), rgb(197, 8, 8));
}

.footer-link{
    color: #fff !important;
    font-size: 14px;
    line-height: 2;
}

.space{
    padding-right: 30px;
}

.copyright{
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ED1C24;  
}

.bg-test{
    background-image: url(../images/test.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    width: 100%;
    height: 300px; 
}


.bg-transparent-black {
    background-color: rgba(0,0,0,0.33);
}

.bg-aboutus {
    background-image: url(../images/banner/about-us.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}
.bg-history {
    background-image: url(../images/banner/our-history.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.bg-architecture {
    background-image: url(../images/banner/architecture.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.bg-commercial {
    background-image: url(../images/banner/commercial.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.bg-residential {
    background-image: url(../images/banner/residential.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}
.bg-turnkey {
    background-image: url(../images/banner/turnkey.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}
.bg-projects{
    background-image: url(../images/banner/residential.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.bg-contact{
    background-image: url(../images/banner/contact-us.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.banner-padding {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: rgba(0, 0, 0, 0.19);
}
.banner-paddings {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    background-color: rgba(0, 0, 0, 0.19);
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

a{
    cursor:pointer;
    text-decoration:none !important;
    font-family: 'Poppins',sans-serif;

}

.breadcrumb-list li a {
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
    background-color: transparent;
}

.sec-underline{
    
        bottom: -10px;
        margin-bottom: 10px;
        width: 60px;
        height: 4px;
        background: #ED1C24;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
element.style {
    visibility: visible;
    animation-name: fadeInUp;
}
.bg-redcolor{
    background-color:#cc2a14;
}

.fa-key-icon {
    font-size: 42px;
}

.howwrk-number {
    background-color: #cc2a14;
    padding-top: 7px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-weight: 400;
}


.mypara {
    font-size: 12px;
   
    font-size: 12px;
    line-height: 21px;
    color: #111111;
}

.bg-residential {
    background-image: url(../images/elivation.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.fa-service-social-icon {
    margin-left: 20px;
}

/* Dropdown for laptop */
.service-dropdown {
    display: inline-block;
    padding: 0;
    position: relative;
}

.service-dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease 0s;
    position: relative;
}

.service-dropdown ul {
    background: #ED1C24 none repeat scroll 0 0;
    padding: 0px 0px;
    top: 60px;
    left: 12px;
    opacity: 0;
    position: absolute;
    text-align: left;
    transition: all 0.4s ease 0s;
    visibility: hidden;
    z-index: 99999;
    transition: all 0.3s ease 0s;
    border-top: 2px solid #d3bfbf;
}
.service-dropdown:hover ul {
    visibility: visible;
    transition: all 0.4s ease 0s;
    opacity: 1;
    top: 60px;
    /* width: 300%; */
}
.service-dropdown ul li {
    padding: 0% 0% 0% 0%;
    /* border-bottom: 1px solid #ccc; */
    margin-bottom: 0px;
    width: 250px;
    list-style: none;
}
.service-dropdown ul li a {
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 2px;
    line-height: 120%;
    padding: 15px 25px;
    color: #fff;
    border-bottom: 1px solid #b8bbd4a6;

}

.service-dropdown ul li a:hover {
    transition: all 0.4s 0s ease;
    color: #fff;
}
/* Dropdown for laptop */
.about-us-section{
    padding-left: 3rem !important;
    padding-bottom: 3rem !important;
    padding-right: 3rem !important;
    padding-top: 3rem !important;
}
.f-16{
    font-size: 16px;
}
.f-18{
    font-size: 18px;
}
.bg-red{
    background-color: #ED1C24;    
}
.color-red{
    color: #ED1C24;
}
.bg-page{
    background-color: #e5eef6;
}
/* Underline Design */
.underline-design {
    display: block;
    height: 12px;
    width: 12px;
    background: #ED1C24;
    bottom: -19px;
    left: 50%;
    margin-left: -9px;
    position: relative;
    margin-bottom: 36px;
}
.underline-design:before {
    left: -111px;
}
.underline-design:after, .underline-design:before {
    position: absolute;
    height: 1px;
    width: 100px;
    top: 5px;
    background: rgba(0, 0, 0, .34);
    content: '';
}
.underline-design:after {
    left: 23px;
}
.underline-design:after, .underline-design:before {
    position: absolute;
    height: 1px;
    width: 100px;
    top: 5px;
    background: rgba(0, 0, 0, .34);
    content: '';
}
/* Underline Design */
.testi-img{
    width: 100px !important;
}
.testi-content{
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
}
.contact-info {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.myth-padding {
    padding: 10px 9px 10px 0px !important;
}
.service-body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0rem;
    background: #fff;
    transition: all 0.4s ease 0s;
}
.service-body:hover{
    background: #262626;
    box-shadow: inherit;
    color: #fff !important;
    transition: all 0.4s ease 0s;
}
.c-contact-input {
    background-color: #f2f2f2;
    border-radius: 2px;
    border: 1px solid #eeeeee;
    box-shadow: none;
    width: 100%;
    padding: 26px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999999;
    transition: all 100ms ease-out;
}
.c-contact-input:focus {
    box-shadow: none;
    border: 1px solid #ff0000;
    color: #111111;
    background: none;
}
a:hover{
   color: black;
}
.lap-hide-nav {
    display: none;
}
.apply-loan-form{
    margin-top: -560px;
}
@media all and (max-width: 1320px) and (min-width: 1024px) {

    .nav-link {
        font-family: 'Teko', sans-serif;
        font-size: 16px !important;
        letter-spacing: 1px;
        color: #111 !important;
        font-weight: 400;
        padding: 16px 4px !important;    
    }
}
@media only screen and (max-width: 600px) {
    .logosize {
        width: 170px;
        padding: 8px;
    }
    .mobile-hide-nav {
        display: none;
    }
    .lap-hide-nav {
        display: inherit;
    }
    .navbar {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0rem 1rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .navbar .dropdown-menu a {
        padding: 0px 10px;
        font-size: 0.9375rem;
        font-weight: 300;
        color: #000;
    }
    .nav-link {
        color: #424141;
        font-weight: 400;
        font-size: 14px;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .title-heading {
        color: #565656;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .about-us-section{
        padding-left: 0rem !important;
        padding-bottom: 0rem !important;
        padding-right: 0rem !important;
        padding-top: 0rem !important;
    }
    .section-heading {
        font-size: 30px;
        font-weight: 800;
        color: red;
    }
    .m-col-50{
        width: 50%;
    }
    .w-70{
        width:70% !important;
    }
    .w-30{
        width:30% !important;
    }
}