@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(229, 57%, 11%);
    font-family: 'Raleway', sans-serif;
}

main{
    display: flex;
    /* width: 75%; */
    margin: 0 2rem;
}

.left{
    background-color: hsl(228, 56%, 26%);
    padding-left: 1rem;
    padding-right: 3rem;
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    margin-right: 1rem;
    border-top-right-radius: 4rem;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 25vw;
}

.left .logo{
    max-width: 90px;
    margin-bottom: 1rem;
}

.left .icons{
    display: flex;
}

.left .icons img{
    /* max-width: 100%; */
    height: 40px;
    background-color: hsl(229, 57%, 11%);
    padding: 0.6rem;
    border-radius: 9px;
}

.left .icons img:not(:last-child){
    margin-right: 0.5rem;
}


/******************************/


.right{
    background-color: hsl(228, 56%, 26%);
    padding: 2rem;
    color: hsl(243, 100%, 93%);
    border-radius: 10px;
    width: 50vw;
    position: relative;
    height: 150px;
}
.right p span{
    font-weight: 700;
}

.gb-left  {
    background-color: white;
    /* margin: 1rem 0; */
    width: 200px;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: -30%;
    left: 68%;
    text-align: center;
}


@media screen and (min-width: 701px) and (max-width: 1200px){
    .gb-left  {
        background-color: white;
        /* margin: 1rem 0; */
        width: 200px;
        padding: 1rem;
        border-radius: 10px;
        position: absolute;
        top: -30%;
        left:45%;
        text-align: center;
    }
}


.gb-left::after{
    content: "";
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid  white;
    border-top: 15px solid white;
    border-bottom: 15px solid transparent;
    margin: 20px auto;
    position: absolute;
    top: 62%;
    left: 85.5%;
}

.gb-left p{
    color: hsl(229, 7%, 55%);
    font-weight: 700;
}

.gb-left p span{
    color: hsl(228, 56%, 26%);
    font-size: 35px;
}

.progress-border{
    border: 2px hsl(243, 100%, 93%);
    background-color: hsl(229, 57%, 11%);
    height: 20px;
    margin: 1rem 0;
    border-radius: 50px;
    position: relative;
}
.progress-border .pro{
    background:linear-gradient(hsl(6, 100%, 80%), hsl(335, 100%, 65%)) ;
    width: 75%;
    height: 18px;
    border-radius: 50px;
}
.progress-border .dot{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: hsl(243, 100%, 93%);
    position:absolute;
    left: 70.7%;
    top: 0.1rem;
    z-index: 1;
    cursor: pointer;
}

.pro-text{
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}


/**************/

@media screen and (max-width:700px){
    main{
        display: flex;
        flex-direction: column;
    }

    .left{
        width: 70vw;
        margin-bottom: 1rem;
        border-top-right-radius: 4rem;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        padding: 2rem;
    }


    .right {
        width: 70vw;
    }
    .gb-left  {
        background-color: white;
        /* margin: 1rem 0; */
        width: 200px;
        padding: 1rem;
        border-radius: 10px;
        position: absolute;
        top: 85%;
        left: 25%;
        text-align: center;
    }

    .gb-left::after{
        border-left: 0px solid transparent;
        border-right: 0px solid  white;
        border-top: 0px solid white;
        border-bottom: 0px solid transparent;
    }
}