@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400&display=swap');

:root{
    --dark-blue:hsl(233, 47%, 7%);
    --desaturated-blue:hsl(244, 38%, 16%);
    --accent:hsl(277, 64%, 61%);

    --white:hsl(0, 0%, 100%);
    --white-75:hsla(0, 0%, 100%, 0.75);
    --white-60:hsla(0, 0%, 100%, 0.6);
}
*, *::after, *::before{
    margin: 0;
    padding: 0;
}

body{
    font: 400 15px/1.5 "Lexend Deca", sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    height: 90vh;
}

h2,h4{
    font-family:"Inter", sans-serif ;
}

.container{
    max-width: 1440px;
    width: 100%;
    padding: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* border: 1px solid #fff; */
}

.row{
    display: flex;
    flex: 0 0 auto;
    padding: 10px;
}

.col-6{
    width: calc(90%/2);
}

/* box */
.box-wrap{
    width: 70%;
    /* margin: auto; */
}

.box-content{
    background-color: var(--desaturated-blue);
    padding: 40px;
}

.box-content .title{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.box-content .title span{
    color: var(--accent);
}

.box-content .caption{
    color: var(--white-75);
}

.box-content .stats{
    margin-top: 30px;
}

.box-content .stats .stat-item{
    margin-right: 20px;
}

.box-content .stat-item h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.box-content .stat-item span{
    text-transform: uppercase;
}

.box-img{
    background: url('../images/image-header-desktop.jpg') no-repeat;
    width: 100%;
    height: 100%;
}

.p-relative{
    position: relative;
}

.overlay{
    background-color: var(--accent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: .65;
}