/* Header CSS */
.icons i{
    background-color: #a62748;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
}

.navbar .bg-layout{
    background-color: #a62748;
    color: #fff;
    padding: 0.5rem 1rem;
}

.collapse .navbar-nav li a{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0px 1rem;
    transition: background-color 0.5s;
    padding: 0.3rem 2rem !important;
    text-transform: uppercase;
}

.collapse .navbar-nav li a:hover{
    background-color: #fff;
    color: #a62748 !important;
    border-radius: 5px;
}



.brand_logo .brand_name{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #a62748;
    text-transform: uppercase;
}

@media (max-width:991px) {
    .contact_details{
        margin-top:1rem;
    }
}
@media (max-width:1199px) {
    .contact_details p{
        font-size: 15px !important;
    }
}

@media (max-width:438PX) {
    .contact_details i{
        font-size: 10px !important;
        padding: 5px !important;
    }
     .contact_details p{
        font-size: 12px !important;
    }
}

@media (max-width:352PX) {
    .contact_details i{
        font-size: 8px !important;
        padding: 3px !important;
        margin: 2px !important;
    }
     .contact_details p{
        font-size: 10px !important;
    }
}
/* Index Css */

.grid_show{
    background-color: #ffb468;
}

.craft_box .cstm_border{
    border-right: 2px solid #a62748;
}

.grid_show .craft_box div:hover .box-images{
      animation: updown 1s linear infinite;
}

@keyframes updown {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}

.box-text{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.grid_show .craft_box div:hover .box-text{
    color: #a62748;  
}

@media (max-width:911px) {
    .box-text{
        font-size: 1rem !important;
    }
    .box-images{
        width: 70px !important;
    }
}

@media (max-width:767px) {
    .grid_show{
        background-color: #fff;
    }
   .craft_box div{
    background-color: #ffb468;
    margin-bottom: 0.5rem !important;
    border: none !important;
    padding: 0.6rem;
   }
}

.index-heading{
    padding: 0.7rem 0px;
    background-color: #a62748;
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Products */
.product_container .product_box{
    background-color: #fff;
    box-shadow: 0px 0px 5px grey;
    padding: 0.5rem 0.5rem;
    text-align: center;
}

.viwe_all .button{
    background-color: #a62748;
    color: #fff;
    margin-top:2rem;
    transition: all 0.5s;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, 
}

.viwe_all .button:hover{
    background-color: #fff;
    color: #a62748;
    box-shadow: 0px 0px 16px #000;
}

/* custum slider */

.slider {
  position: relative;
  overflow: hidden;
}

.slider__wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.slider__item {
  flex: 0 0 25%;
  max-width: 25%;
}

.slider__control {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  transform: translateY(25%);
  background: rgba(0, 0, 0, .5);
}

.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.slider__control_left {
  left: 0;
}

.slider__control_right {
  right: 0;
}

.slider__control::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_left::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider__control_right::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.slider__item>div {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* footer css */
.footer_conatiner{
    background-color: #a62748;
}

.footer_list{
    list-style: none;
    text-decoration: none;
    padding-left: 0.5rem;
}

.footer_list .footer_items .footer_links{
    text-decoration: none;
    color: #fff;
    line-height: 2.5rem;
    transition: all 0.2s;
}

.footer_list .footer_items .footer_links:hover{
    padding-left: 0.5rem;
}

.sub_footer{
    background-color: #d62856;
    padding: 0.5rem 1rem;
}
/* <mouse hover zoom> */
.zoom {  
    transition: transform 1s;
    margin: 0 auto;
    overflow: hidden;
}
    
.zoom:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(0.9); 
}

.img_zoom {
    overflow: hidden;

}

.img_zoom img{
    transition: all 1s;
}
.img_zoom img:hover{
    transform: scale(3);
}

.text_color_contact{
    color: #a62748;
}

.banner_img img{
    transition: all 0.3s;
}

.banner_img img:hover{
    transform: scale(1.03);
    box-shadow: 0px 0px 10px grey;
}

.img-size{
    height: 217px !important;
}

/*  */

@media (max-width:400px) {
    .slider__item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    
    }
    .slider__item img{
        height: 100% !important;
    }
}
/* call & whatsapp btn  */
.Whatsapp_btn {
  position: fixed;
  bottom: 0px;
  left: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.Whatsapp_icon {
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #00833b;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;

  
}

@keyframes pulse {
0% {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
}
80% {
  box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
}
  
}

.Phone_btn {
  position: fixed;
  bottom: 0px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.Phone_icon {
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #327ff3;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
}

.btn-contact{
  background-color: #a62748;  
  color: white;
}
.btn-contact:hover{
    background-color: black;  
}