
body{
    background-image: url("src/img/bg_image.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
}

.parent{
    width: 450px;
    height: 245px;
    background-color:white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.child{
    width: 100%;
    padding: 20px;
}
.divider{
    width: 50%;
    max-width: 200px;
    background: #2AA3DD;
    height: 1px;
    margin: 10px 0;
}
.firsth{
    color: #2AA3DD;
    margin: 0 0;
    font-size: 10pt;
}
.secondh{
    font-size: 10pt;
    margin: 2px 0;
    color: #3A3639;
    
}
.items-container{
    margin-top: 11px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.items-container__item{
    width: 50%;
    text-align: left;
}
.items-container__item_right{
    text-align: right;
}
.items-container__item h4{
    margin: 0;
    font-size: 10pt;
    font-weight: bold;
    color: #3A3639;
}
.items-container__item p{
    margin: 0;
    font-size: 9pt;
    color: #3A3639;
}

.margintop{
    margin-top: 13px !important;
}
@media(max-width:400px){
    .parent{
        width: 100%;
    }
    hr{
        width: 80%;
        display: inline-block;
        text-align: left;
    }
}
@media(max-width:320px){
    .child{
        padding: 2%;
    }
}