html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: #0F1941;
    font-size: 1.4rem;
    font-family: Tahoma, sans-serif;
    max-width: 1800px;
    max-height: fit-content;
    overflow: hidden;
}
.frame{
    background-color: #F7F5F0;
    display:flex; 
    flex-direction:column; 
    flex-basis:210px; 
    flex-grow:2; 
    padding:30px;
}
.table {
    display: flex;
}
.left {
    flex: 50%;
    margin-right: 15px;
}
.title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.text {
    padding-bottom: 10px;
}
.right {
    flex: 50%;
    background-color: #6BA5B4;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image  {
    width: fit-content; 
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}
.logo {
    margin-top:20px;
    }
ul{
    list-style-type: disc; 
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.2em;
    padding-bottom: 1.5em;
}
li{
    padding-bottom:0.5em;
    }
li::marker  {
    color:#6BA5B4; 
    font-size:1.4em;
}

.boxes{
    display:flex; 
    flex-direction:row; 
    flex-wrap:wrap;
    min-height: 25vh 
}
.box1{
    background-color:#6BA5B4; 
    display:flex; 
    flex-direction:column; 
    flex-basis:210px; 
    flex-grow:2; 
    padding:20px; 
    margin:10px; 
    border-radius:15px;
}
.box2{
    background-color:#ffb511; 
    display:flex; 
    flex-direction:column; 
    flex-basis:210px; 
    flex-grow:2; 
    padding:20px; 
    margin:10px; 
    border-radius:15px;
}
.box3{
    background-color:#e74536; 
    display:flex; 
    flex-direction:column; 
    flex-basis:210px; 
    flex-grow:2; 
    padding:20px; 
    margin:10px; 
    border-radius:15px;
}
.boxtitle{
    align-items:center; 
    justify-content:center; 
    font-size:1.6rem !important; 
    font-style:normal; 
    color:white;
    text-align:center;
}
.boxsubtitle{
    font-size:1.1rem; 
    font-style:normal; 
    font-weight:bold; 
    margin-bottom:10px; 
    margin-top:10px
}
.boxtext{
    font-size:1.1rem; 
    font-style:normal
}
.hrbox{
    color:white; 
    width:100%; 
    height:2px 
}

@media only screen and (max-width: 1200px) {
    body {
        overflow: auto;
        font-size: 1.2rem;
    }
    .frame{
        padding:20px;
    }
    .table {
        display: block;
    }
    .right{
        height:20%;
    }
    .title{
        font-size: 2rem;
    }
    .text{
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    ::ng-deep .full-height-scrollable .dx-scrollable-container {
    touch-action: manipulation !important;
    }
    .boxes {
        display: block;
    }
}