/* start global rool */
:root {
    --Gradient: hsl(6, 100%, 80%) to hsl(335, 100%, 65%);
    ---Blue: hsl(243, 100%, 93%);
    --Grayish-Blue: hsl(229, 7%, 55%);
    --Blue-850: hsl(228, 56%, 26%);
    --Blue-950: hsl(229, 57%, 11%);
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 14px;
    background-color: var(--Blue-950);
    color: white;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

.container {

    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: fit-content;
}

/* small */
@media (min-width: 768px) {
    .container {
        width: 750px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* end global rules */
/* start page*/
.page {
    background-image: url(../image/bg-desktop.png);
    background-position: bottom;
    height: 100vh;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: 379px;
    background-size: contain;
    align-content: center;
}

@media (max-width:1200px) {
    .page {
        background-size: cover;

    }
}

@media (max-width:767px) {
    .page {
        background-image: url(../image/bg-mobile.png);
        background-position: center;
        height: 100vh;
        background-position-x: 0;
        background-position-y: 0;
        background-size: cover;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.page .container {
    display: flex;
    justify-content: center;


}

.page .container .content {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

@media (max-width:767px) {
    .page .container .content {
        flex-direction: column;
    }
}

.page .container .content .box1 {
    background-color: var(--Blue-850);
    padding: 30px;
    padding-right: 115px;
    border-radius: 10px;
    border-top-right-radius: 100px;
    padding-bottom: 40px;
}

@media (max-width:767px) {
    .page .container .content .box1 {
        padding-right: 90px;
    }
}

@media (max-width:349px) {
    .page .container .content .box1 {
        padding-right: 30px;
    }
}

.page .container .content .box1>img {
    margin-bottom: 30px;
}

.page .container .content .box1 .icons {
    display: flex;
    gap: 20px;
}

.page .container .content .box1 .icons img {
    padding: 10px 15px;
    background-color: var(--Blue-950);
    border-radius: 10px;
    width: 50px;

}

.page .container .content .box-2 {
    padding: 20px 25px;
    background-color: var(--Blue-850);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    justify-content: space-around;
    flex-basis: 45%;

}



@media (max-width:767px) {
    .page .container .content .box-2 {
        width: 100%;

    }
}

.page .container .content .box-2 .bld {
    color: var(---Blue);
    margin-bottom: 20px;
}

.page .container .content .box-2 .bld span {
    font-weight: 900;
}

.page .container .content .box-2 .progress {
    width: 100%;
    height: 20px;
    background-color: var(--Blue-950);
    border-radius: 20px;
    align-content: center;
    position: relative;
    margin-bottom: 20px;
}


.page .container .content .box-2 .progress::before {
    content: "0 GB";
    position: absolute;
    bottom: -23px;
    left: 0;
    font-size: 13px;
}

.page .container .content .box-2 .progress::after {
    content: "1000 GB";
    position: absolute;
    bottom: -23px;
    right: 0;
    font-size: 13px;

}

.page .container .content .box-2 .progress>span:first-of-type {
    width: 80%;
    height: 13.5px;
    display: block;
    border-radius: 20px;
    margin-left: 4px;
    background: linear-gradient(to right, hsl(6, 100%, 80%) 30%, hsl(335, 100%, 65%) 50%);
    position: relative;
}

.page .container .content .box-2 .progress>span:first-of-type::after {
    content: " ";
    position: absolute;
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.page .container .content .box-2 .progress .ab {
    position: absolute;
    background-color: white;
    padding: 10px;
    color: black;
    font-size: 30px;
    font-weight: bold;
    right: 0;
    top: -95px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page .container .content .box-2 .progress .ab span {
    font-size: 14px;
    color: var(--Grayish-Blue);

}


.page .container .content .box-2 .progress .ab span::before {
    content: " ";
    border-width: 20px;
    border-color: transparent white transparent transparent;
    border-style: solid;
    right: 0;
    position: absolute;
    bottom: -17px;
}

@media (max-width:767px) {
    .page .container .content .box-2 {
        padding-bottom: 50px;
    }

    .page .container .content .box-2 .progress .ab {
        right: 50%;
        transform: translateX(50%);
        overflow: hidden;
        top: 62px;
    }
}

.end {
    width: fit-content;
    margin: 20px auto;
}

/* end page */