:root{
  --bg-color:#050621;
  --select-color:#0506213a;
}

html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    height: auto;
    width: 100%;
    display: flex;
    gap: 4rem;
    flex-direction: column;
    padding: 2%;
    background-color: rgb(251, 251, 251);
}
.Product-Container{
    height: auto;
    min-height: 90vh;
    width: 100%;
    display: flex;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.150);
}
.Product-Container .image{
    height: auto;
    width: 50%;
}
.Product-Container .image img{
    height: 100%;
    width: auto;
    background-color: rgba(227, 227, 227, 0.2);
}
.Product-Container .detail{
    padding: 2rem;
    width: 80%;
}
.Product-Container .detail a{
    padding: 10px 1px;
    color: black;
    font-weight: 500;
    font-size: .825em;
}
.Product-Container .detail .Title{
    padding: 10px 1px;
    color: black;
    font-weight: 600;
    color: var(--bg-color);
    font-family: sans-serif;
    font-size: 1.6em;
}
.grid-container {
    display: grid;
    width: 100%;
    grid-template-columns: auto auto;
    padding: 5px;
  }
  .grid-item {
    padding:10px 20px;
    font-size: 1.5vw;
    text-align: left;
  }
  .grid-item i{
    margin-right: 8px;
    color: var(--bg-color);
  }
  .grid-container .light{
    color: #616161;
  }
.Product-Container .detail .enquiry{
    font-size: 2vw;
    padding: 10px;
    text-align: center;
    border-radius: 100px;
    border:1px solid;
    width: 50%;
    font-weight: 700;
    color: var(--bg-color);
}
.Product-Container .detail a{
    text-decoration: none;
}
.Product-Container .detail .quotebtn{
    font-size: 1.5vw;
    padding: 10px;
    text-align: center;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 100px;
    display: flex;
    overflow: hidden;
    justify-content: flex-end;
    align-items: center;
    background-color: #050621;
    width: 50%;
    font-weight: 700;
    color: white;
    transition:.2s all ease-in-out;
}
.Product-Container .detail .quotebtn .arrow{
    padding: 10px;
    margin-left: 68px;
    border-radius: 20px;
    transform: translateX(140%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition:.2s all ease-in-out;
}
.Product-Container .detail .quotebtn:hover > .arrow{
    transform: translateX(0%);
    margin-left: 80px;
}
.Product-Container .detail .quotebtn:hover{
    background-color: black;
}
.Product-Container .detail .quotebtn .arrow i{
    color: var(--bg-color);
}
.Product-Container .detail .quotebtn span{
   font-size: 1.1em;
}
.Product-description{
    height: auto;
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding: 4vw;
    flex-direction: column;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.150);
}
.Product-description h1{
    color: var(--bg-color);
    text-transform: uppercase;
    padding-bottom: 10px;
}
.Product-description p{
    color: #777777;
    font-size: 1.4vw;
    margin-top: 10px;
}
@media (min-width:1920px){
    .Product-Container .detail .quotebtn .arrow{
        margin-left: 6vw;
    }
    .Product-Container .detail .quotebtn:hover > .arrow {
        margin-left: 6.4vw;
    }
}
@media (max-width:1050px){
    .Product-Container .image img {
        height: auto;
        width: 100%;
    }
}
@media (max-width:800px){
    .Product-Container .detail .table{
        font-size: 2vw;
    }
    .Product-Container .detail .enquiry{
        width: 80%;
    }
    .Product-Container .detail .quotebtn{
        width: 80%;
    }
    .Product-Container .detail .quotebtn span {
        font-size: 1.4em;
    }
    .Product-description p{
        font-size: 2vw;
    }
}
@media (max-width:480px){
    .Product-Container{
        flex-direction: column;
        padding: 10px;
        justify-content: center;
        align-items: center;
    }
    .Product-Container .detail{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .grid-item {
        font-size: 2.5vw;
      }
    .Product-Container .detail .Title{
        text-align: center;
        font-size: 1.4em;
    }
    .Product-Container .detail .table {
        font-size: 3vw;
    }
    .Product-Container .detail .enquiry {
        font-size: 3vw;
    }
    .Product-description p {
        font-size: 3vw;
        text-align: justify;
    }
    .Product-Container .detail .quotebtn span {
        font-size: 1.6em;
        width: 100%;
        margin-right: -20px;
    }
    .Product-Container .detail .quotebtn {
        width: 65vw;
    }
    .Product-Container .detail .quotebtn .arrow{
        margin-left: 0px;
    }
    .Product-Container .detail .quotebtn:hover > .arrow {
        margin-left: 0px;
    }
}
