body{
    font-family:sans-serif ;
    line-height: 1.7;
    color: #516171;

}

h1,h2,h3,h4,h5,h6{
    font-weight: 700 !important;
    color: #092032;

}

a{
    color: #092032;
    text-decoration: none;
    transition: all 0.4 ease;
    font-weight: 500;
}

img{
    width: 100%;

}

section{
    padding-top: 100px;
     padding-bottom: 80px;
}


.bg-cover{
background-position: center !important;
background-size: cover !important;
background-position: center !important;
}


/*Navebar*/
.top-nav{
    background-color: #000000;
    padding-top: 5px;
    padding-bottom: 5px;
    
}

.top-nav p{
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: #ffff;
}

.top-nav i,
.top-nav span {
    vertical-align: middle;

}

.social-links a{
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    font-size: 20px;
    border-radius: 100%;

}

.social-links a:hover{
    background-color: #ffff;
    color: #000000;
}

.navbar{
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active{
    color: #ff4d29;


}

.navbar-brand{
    font-weight: 700;
    font-size: 26px;
    color: #ff4d29;
}

.navbar-brand span{
    color: #516171;
}

.navbar-nav li{
    margin: 10px;


}



/*BTN*/
.btn{
    padding: 9px 24px;
    font-weight: 500;
    margin: 5px;

}

.btn-brand {
    background-color:#000000 ;
    color: #ffff;
    border-color: #000000;
}

.btn-brand:hover{
    color: #ffff;
    background-color: #afafaf;
}

/* SLIDER */
.slider{
    width: 100%;
    height: 100vh;
    background-image: url(img/glass1.jpeg);
    background-size: 100% 100%;
    animation: changeImage 20s linear infinite;
}

@keyframes changeImage{
    0%{
        background-image: url(./img/glass4.jpg);
    }
    25%{
        background-image: url(./img/glass.jpeg);
    }
    50%{
        background-image: url(./img/glass5.jpg);
    }
    75%{
        background-image: url(./img/glass6.jpg);
    
}
}


 
 /*WHY US*/
 .choose{
    background-image: url(./img/image2.jpg);
    height: 800px;
 }


 .choose h1{
        text-align: center;
        font-size: 100px;
        font-family: Arial, Helvetica, sans-serif;
        margin-top: 100px;
 }

 .row1 .col-lg-3 i{
    color: white;
    size: 50px;
 }

 /*QUALITY*/
 #wrapper{
    background-color: rgba(226, 219, 228, 0.767);
 }

/*FOOTER*/
.social-links a{
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    font-size: 20px;
    border-radius: 100%;

}

.social-links a:hover{
    background-color: #ffff;
    color: #000000;
}

/*CONTACT*/
.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(./img/image.jpg);
    background-size: cover;
}

.contact .content{
    max-width: 800px;
    text-align: center;
}

.contact .content h2{
    font-size: 36px;
    font-weight: 500;
    color: #fff;

}

.contact .content p{
    font-weight: 300;
    color: #fff;
    
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .contactinfo{
    width:50%;
    display: flex;
    flex-direction: column;
}

.container .contactinfo .box{
position: relative;
padding: 20px 0;
display: flex;

}

.container .contactinfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container .contactinfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.container .contactinfo .box .text h3{
    font-weight: 500;
    color: aqua;
}

.contactForm{
     width: 40%;
     height: 40px;
     background-color: #fff;
}

.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}

.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;

}

.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16x;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
}

.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contactForm .inputBox input:focus ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);

}