/* 
    1-General style
    2-Sections
        2.0- navbar Section 
        2.1- Home Section   
        2.4- Contact Section  
*/


/* 1- general css style */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Varela Round', sans-serif;
    background: #e9e9e9;
}
.line{
    display: block;
    height: 4px;
    width: 50px;
    background: #000;
    margin: 20px;
    transition: width .5s;
}
.header:hover .line{
    width: 150px;
}
a{
    text-decoration: none;
}
hr{
    color: #fff;
}
h2,h3{
    text-transform: capitalize;
}

/* 2.0- navbar */

.address{
    color: #0ff;
    margin: 0 30px;
    font-size: .90em;
}
.navbar-brand img{
    width: 100%;
    height: 70px;
}
.details a{
    font-size: .95em;
}
@media screen and (max-width:992px) {
    .details .address{
        display: none;       
    }
}
.navbar-collapse ul> li{
    display: inline-block;
    width: 120px;
    text-align: center;
}
.navbar-collapse ul> li > a{
    color: #fff;
    display: block;
    font-size: 18px;
}
.nav-link{
    position: relative;
}
.nav-link::before,
.nav-link::after{
    content: "";
    position: absolute;
    border-color: #dc3545;
    border-style: solid;
    top: 0;
    left: 0;
    
}
.nav-link::before{
    border-width: 0 4px;
    width: 100%;
    height: 100%;
    transform: scale3d(1,0,1);
    transition: transform 0.2s;

}
.nav-link::after{
    border-width:  4px 0;
    width: 100%;
    height: 100%;
    transform: scale3d(0,1,1);
    transform-origin: left;
    transition: transform 0.4s;
}
.nav-link:hover:before{
    transform: scale3d(1,1,1);
}
.nav-link:hover::after{
    transform: scale3d(1,1,1);
    transition-delay: .2s;
}

/* home  */
.home{
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: right top;
    padding: 180px 0;
}
.home-title{
    text-transform: capitalize;
    font-size: 38px;
    font-weight: bold;
}
.home-desc{
    margin-top: 20px;
    font-size: 20px;
    word-spacing: 1.7px;
}
/* About */
.about{
    background: #f7f3ef;
    width: 100%;
}
.about-items{
    position: relative;
}
.about-icon{
    position: absolute;
    left: 0;
    top: 20px;
}
.about-title{
    padding: 20px 30px;
    font-size: 30px;
    text-transform: capitalize;
}
.about-desc{
   word-spacing: 5px;
}
.about-img{
    padding-top: 40px;
    transition: transform .5s;
}
.about-img:hover{
    transform: scale(1.1);
} 
/* maintenance */
.maintenance-title{
    text-transform: capitalize;
    font-weight: bold;
    font-size: 35px;    
}

.maintenance-desc{
    color: #000;
    word-spacing: 3px;
}
.maintenance-item .effect-img{
    position: relative;
}

.maintenance-item .overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    transition: transform 0.5s;
}
.maintenance-item:hover .overlay{
    transform: scaleX(1);
}

.maintenance-info{
    width: 95%;
}
/* effective */
.effective-item{
    background-image: url(../images/garage-door-installation-des-moines-2-1.webp);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position:  center;
    padding: 200px 100px;
}
.effective-desc{
    color: #fff;
    word-spacing: 3px;
    padding-left: 20px;
    font-size: 20px;
}
.service{
    margin-top: -100px;
}
.service-desc{
    word-spacing: 3px;
    font-size: 18px;
}
.service-item{
    color: #fff;
}
.service-item:hover .service-title{
    color: #dc3545;
}
.service-desc{
    word-spacing: 3px;
    color: #fff;
    transition: 0.5s color;
}
.service-item:hover .service-desc{
    color: #dc3545;
}
/* contact us */
.contact-item{
    font-size: 20px;
    text-transform: capitalize;
}
.contact-title{
    text-transform: capitalize;
    font-size: 25px;
}
/* info */
.info-button{
    border: 4px solid #8c2333;
    transition: background 1s;
    width: 150px;
}
.info-button:hover{
    background-color: #8c2333;
    border: 4px solid #8c2333;
}

.move {
position: relative;
opacity: 0;
}
.move.active {
opacity: 1;
}
.active.fade-bottom {
animation: fade-bottom 1s ease-in;
}
.active.fade-left {
animation: fade-left 1s ease-in;
}
.active.fade-right {
animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.none-select{
    user-select: none;
}


 form.CUS input.subject { display: none; }