#header {
    padding: 15px 0 15px 55px;
}

#content {
    background-image: url('/assets/images/background.svg');
    height: calc(100vh - 74px);
    flex: 1;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: top center;
}

.content-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.left-section {
    width: 50%;
    padding-right: 70px
}

.right-section {
    width: 50%;
    height: 100%;
    background-image: url('/assets/images/bot-image.svg');
    background-size: contain;
    /* background-size: cover; */
    background-position: top right;
    background-repeat: no-repeat;
    background-color: transparent;
}

.right-section img {
    float: right;
}

.content-section {
    padding-left: 55px;
}

.desktop-bot-img {
    display: block;
}

.mobile-bot-img {
    display: none;
}

.heading {
    font-size: 52px;
    line-height: 62px;
    color: #b2282d;
    font-weight: 700;
}

.description {
    font-size: 24px;
    line-height: 36px;
    color: #584849;
    margin-top: 35px;
    width: 100%;
}

@media screen and (max-width: 600px) {
    #header {
        padding: 10px 0 10px 15px;
    }

    #content {
        height: calc(100vh - 64px);
    }

    .content-row {
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    .left-section {
        width: 100%;
        height: auto;
        margin-top: 30px;
        padding-right: 0
    }

    .right-section {
        width: 100%;
        height: 100%;
        background-image: url('/assets/images/mobile-bot-image.png');
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
        background-color: transparent;
    }

    .content-section {
        padding-left: 15px;
        padding-right: 10px;
    }

    .heading {
        font-size: 24px;
        line-height: 28px;
    }

    .description {
        font-size: 15px;
        line-height: 18px;
        width: 95%;
        margin-bottom: 0;
    }

    .desktop-bot-img {
        display: none;
    }

    .mobile-bot-img {
        display: block;
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 610px) and (max-width: 1023px){
    .content-row{
        flex-direction: column;
    }

    .left-section {
        width: 100%;
        height: auto;
    }

    .right-section {
        width: 100%;
        background-image: url('/assets/images/mobile-bot-image.png');
        background-size: contain;
        background-position: top right;
        background-repeat: no-repeat;
        background-color: transparent;
    }

    .left-section{
        margin-bottom: 30px;
    }

    .heading{
        font-size: 28px;
        line-height: 26px;
        margin-top: 50px;
    }

    .description{
        font-size: 20px;
        line-height: 22px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1190px){
    .right-section img {
        width: 100%;
        height: auto;
    }

    .right-section {
        background-size: contain;
    }

    .description{
        font-size: 20px;
        line-height: 22px;
    }
}