@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;800&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}
::selection,
::-moz-selection {
    color: #cfffe5;
    background-color: #327f8e;
}
:root{
    --text-color: #327f8e;
    --hover-color: crimson;
    --bg-color: #cfffe5;
    --sec-bg-color: #0da780;
    --big-font: 2.5rem;
    --norm-font: 2rem;
    --h2-font: 3rem;
    --clr: #cfffe5;
}
body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  color: var(--text-color);
}
a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
}

img{
    width: 100%;
    display: block;
}
.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.img-showcase img{
    min-width: 100%;
}
.img-select{
    display: flex;
}
.img-item{
    margin: 0.3rem;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}

.product-content{
    padding: 2rem 1rem;
}
.product-detail h2{
    color: var(--text-color);
    padding-bottom: 0.6rem;
}
.product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}
.product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(../images/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}
.product-detail ul li span{
    font-weight: 400;
}
.purchase-info{
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
}
.purchase-info input,
.purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}
button{
    cursor: pointer;
}
.purchase-info .btn{
    cursor: pointer;
    color: #fff;
    background: var(--sec-bg-color);
    transition: all 0.3s ease;
    width: 250px;
}
/* .purchase-info .btn:hover{
    opacity: 0.8;
} */
.btn a {
    color: #fff;
    text-decoration: none;
}

.not-allowed {
    cursor: not-allowed;
}

[disabled] {
    opacity: .6;
    cursor: default;
}

.licenseimg {
    display: flex; 
}
.licenseimg img {
    height: 25px;
    width: 25px;
    margin: 5px ;
}
.licensetext {
    font-size: 10px;
}
.licensetext a {
text-decoration: none;
font-weight: 600;
color: #327f8e;
}

@media screen and (min-width: 992px){
    .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    .card-wrapper{
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-content{
        padding-top: 0;
    }
}