* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}


body {
    margin: auto;
    padding: 1rem;
    height: 100vh;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-image: url(bg-desktop.png);
    background-repeat: no-repeat;
    background-position: center calc(100% + 39px);
    background-size: contain;
    background-color: hsl(229, 57%, 11%);
    display: flex;
    justify-content: center;
    align-items: center;

}


.outer {
    display: flex;
    align-items: end;
    position: relative;

}

.first {
   
    height: 12rem;
    width: 21rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: hsl(228, 56%, 26%);
    border-radius: 10px 100px 10px 10px;
    box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.199);
}

#logo {
    height: auto;
    width: 7.8rem;
}

.icons {
    display: flex;
}

.icons span {
    display: flex;
    
    justify-content: center;
    align-items: center;

    height: 3rem;
    width: 3rem;

    padding: 10px;
    overflow: hidden;

    background-color: hsl(229, 57%, 11%);
    border-radius: 10px;
    margin-right: 1rem;
}

.icons img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




.second {
    margin-left: 2rem;
    border-radius: 10px;
   
    height: 9rem;
    width: 33rem;
    padding: 2.5rem;
    background-color: hsl(228, 56%, 26%);
    box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.199);


}

.outer_btn {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 1rem;
    background-color: hsla(229, 57%, 11%, 0.662);
    border-radius: 45px;
    margin-top: 0.80rem;
    margin-bottom: 0.50rem;


}

.inner_btn {
    margin-left: 0.12rem;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 75%;
    font-size: rem;
    background: linear-gradient(to right, hsl(6, 100%, 80%), hsl(335, 100%, 65%));
    border-radius: 50px;
}

#circle {
    margin: 0.10rem;
    height: 0.56rem;
    width: 0.56rem;
    border-radius: 50%;
    background-color: white;

}

p {
    color: rgba(255, 255, 255, 0.651);
    font-weight: 400;
    font-size: 15px;
}

p span {
    color: hsl(243, 100%, 93%);
    font-weight: 500;
}




.gb {

    font-size: 12px;
    color: hsl(243, 100%, 93%);
    font-weight: 700;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.left {
    position: absolute;
    top: 12px;
    right: 40px;
    color: hsl(229, 7%, 55%);
    background-color: white;
    padding: 0.60rem 1rem;
    font-size: 0.60rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.40rem;
    font-weight: 700;
    border-radius: 10px;

}

.left span {
    font-weight: 700;
    color: black;
    font-size: 2rem;
}

.triangle-down {

    position: absolute;
    top: 50px;
    right: 40px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    border-top: 38px solid white;
}




@media(max-width: 960px) {
    .outer {
        flex-direction: column;
        

    }

    .first {
       
        width: 100%;
        margin-bottom: 20px;
    }

    .second {
        margin-left: 0px;
        width: 100%;

    }

    .left {
        position: relative;
        right: 0px;

    }

    .second {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    body {
        background-position: center calc(100% + 0px);
         background-image: url(bg-mobile.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .triangle-down {
        z-index: -1;
    }

}


