@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --Gradient: hsl(6, 100%, 80%) to hsl(335, 100%, 65%);
    --Pale-Blue: hsl(243, 100%, 93%);
    --Grayish-Blue: hsl(229, 7%, 55%);
    --Dark-Blue: hsl(228, 56%, 26%);
    --Very-DarkBlue: hsl(229, 57%, 11%);
}

body{
    height: 100vh;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--Dark-cyan);
    background-image:url(images/bg-desktop.png);
    max-height: 100vh;
    background-repeat: no-repeat;
    background-position-y:150%;
    background-color: var(--Very-DarkBlue);
}
.container{
    width: 70%;
}
.card{
    display: grid;
    grid-template-columns: 32% 60%;
    gap: 2rem;
}
.card1{
    background-color: var(--Dark-Blue);
    padding: 3rem;
    border-radius: 5px 80px 5px 5px ;
}
.card1cont{
    margin-right: 4rem;
}
.logo img{
    width: 150px;
    margin-bottom: 1rem;
}
.image{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 70%;
    gap: 1rem;
}
.image .img1,.img2,.img3{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vh;
    width: 8vh;
    background-color: var(--Very-DarkBlue);
    border-radius: 5px;
}
.img1 img{
    height: 	24px;
    
}
.card2{
    background-color: var(--Dark-Blue);
    padding: 3rem;
    border-radius: 5px 5px 5px 5px ;
    margin-top: 2.5rem;
    position: relative;
}

.card2 .text{
    color: rgb(193, 190, 190);
    font-size: small;
    margin-bottom: 1rem;
}
.card2 p span{
    color: white;
}
.lear1{
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background-color: var(--Very-DarkBlue);
}
.storage{
    width: 80%;
    height: 10px;
    border-radius: 10px;
    background-image: linear-gradient(to right,hsl(6, 100%, 80%), hsl(335, 100%, 65%));
}
.dot{
    height: 10px;
    width: 10px;
    background-color: white;
    border-radius: 50%;
    float: right;
}
.lg-text::before{
    content: "";
    position: absolute;
    background-color:white;
    width: 35px;
    height: 20px;
    right: 0;
    bottom: 0;
    transform: skew(180deg , 34deg);
}
.gbleft{
    display: flex;
    justify-content: right;

}
.lg-text{
    display: inline-block;
    padding: 2rem;
    background-color: white;
    background-size: auto;
    position: absolute;
    top: 0;
    border-radius: 5px 5px 0 5px;
    translate: 0 -50%;
}
.sm-text{
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: small;
    margin-top: 5px;
}

@media only screen and (max-width: 425px){
    .card{
        grid-template-columns: 100%;
        gap: 0;
    }
    .container{
        width: 80%;
    }
    .logo img{
        width: 100px;
        margin-bottom: 1rem;
    }
    .lg-text{
        border-radius: 5px 5px 5px 5px;
        top: initial;
        translate: -50% 40%;
        padding: 1rem;
    }
    .lg-text::before{
        bottom: initial;
        transform: initial;
    }
    .card2,.card1{
        padding: 1.5rem;
    }
}