/*@media screen and (max-width: 900px) {}*/
:root {
    --secondary-color: #ffffff;
    --contrast-color: #ffb1b4;
    --color-primary: #FF0009;
    --color-secondary: #393939;
    --color-gray: #646464;
}
*, html, body {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}
.mainWrapper {
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 900px) {
    .mainWrapper {
        flex-direction: column;
    }
}
article {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
div[data-section] > div {
    min-height: 100vh;
}
@media screen and (max-width: 900px) {
    div[data-section] > div {
        min-height: 80vh;
        box-sizing: border-box;
    }
}
.absolute {
    position: absolute;
}
.hideXS {
    display: block;
}
.hideLG {
    display: none;
}
._headding {
    width: auto;
    height: auto;
    overflow: hidden;
}
.aos-animate ._headding > h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 98.5%;
    color: #CB3237;
    margin: 0px;
    padding-bottom: 8px;
    animation: ease;
    animation-name: slideUp;
    animation-duration: 1s;
}
._subHeader {
    overflow: hidden;
}
.aos-animate ._subHeader h2, .aos-animate ._subHeader h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    margin: 5px 0px 0px 0px;
    animation: ease-in-out;
    animation-name: slideUp;
    animation-duration: 1s;
}
.aos-animate ._para {
    overflow: hidden;
}
.aos-animate ._para p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #646464;
    /* animation-name: fadeinPara;
    animation-duration: 2s; */
    /* animation-delay: 40s; */
    animation: fadeinPara 2s;
    -moz-animation: fadeinPara 2s; /* Firefox */
    -webkit-animation: fadeinPara 2s; /* Safari and Chrome */
    -o-animation: fadeinPara 2s; /* Opera */
}

.relatedPageWrapper {
    position: relative;
    z-index: 1;
    background-color: #F0F0F0;
    display: flex;
    flex-direction: column;
    padding: 25px 15px;
    align-items: center;
}
.fContainer {
    width: 700px;
    display: flex;
    flex-direction: column;
}
._fo_heading {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
._fo_heading > span {
    margin-right: 7.5px;
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #CB3237;
    align-items: center;
    display: flex;
    justify-content: center;
}
.fContainer ul {
    display: flex;
    flex-direction: row;
    padding: 0px;
    list-style: none;
    margin: 0px -20px;
}
.fContainer ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
}
.fContainer ul li a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-decoration-line: underline;
    color: #646464;
    align-items: center;
    justify-content: center;
}

.left_0 {
    left: 0 !important;
}
.right_0 {
    right: 0 !important;
}
.uppercase {
    text-transform: uppercase;
}
.p_b_200 {
    padding-bottom: 200px;
}
.top_50 {
    top: 50px;
}

.download_gtm, .download_gtm > a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
}
.download_gtm > a span {
    display: flex;
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #393939;
    align-items: center;
}
.download_gtm > a span:nth-child(1){
    margin-right: 7.5px;
}

.color_red {
    color: #CB3237;
}
.color_black {
    color: #393939;
}
.align_center {
    align-items: center;
    justify-content: center;
}
/* MOBILE */
@media screen and (max-width: 900px) {
    article {
        padding-top: 61px;
    }
    .hideXS {
        display: none;
    }
    .hideLG {
        display: block;
    }
    ._headding > h1 {
        font-size: 28px;
    }
    ._subHeader h2, ._subHeader h5 {
        font-size: 22px;
    }
    .relatedPageWrapper {
        padding: 15px;
    }
    ._fo_heading {
        margin-bottom: 10px;
    }
    .fContainer {
        width: 100%;
    }
    .fContainer ul {
        flex-direction: row;
        margin: 0px -10px;
    }
    .fContainer ul li {
        padding: 0px 10px;
    }
    .fContainer ul li a {
        font-size: 16px;
    }
    ._fo_heading > span {
        font-size: 20px;
    }
    ._fo_heading > span:nth-child(1) {
        width: 20px;
    }
    .p_b_200 {
        padding-bottom: 0px;
    }
}
/* MOBILE */
@media screen and (max-width: 400px) {
    .fContainer .desktop-ul{
        display: none;
    }
    .fContainer .mobile-ul{
        display: inline !important;
    }
}