/* ####################### code css ########################### */


/* -------------- root ------------------ */
:root{
    /*---------------- Colors --------------- */

    /*-----Primary ------ */

    --Gradient: hsl(6, 100%, 80%) to hsl(335, 100%, 65%);

    /*---------Neutral ----------- */

    --Pale-Blue: hsl(243, 100%, 93%);
    --Grayish-Blue: hsl(229, 7%, 55%);
    --Dark-Blue: hsl(228, 56%, 26%);
    --Very-Dark-Blue: hsl(229, 57%, 11%);
    /* -------------font family--------------- */
    --Family-Raleway:"Raleway";
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
body{
    background-color: var(--Very-Dark-Blue);
    background-image: url(../images/bg-desktop.png);
    background-repeat: no-repeat;
    background-size:contain;
    background-position: bottom;
    min-height: 100vh;
    font-family: var(--Family-Raleway);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 77vh;
}
/*------ start header -----------*/
header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--Dark-Blue);
    width: 300px;
    height:150px ;
    padding: 30px;
    margin: 20px;
    border-radius: 10px 100px 10px 10px;
    -webkit-border-radius: 10px 100px 10px 10px;
    -moz-border-radius: 10px 100px 10px 10px;
    -ms-border-radius: 10px 100px 10px 10px;
    -o-border-radius: 10px 100px 10px 10px;
}
.box-Fylo{
    padding: 20px;
}
.box-Fylo .logo{
    width: 90px;
    padding: 20px 0;
    
}
.box-Fylo ul{
    display: flex;
    gap: 20px;
    align-items: center;
}
.box-Fylo ul li {
    background-color: var(--Very-Dark-Blue);
    width: 45px;
    height: 45px;
    position: relative;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
/* images file folder .. */
.box-Fylo ul li img{
    position: absolute;
    top: 10px;
    left: 12px;
    width: 100%;
    height: 100%;
    max-width: 20px;
    max-height: 20px;
}
/*------ end header -----------*/
/*------ start section -----------*/
section{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--Dark-Blue);
    width:470px;
    height:130px ;
    padding: 30px;
    margin: 20px;
    color: var(--Pale-Blue);
    border-radius: 10px ;
    -webkit-border-radius: 10px ;
    -moz-border-radius: 10px ;
    -ms-border-radius: 10px ;
    -o-border-radius: 10px ;
    transform: translateY(13px);
    -webkit-transform: translateY(13px);
    -moz-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
}
.box-loading-line{
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 20px;
}
.text{
    margin-top: 10%;
    font-size: 13px;

    & span {
        font-weight: bolder;
    }
}
.loading{
    background-color: var(--Very-Dark-Blue);
    width: 370px;
    margin-top: 2%;
    padding: 1%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.loading .insitdebar{
    width: 81.1%;
    background-image:linear-gradient(to right , hsl(6, 100%, 80%) , hsl(335, 100%, 65%));
    border-radius:20px ;
    -webkit-border-radius:20px ;
    -moz-border-radius:20px ;
    -ms-border-radius:20px ;
    -o-border-radius:20px ;
    display: flex;
    justify-content: flex-end;

}
.loading .insitdebar .whiteball{
    height: 10px;
    background-color: white;
    width: 4%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.box1{
    position: absolute;
    padding-left: 48%;
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
}
.box-GB{
    position:absolute;
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: rgb(255, 255, 255);
    width: 150px;
    height: 55 px;
    padding: 10px;
    border-radius: 10px 10px 0;
    -webkit-border-radius: 10px 10px 0;
    -moz-border-radius: 10px 10px 0;
    -ms-border-radius: 10px 10px 0;
    -o-border-radius: 10px 10px 0;
}

.box-GB h2{
    color: var(--Very-Dark-Blue);
    font-size: 30px;
    font-weight: 700;
}
.box-GB span{
    color: var(--Grayish-Blue);
    font-weight: 700;
    padding-left: 8px;
    font-size: 13px;
    padding-top: 10px;
}
.box1::after{
    content: "";
    position: absolute;
    bottom: -67px;
    right: -150px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-top: 30px solid #fff;
    

}
.box-centent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    transform: translateY(-18px);
    -webkit-transform: translateY(-18px);
    -moz-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    -o-transform: translateY(-18px);
}
/*------ end section-----------*/
.attribution{
    font-size: 28px;
    color: var(--Pale-Blue);
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
}
.attribution a{
    text-decoration: dashed;

}
/* ###################################################### */
/* ############ media mobile width : 767px ################## */
/* ###################################################### */

@media (max-width:767px) {
    body{
        background-color: var(--Very-Dark-Blue);
        background-image: url(../images/bg-mobile.png);
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
        font-family: var(--Family-Raleway);
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        flex-direction: column;
        padding: auto;
    }
    header{
        display: flex;
        justify-content: center;
        flex-direction: column;
        background-color: var(--Dark-Blue);
        width: 350px;
        height:200px ;
        padding: 30px;
        margin: -10px;
        border-radius: 10px 100px 10px 10px;
        -webkit-border-radius: 10px 100px 10px 10px;
        -moz-border-radius: 10px 100px 10px 10px;
        -ms-border-radius: 10px 100px 10px 10px;
        -o-border-radius: 10px 100px 10px 10px;
    }
    .box-Fylo{
        padding: 20px;
    }
    .box-Fylo .logo{
        width: 100px;
        padding: 20px 0;
        
    }
    section{
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        background-color: var(--Dark-Blue);
        width:350px;
        height:200px ;
        padding: 20px;
        margin: 20px;
        color: var(--Pale-Blue);
        border-radius: 10px ;
        -webkit-border-radius: 10px ;
        -moz-border-radius: 10px ;
        -ms-border-radius: 10px ;
        -o-border-radius: 10px ;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }
    .box-loading-line{
        display: flex;
        flex-direction: column;
        padding: 10px;
        padding-top: 20px;
    }
    .loading{
        background-color: var(--Very-Dark-Blue);
        width: 300px;
    }
    .loading .insitdebar .whiteball{
        height: 10px;
        background-color: white;
        width: 4%;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }
    .box1{
        position: absolute;
        padding-left: 14%;
        transform: translateY(7rem);
        -webkit-transform: translateY(7rem);
        -moz-transform: translateY(7rem);
        -ms-transform: translateY(7rem);
        -o-transform: translateY(7rem);
}
    .box-GB{
        width: 180px;
        height: 73px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
}
    .box-GB h2{
        font-size: 28px;
        transform: translateX(-20px);
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
    }
    .box-GB span{
        color: var(--Grayish-Blue);
        font-weight: 700;
        font-size: 15px;
        padding-top: 10px;
        z-index: 900;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-15px);
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        -o-transform: translateX(-15px);
}
    .box-centent{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        font-size: 13px;
        transform: translateY(-9px);
        -webkit-transform: translateY(-9px);
        -moz-transform: translateY(-9px);
        -ms-transform: translateY(-9px);
        -o-transform: translateY(-9px);
    }
    .box1 .box-GB::after{
        content: "";
        position: absolute;
        bottom: -67px;
        right: -150px;
        width: 0;
        height: 0;
        z-index: 900;
    
    }
}
/* media 421px */
@media (max-width:421px) {
    body{
        background-color: var(--Very-Dark-Blue);
        background-image: url(../images/bg-mobile.png);
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
        font-family: var(--Family-Raleway);
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        flex-direction: column;
        padding: auto;
    }
    header{
        width: 300px;
        height:200px ;
    }
    .box-Fylo{
        padding: 20px;
    }
    .box-Fylo .logo{
        width: 100px;
        padding: 20px 0;
        
    }
    section{
        width:300px;
        height:200px ;
    }
    .box-loading-line{
        display: flex;
        flex-direction: column;
        padding: 10px;
        padding-top: 20px;
    }
    .loading{
        background-color: var(--Very-Dark-Blue);
        width: 250px;
    }
    .loading .insitdebar .whiteball{
        height: 10px;
        background-color: white;
        width: 4%;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }
    .box1{
        position: absolute;
        padding-left: 13%;
        transform: translateY(7rem);
        -webkit-transform: translateY(7rem);
        -moz-transform: translateY(7rem);
        -ms-transform: translateY(7rem);
        -o-transform: translateY(7rem);
    }
}

