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

/* navbar */
.navbar{
    background-color: #282E3E;
}
.navbar-collapse ul> li{
    display: inline-block;
    width: 120px;
    text-align: center;
    border-radius: 50px;
    color: #fff;
}
.navbar-collapse ul> li > a{
    display: block;
    font-size: 18px;
    color: #fff;
}
/* .logo{
    width: 200px;
    height: 100px;
} */
.navbar-collapse ul> li:hover{
    background-color: #83C434;
}

.nav-icon-1 {
    width: 30px;
    height: 30px;
    position: relative;
    transition: 0.1s;
    margin: 10px 10px;
    cursor: pointer;
    display: inline-block;
}
.nav-icon-1 span {
    width: 5px;
    height: 5px;
    background-color: #fff;
    display: block;
    border-radius: 50%;
    position: absolute;
}
.nav-icon-1 span:nth-child(1) {
    left: 0;
    top: 0;
}
.nav-icon-1 span:nth-child(2) {
    left: 12px;
    top: 0;
}
.nav-icon-1 span:nth-child(3) {
    right: 0;
    top: 0;
}
.nav-icon-1 span:nth-child(4) {
    left: 0;
    top: 12px;
}
.nav-icon-1 span:nth-child(5) {
    position: absolute;
    left: 12px;
    top: 12px;
}
.nav-icon-1 span:nth-child(6) {
    right: 0px;
    top: 12px;
}
.nav-icon-1 span:nth-child(7) {
    left: 0px;
    bottom: 0px;
}
.nav-icon-1 span:nth-child(8) {
    position: absolute;
    left: 12px;
    bottom: 0px;
}
.nav-icon-1 span:nth-child(9) {
    right: 0px;
    bottom: 0px;
}
.nav-icon-1:hover span {
    transform: scale(1.2);
    transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav-icon-1.open {
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav-icon-1.open span {
    border-radius: 50%;
    transition-delay: 200ms;
    transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav-icon-1.open span:nth-child(2) {
    left: 6px;
    top: 6px;
}
.nav-icon-1.open span:nth-child(4) {
    left: 6px;
    top: 18px;
}
.nav-icon-1.open span:nth-child(6) {
    right: 6px;
    top: 6px;
}
.nav-icon-1.open span:nth-child(8) {
    left: 18px;
    bottom: 6px;
}

/* home */

.home{
    background-image: url(../images/hero-section.webp);
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center right;
    padding: 100px 0;
}
.home-contant{
    border-radius: 50px;
    margin-top: 300px;
    z-index: 5;
}
.overlay{
    background-color:  rgba(70, 67, 66, 0.5);
    border-radius: 25px;
}
.home-title{
    color: #e9e9e9
}
.home-desc{
    font-size: 20px;
}
.home-btn , .home-btn2{
    
    border-radius: 50px;
    color: #fff;
    transition: background 0.5s;
}
.home-btn{
    background-color: #83C434;
}
.home-btn2{
    background-color: #282E3E;
}
.home-btn:hover{
    background: #282E3E;
    color: #fff;
}
.home-btn2:hover{
    background-color: #83C434;
}
.home span{
    font-size: 16px;
}
.home-exten{
    margin-top: -50px;
}
.exten-item{
    background-color: #282E3E;
    color: #fff;

}
.home .contact{
    background-color: #83C434;
   border-radius: 25px;
   width: 400px;
}
.tb-effect ,.lt-effect{
    position: relative;
    z-index: 5;
}
.tb-effect::after ,.lt-effect::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;   
}
.tb-effect::after{
    height: 0;
    background-color: #83C434;
    transition: height .5s;
}
.tb-effect:hover::after{
    height: 100%;
}
.tb-effect:hover{
    color: #282E3E;
}
.lt-effect{
    border-radius: 25px;
    background-color: #83C434;
}

.lt-effect::after{
    width: 0;
    background-color:#282E3E ;
    border-radius: 25px;
    transition: width .5s;
}
.lt-effect:hover::after{
    width: 100%;
}

/* brand */
/*marquee*/
.marquee{
    width:100%;
    margin:0 auto;
    overflow:hidden;
    white-space:nowrap;
    box-sizing:border-box;
    animation:marquee 50s linear infinite;
    color:#eee;
}
.marquee:hover{
    animation-play-state:paused
}
/* Make it move */
@keyframes marquee{
    0%{text-indent:27.5em
    }
100%{
    text-indent:-105em
    }
}
/* install */
.install{
    background-image: url(../images/install.webp);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    padding: 120px 0;
}
.install-button{
    background-color: #83C434;
    border-radius: 25px;
    display: block;
    width: 200px;
}
.install-desc{
    border-radius: 25px;
    background-color: rgba(70, 67, 66, 0.5);;
}
/* opener */
.opener-img{
    position: relative;
}
.layer-content{
    position: absolute;
    left: 0;
    top: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
}
.opener-img:hover .layer-content{
    opacity: 1;
    visibility: visible;
}
.layer-info{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    text-align: center; 
}
/* contact */
.contact{
    background-color: #282E3E;
}
.contact-item1{
    font-size: 14px;
}
.sup-title{
    color: #83C434;
    font-size: 25px;
}
.contact-btn{
    background-color: #83C434;
    border-radius: 25px;
}


   form.CUS input.subject { display: none; } 
 /* info */
.info{
    background-image: url(../images/Modern-Garage-Doors-Lighting.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.info-button{
    width: 170px;
}

.info-button:hover{
    background-color: #282E3E;
    color: #fff;
}
.info-title{
    color: #83C434;
}
.zipcodes{
    background-color: #83C434;
}
.contact-title{
    color: #83C434;
}
@media screen and (max-width:992px) {
    .info .info-button{
        width: 200px;       
    }
}
@media screen and (max-width:992px) {
    .home , .install , .info{
        background-attachment: scroll;
        background-position: 50%;
    }
}