* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #f21826;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.body-white {
    background-color: #FFFFFF;
}

.body-grey {
    background-color: #F5F5F5;
}

.container {
    width: 100%;
    max-width: 1038px;
    padding: 50px 40px;
    box-sizing: border-box;
    background: linear-gradient(113.01deg, #D90202 -0.8%, #690101 99.99%);
    box-shadow: 9px 9px 30px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.container.white {
    background: #FFFFFF;
    box-shadow: 9px 9px 30px rgba(0, 0, 0, 0.2);
}

.container.grey {
    background: #CFCFCF;
    box-shadow: 9px 9px 30px rgba(0, 0, 0, 0.2);
}

.container.black {
    background: #000000;
    box-shadow: 9px 9px 30px rgba(0, 0, 0, 0.2);
}

.container.skyblue {
    background: #D0F7FF;
    box-shadow: 9px 9px 30px rgba(0, 0, 0, 0.2);
}

.container .top {
    display: flex;
    justify-content: space-between;

}

.container .logo {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .logo img {
    width: 220px;
}

.presentation {
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    padding: 20px;
    width: 50%;
}

.white .presentation {
    color: #000000;
    background-color: rgba(143, 255, 208, 0.35);
}

.grey .presentation {
    background: #FFFFFF;
    color: #000000;
}

.skyblue .presentation {
    background: #FFFFFF;
    color: #000000;
}

.black .presentation {
    background: #FFFFFF;
    color: #000000;
}

.container .center {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0 0;
}

.phone {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone img {
    width: 300px;
}

.list {
    width: 50%;
}

.list ul {
    list-style-type: none;
}

.list ul li {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding: 10px 0;
}

.white .list ul li,
.skyblue .list ul li,
.grey .list ul li {
    color: #000000;
}

.list ul li img {
    margin-right: 10px;
    width: 36px;
}

.RecastApp .RecastAppExpander,
.CaiApp .CaiAppExpander {
    background-color: #000000 !important;
    padding: 0.5rem 1.2rem;
}

.RecastApp .RecastAppExpander::before,
.CaiApp .CaiAppExpander::before {
    content: '';
    background: transparent url(../images/chati.png) no-repeat center;
    background-size: contain;
    width: 36px;
    height: 27px;
    position: absolute;
    z-index: 99;
    top: 8px;
    left: 8px;

}

.RecastApp .RecastAppExpander--logo,
.CaiApp .CaiAppExpander--logo {
    opacity: 0;
}

@media (max-width: 820px) {

    body {
        height: auto;
        display: block;
    }

    .container {
        padding: 35px 20px;
        margin: 20px 10px;
        width: auto;
    }

    .container .top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .presentation {
        width: 90%;
        margin-top: 20px;
        font-size: 13px;
        text-align: center;
        padding: 15px;
    }

    .container .logo {
        width: 100%;
        justify-content: flex-start;
    }

    .container .logo img {
        width: 120px;
    }

    .container .center {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .phone {
        width: 100%;
    }

    .phone img {
        width: 180px;
    }

    .list {
        width: 100%;
        margin-top: 20px;
    }

    .list ul li {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 15px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
        padding: 7px 0;
    }

}