:root {
    --txt-color: #333333;
    --bckrnd-color: #EEE;
    --red: #FF3333
}


body {
    font-family: 'Roboto', 'Cairo';
    background-image: url('/images/backround.jpg');

    background-attachment: fixed;

}

.btngray{
    background-color: var(--red);
}
.btngray:hover{
    background-color: var(--txt-color);
    color: var(--bckrnd-color);
}

.whatsapp:hover{
  
   fill: green;
}
.carousel-item img {
    height: 100vh;
}

.navbar {
    background-color: var(--bckrnd-color);

}

.dropdown-menu {
    background-color: var(--bckrnd-color);
    border: 0;
}

.navbar .search {
    border-left: 1px solid black;
    border-left-width: 1px;

}

.navbar-toggler:focus {
    box-shadow: none;
}

.home-slider {
    background-color: var(--txt-color);
    min-height: 100vh;
}

/* Start About Us */
.about-us {
    min-height: 60vh;
    background: linear-gradient(335deg, rgba(172, 169, 168, 0.1) 0%, rgba(2, 0, 0, 0.1) 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;

}

.bedrooms {
    min-height: 60vh;
}

.about-us-img {
    height: 400px;
}

.red {
    color: var(--red);
    font-weight: 1000;
}

/* End About Us */



.bedrooms-title::after {
    content: '';
    width: 180px;
    height: 3px;
    background-color: var(--txt-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.kitchens {
    min-height: 60vh;
    background: linear-gradient(335deg, rgba(172, 169, 168, 0.1) 0%, rgba(2, 0, 0, 0.1) 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.other-product .box {
    padding: 5px;
    overflow: hidden;
    position: relative;
}

.other-product .box::before {
    content: attr(data-product);
    position: absolute;
    background-color: #303e4666;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 5px;
    color: var(--bckrnd-color);
    font-size: 16pt;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transform: translateX(calc(-100% - 5px));
}

.other-product .box:hover::before {
    transform: translateX(0);
}

.other-product {
    min-height: 80vh;
    background: linear-gradient(335deg, rgba(172, 169, 168, 0.1) 0%, rgba(2, 0, 0, 0.1) 100%);

}
.svg-icon{
  
    width: 120px;
   
    
}
/* svg path{
    fill: var(--red)
} */

.otherProductBorder{
    border: 1px solid white;
    border-radius: 15px;
    margin-bottom: 9px;
    padding-bottom: 15px;
}
.KnowMoreBtn{
    background-color: var(--red);
    color: white;
}
.KnowMoreBtn:hover{
    background-color: var(--bckrnd-color);
    color: var(--txt-color);
    border-color: var(--red);
}


