
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,900&display=swap');

* {
    box-sizing: border-box !important;
    margin:0;
    padding:0;
    
}

.container {
    max-width: 1170px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: #666666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
}

.bg-cherry{
    background-color:#D2042D;
}
.navbar-light .navbar-nav .nav-link{
    padding:10px;
    font-size:14px;
    color:#fff;
    text-transform: uppercase;
    font-weight:600;

    }

    .navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color:#D2042D;
    background-color:#FFFFFF;
    border-radius:10px;


}
/* end navbar*/
/* carousel start*/



.carousel-item img {
    height: 400px;
    object-fit: cover;
}

/* end carousel*/


/* about section*/
.about{
    background-color: #FFFFFF;
    color:#D2042D;

}
.about h2{
    background-color: #FFFFFF;
    color:#D2042D;
    font-weight:600;


}

.about p{
    text-align: justify;
    font-size:14px;
    color:#330099;
    line-height: 1.9;
}
/*products section*/

/* Card style */
.card {
  border:none;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image animation */
.card img {
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

/* Overlay */
.card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
  font-size: 20px;
  font-weight: bold;
}

/* Hover Effects */
.card:hover img {
  transform: scale(1.2);
}

.products .card:hover .overlay {
  opacity: 1;
}

/* Section spacing */
.gallery {
  padding: 50px 0;
}




/*end products section*/


/*service section*/

.services h2{
  background-color:#FFFFFF;
  color:#D2042D;
  font-weight:600;

}
.services .card-body i{
  font-size:40px;
  
}

.services .card-body h3{
    color:#FFFF00;
}


.services .card-body p{
    color:#FFFFFF;
    text-align:justify;
    font-size:16px;
}

/* end service section*/


/*social icons*/
.contact-box {
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
    height: 100%;
}
.social-icons i {
    font-size: 24px;
    margin-right: 10px;
    cursor: pointer;
    
}
iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
}






/* Custom CSS for the button */
    #scroll-to-top {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 30px;
    }

    /* end custom css */