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

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}

.container {
    background-color:hsl(229, 57%, 11%);
    background-image: url(images/bg-desktop.png);
    background-repeat: no-repeat;
    background-position: bottom;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-left: 160px;
    width: 100vw;

}

.innerContainerLeft {
    background-color: hsl(228, 56%, 26%);
    border-radius: 10px;
    border-top-right-radius: 90px;
    display: flex;
    flex-direction: column;
    height: 200px;
    padding : 42px 40px;
    width: 350px;
    margin-right: 30px;
    margin-bottom: 45px;
}

.picto {
    display: flex;
	align-items: center;
}

.item {
    background-color:hsl(229, 57%, 11%) ;
    border-radius: 5px;
    height: 48px;
    width: 48px;
    margin-right: 16px;
    margin-top: 34px;
}

.item:nth-child(1) {
    padding-top: 12px;
    padding-left: 15px;
}

.item:nth-child(2) {
    padding-top: 14px;
    padding-left: 12px;
}

.item:nth-child(3) {
    padding-top: 16px;
    padding-left: 12px;
}


.innerContainerRight {
    background-color:hsl(228, 56%, 26%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 154px;
    padding: 45px 40px;
    width: 540px;
    color: #e7eeff;
}

.progressBar {
    background-color:hsl(229, 57%, 11%);
    border-radius: 25px;
    height: 20px;
    margin-top: 19px;
    width: 460px;
}

.innerProgressBar {
    background-image: linear-gradient(to right, hsl(6, 100%, 80%) , hsl(335, 100%, 65%));
    border-radius: 25px;
    height: 14px;
    margin: 3px 0 0 3px;
    width: 339px;
}

.whiteCircle {
    background-color: #fdfdfd;
    border-radius: 50%;
    height: 10px;
    margin-left: 327px;
    width: 9px;
    padding-top: 13px;
    padding-left: 13px;
}

.gb {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 460px;
    font-weight: bold;
}

.popUp {
    background-color: #feffff;
    border-radius: 10px;
    height: 72px;
    width: 180px;
    transform: translate(-123%, -121%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popUp span:nth-child(1) {
    color: #0c102b;
    font-weight: 700;
}

.popUp span:nth-child(2), .popUp span:nth-child(3) {
    color: #b1b0b6;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
}

.popUp::after {
	content: "";
	border-left: 40px solid transparent;
	border-right: 0px solid transparent;
    border-top: 40px solid #feffff;
    margin-left: 140px;
	margin-top: 75px;
	position: absolute;
}

/*Tablet layout*/
@media screen and (max-width:1262px){
    .container {
        flex-direction: column;
        padding: 0 100px
    }

    .popUp {
        transform: translate(0%, -50%);
    }

    .popUp::after {
        content: "";
        border-left: none;
        border-right: none;
        border-top: none;
        margin-left: 0;
        margin-top: 0;
        position: static;
    }
}

/*Mobile layout*/
@media screen and (min-width: 375px) and (max-width:768px){
    .container {
        background-image: url(images/bg-mobile.png);
        background-position: top;
        padding: 127px 25px;
        width: 100vw;
    }

    .innerContainerLeft {
        width: 327px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .innerContainerRight {
        width: 327px;
    }

    .progressBar {
        width: 260px;
    }

    .innerProgressBar {
        width: 193px;
    }

    .whiteCircle {
        margin-left: 178px;
    }

    .gb {
        width: 260px;
    }
}
