.vgPagination {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.vgPaginationPagesContainer {
    width: 100%;
    margin: 0;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    scroll-snap-type: x mandatory;
}
.scrollSnapTypeDisable {
    scroll-snap-type: none;
}
.vgPaginationPagesContainer::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.vgPaginationPagesContainer .vgPaginationPages {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.vgPaginationPagesContainer .vgPaginationPage {
    width: 100%;
    vertical-align: top;
    flex-shrink: 0;
    scroll-snap-align: center;
}
.vgPagination .vgPaginationPageNavigator {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 14px 5px 14px;
}
.vgPagination .vgPaginationPageNavigator .vgDot {
    width: 30px;
    border-radius:30px;
    height: 30px;
    float: left;
    background-color: white;
    cursor: pointer;
}

.vgPagination .vgPaginationPageNavigator {
    display: flex;
    justify-content: center;
}
.vgPagination .vgPaginationPageNavigator .vgDot {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    background: #dbdbdb;
    border-radius: 50%;
    margin: 0 5px;
}
.vgPagination .vgPaginationPageNavigator .vgDot:hover {
    background-color: #6ba0d1;
}
.vgPagination .vgPaginationPageNavigator .vgDot.vgDotActive {
    background: #0082ff;
}

.vgInfoBox {
    display: flex;
    flex: none;
    order: 1;
    flex-grow: 0;
    position: relative;
    justify-content: space-between;
    margin: 0 55px 12px 55px;
}
.vgInfoBoxTop {
    margin-top: 42px;
}
.vgInfoBoxPadContainer {
    display: flex;
    flex-direction: column;
    align-items:center;
    width: 100%;
    padding: 40px 24px;
    justify-content: center;
}
.vgInfoBoxLeftSection {
    width: calc(100% - 354px);
    align-items: flex-start;
}
.vgInfoBox > .vgInfoBoxHeaders {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.vgInfoBox > .vgInfoBoxParagraphs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.vgInfoBox h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 115.5%;
    color: #2B2B35;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0;
    white-space: normal;
}
.vgInfoBox h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 115.5%;
    text-align: center;
    color: #2B2B35;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0;
    white-space: normal;
}
.vgInfoBox p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #2B2B35;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin: 16px 0 0 0;
    white-space: normal;
}

.vgInfoBoxBlue {
    background-color: #ebf1fd;
}
.vgInfoBoxYellow {
    background-color: #FFFCEA;
}
.vgInfoBoxPurple {
    background: #F3EFFF;
}
.vgInfoBoxGreen {
    background: #EEFAF1;
}
.vgInfoBoxDarkBlue {
    background: #DFE9FF;
}

.vgInfoBoxRightSection {
    max-height: 225px;
    align-self: center;
}
img.vgInfoBoxSideImg {
    max-height: 225px;
    border-radius: 0px 8px 8px 0px;
    align-self: center;
}
.vgInfoBoxSections {
    display: inline-flex;
}

.vgPagination .vgPaginationPageNavigator {
    display: none !important;
}

.vgInfoBoxLeftSection .vgInfoBoxHeaders {
    align-self: flex-start;
}

@media only screen and (max-width: 1180px) {
    .vgInfoBoxRightSection {
        display: none;
    }
    .vgInfoBoxRightSection img {
        display: none;
    }
    .vgInfoBoxLeftSection {
        width: 100%;
        align-items: center;
    }

    .vgInfoBoxSections {
        flex-direction: column;
    }

    .vgInfoBoxPadContainer {
        padding: 16px 12px 16px;
    }
    .vgInfoBox {
        margin: 12px 48px;
        width: auto;
    }

    .vgInfoBoxLeftSection .vgInfoBoxHeaders {    
        align-self: center;
    }
}

@media only screen and (max-width: 795px) {

    .vgPagination, .vgPagination .vgPaginationPageNavigator {
        display: flex !important;
    }

    .vgInfoBox {
        margin: 12px 16px;
        width: auto;
    }

    .vgPaginationPage {
        text-align: center;
        overflow: visible;
    }

    .vgPaginationPage p:first-child {
        margin-top: 0;
    }

    .vgPaginationPagesContainer {
        overflow-x: scroll;
    }

    .vgInfoBoxPadContainer {
        padding: 16px 12px 0px;
    }
}

