@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

html, body{
    font-family: 'Roboto', sans-serif;
}
/* body{
    background: #2a2a2a;
} */
.main-cont{
    position: relative;
  }
  .main-cont#blur.active3{
        filter: blur(20px);
        pointer-events: none;
        user-select: none;
  }
.main-wrapper img{
    width: 100%;
    display: block;
}
.main-wrapper{
    min-height: 100vh;
    background: #d5d5d5;
    /* background-color: #f1f1f1; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}
.product-div{
    margin: 1rem 0;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* background-color: #fff; */
    border-radius: 3px;
    column-gap: 10px;
}
.product-div-left{
    padding: 20px;
    padding-top: 50px;
}
.product-div-right{
    padding: 20px;
}
.product-div-left,.product-div-right{
    margin: 0 20px;
    background-color: #fff;
    border-radius: 5px;
    /* box-shadow: 0px 1px 10px 5px rgba(0, 0, 0, 0.42); */
}

.img-container img{
    /* width: 680px; */
height: 480px;
    margin: auto auto;
    object-fit: contain;
}
.hover-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}
.hover-container div{
    border: 2px solid rgba(252, 160, 175, 0.7);
    padding: 3px;
    border-radius: 3px;
    margin: 0 4px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.active{
    height: auto;
    border-color: rgb(251, 58, 90)!important;
}
.hover-container div:hover{
    border-color: rgb(250, 63, 94);
}
.hover-container div img{
    width: 100px;
    cursor: pointer;
}
.product-div-right span{
    display: block;
}
.product-name{
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    color: #ff1818;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.product-dec{
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #5F5F5F;
    opacity: 0.9;
}
/* .product-rating{
    display: flex;
    align-items: center;
    margin-top: 12px;
} */
/* .product-rating span{
    margin-right: 6px;
} */
/* .product-description{
    font-weight: 18px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 22px;
} */
.Vehicle-info{
    margin-top: 10px;
}
.Vehicle-info h5{
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}
.Vehicle-Information{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 10px 0; */
}
.Vehicle-Information p{
 font-family: 'Mulish';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 28px;
color: #000000;
}
.ans{
    margin-right: 30px;
}
.btn-groups{
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-groups button{
    display: inline-block;
    font-size: 16px;
    font-family: inherit;
    text-transform: uppercase;
    padding: 15px 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-groups button .fas{
    margin-right: 8px;
}
.enq-btn{
    background-color: #FF0000;
    border: 2px solid #FF0000;
    margin-right: 8px;
    border-radius: 15px;
}
.enq-btn:hover{
    background-color: #fff;
    color: #FF0000;
}

#enq-form{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 500px;
    padding: 80px;
    -webkit-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
    background: #e6e6e6;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    border-radius: 5px;
    z-index: 999;
  }
  #enq-form.active3{
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
    z-index: 999;
  }
  #enq-form a{
      text-decoration: none;
      color: red;
      border: 2px solid red;
      padding: 5px;
      background-color: #fff;
      text-align: center;
      z-index: 999;
  }
  .myHed p{
    font-size: 40px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 30px;
    color:  #ff0000;
}
  
@media screen and (max-width: 992px){

    .product-div{
        grid-template-columns: 100%;
        margin: 0;
        padding: 0;
    }
    .img-container img{
        height: 250px;
        margin: auto auto;
    }
    .product-div-left{
        margin-top: 20px;
        padding: 20px;
    }
    .product-div-left,.product-div-right{
        margin-top: 20px;
        
    }
    .product-div-right{
        text-align: center;
        margin-bottom: 10px;
    }
    .product-rating{
        justify-content: center;
    }
    .product-description{
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
    .hover-container div img{
        width: 62px;
        cursor: pointer;
    }
}
@media (max-width:517px) {
    #enq-form{
        width: 90%;
        margin: auto;
        padding: 31px;
    }
    .myHed p{
        font-size: 28px;
        line-height: 40px;
        
    }
    #enq-form form div{
        width: 90%!important;
    }
}
@media screen and (max-width: 400px){
    .btn-groups button{
        width: 100%;
        margin-bottom: 10px;
    }
    .img-container img{
        height: 158px;
    }
    .hover-container div img{
        width: 45px;
    }
    .Vehicle-Information p{
       font-size: 13px;
       line-height: 22px;
       }
       .ans{
           margin-right: 13px;
       }
}
.close-icon{
    position: fixed;
    right: 25px;
    top: 20px;
    color: #000000;
    height: 30px;
    width: 30px;
    cursor: pointer;
  }