
/* 
AWRA Co. 
Auther: Anmar A.
-----------------
#96DED1
#3CAEC9
*/

body{
    /* font-family: monts; */
    margin: 0;
  padding: 0;
}

.section-padding{
    padding: 100px 0;
    min-height: 100vh;
}

.section-header{
    margin-bottom: 80px;
}

.section-header h2{
    font-weight: 500;
    font-size: 3.2rem;
}

.section-header h2 span{
    color: #3CAEC9;
}

.navbar{
    background: #fff;
}

.navbar-nav{
    font-size: 18px;
    font-weight: 500;
}

.navbar-light .navbar-brand{
    color: #262626;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 2px;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover{
    color: #262626;
}

.navbar-light .navbar-nav .nav-link{
    /* color: #262626; */
    color: #3CAEC9;
}

.navbar-light .navbar-nav, .nav-link:focus,
.navbar-light .navbar-nav, .nav-link:hover{
    color: #262626 !important;
}

.navbar-toggler{
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    background: #fff;
}

/* CAROUSEL */

.carousel-item{
    height: 100vh;
    min-height: 300px;

}

.color-overlay{
    height: 100vh;
    width: 100vh;
    background-color: rgb(0, 0, 0, 0.2);
}

.carousel-item img{
    opacity: 0.9;
}


.carousel-caption{
    bottom: 250px;
    z-index: 2;
    text-align: left;
    left: 12%;
    width: 45%;
    color: #637575;
    padding: 16px 26px;
    background-color: rgb(0, 0, 0, 0.6);
}

.carousel-caption .carousel-text-highlight{

    color: rgb(211, 207, 207);
    color: #3CAEC9;

}

.carousel-caption h5{
    font-size: 2.8rem;
    text-transform: capitalize;
    margin-top: 25px;
    color: #3CAEC9;
    color: rgb(211, 207, 207);
    font-weight: bold;

}

.carousel-caption p{
    width: 70%;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgb(211, 207, 207);
    font-weight: bold;
    
}

@media only screen and (max-width: 600px) {
    .carousel-caption{
        text-align: left;
        left: 12%;
        width: 80%;
        padding: 16px 26px;
        
    }

        
    .carousel-caption h5{
        font-size: 2.4rem;
        

    }

    .carousel-caption p{
        font-size: 1.0rem;
        width: 98%;
        
    }
  }

.carousel-caption .btn{
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px 20px;
    display: inline-block;
    background: #3CAEC9;
    font-weight: 600;
    margin-top: 15px;
    border-radius: 5px;
    color: #fff;
}

.carousel-indicators{
    bottom: 65px;
}

.carousel-indicators button{
    width: 100px !important;
    background-color: #464545 !important;
    opacity: 1;
}


/* ABOUT */
.ab-img img{
    width: 100%;    
}

.about-text h4{
    color: #3CAEC9;
    font-size: 18px;
}

.about-text p{
    color: #262626;
    line-height: 1.8;
}

.about-text a{
    background: #3CAEC9;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-block;
}

/* FEATURE */

.feature-text h4{
    color: #3CAEC9;
    font-size: 18px;
}

.feature-text p{
    color: #262626;
    line-height: 1.8;
}

.feature-text a{
    background: #3CAEC9;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-block;
}

.feature-icon-small{
    width: 3rem;
    height: 3rem;
}

.feature-icon-bg-color {
    color: #fff!important;
    background-color: #3CAEC9 !important;
}



/* SERVICES */


.service a{
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px 20px;
    display: inline-block;
    background: #3CAEC9;
    font-weight: 600;
    margin-top: 15px;
    border-radius: 5px;
    color: #fff;
}

.service h3{
    color: #3CAEC9 !important;

}

/* GALLERY */


#gallery img{

    transition: all 0.4s;
    filter: grayscale(90%);
    object-fit: cover;
    height: 230px;
    width: 100%;
}
#gallery img:hover{
    transform: scale(1.05);
    filter: grayscale(0%);

}


/* CONTACT */

.contact-info h4{
        color: #3CAEC9 ;
        /* font-size: 18px; */
    
}

.contact-form button{
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px 20px;
    display: inline-block;
    background: #3CAEC9;
    font-weight: 600;
    margin-top: 15px;
    border-radius: 5px;
    color: #fff;
}




/* GO TO TOP BTN */
#goTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
  #goTop a {
    background: transparent;
    color: #96DED1;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.5s linear;
  }

  /* #goTop i{
    width: 30px;
    height: 30px;
  } */


  #goTop a:hover {
    opacity: 1.0;
  }