/*/////////////////////////////// Variables ///////////////////////////////*/
:root {
    --alto: #dcddde;
    --black: #000000;
    --boulder: #797979;
    --crimson: #e71619;
    --cultured-pearl: #f5f5f5;
    --dove-gray: #707070;
    --white: #ffffff;
    --success: #449d44;
    --fail: #c9302c;
    
    --font-family-din_pro: "DIN Pro", Helvetica;
    --font-family-dinpro-bold: "DINPro-Bold", Helvetica;
    --font-family-dinpro-regular: "DINPro-Regular", Helvetica;

    --component-margin: 70px;
    --button-radius: 8px;
}

/*************** Base *****************/

/* Sizes */
body, html{
    overflow-x: hidden;
}
body{
    margin: 0;
    font-family: var(--font-family-dinpro-regular);
}
body > br{
    display: none !important;
}
main{
    max-width: 1280px;
    margin: auto;
    padding: 0 30px;
}
@media screen and (min-width: 768px){
    main{
        padding: 0 75px;
    }
    .rcrm-limiter{
        max-width: 1280px;
        margin: auto;
    }
}
/* Remove Plugins */
.rcrm a, button{
    -webkit-border-radius: var(--button-radius) !important;
    -moz-border-radius: var(--button-radius) !important;
    border-radius: var(--button-radius) !important;
}
.rcrm ul{
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Spacings */

/* Typography */
h2, .h2{
    color: var(--crimson);
    font-family: var(--font-family-dinpro-bold);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.1px;
    line-height: 25px;
    margin-bottom: 10px;
}
h3, .h3{
    color: var(--dove-gray);
    font-family: var(--font-family-dinpro-bold);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.06px;
}
h4{
    font-family: var(--font-family-dinpro-bold);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
p, li{
    color: var(--dove-gray);
    font-family: var(--font-family-dinpro-regular);
    font-size: 16px;
    line-height: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.1px;
}
li, span, a{
    font-family: var(--font-family-dinpro-regular);
}
@media screen and (min-width: 768px){
    h3, .h3{
        font-size: 22px;
        line-height: 27px;
    }
    p, li{
        font-size: 18px;
        line-height: 23px;
    }
}
@media screen and (min-width: 1280px){
    h2{
        font-size: 48px;
        letter-spacing: 0.14px;
        margin-bottom: 30px;
        line-height: 62px;
    }
    h3, .h3{
        font-size: 36px;
        line-height: 40px;
    }
    h4{
        font-size: 20px;
    }
    p, li{
        font-size: 18px;
        line-height: 1.4;
    }
}

/* Buttons */
.button{
    background-color: var(--black);
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 14px 30px;
    color: var(--white);
    font-family: var(--font-family-dinpro-bold);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}
.button:hover,
.button:focus{
    color: var(--white);
    text-decoration: none;
    transform: translateY(-5px);
    border: none;
    outline: none;
}
.button-primary{
    background-color: var(--crimson);
}
.button-big{
    font-family: var(--font-family-dinpro-bold);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    padding: 20px 30px;
}
.button-full{
    font-family: var(--font-family-dinpro-bold);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    padding: 20px 50px;
}
.button-full:hover,
.button-full:focus{
    transform: translateY(-5px);
    box-shadow: 0px 12px 5px -8px rgb(0 0 0 / 20%);
}
.button-outline{
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.button-outline:hover,
.button-outline:focus{
    color: var(--black);
    border: 1px solid var(--black);
}
.button-success{
    background-color: var(--success);
}

.button-fail{
    background-color: var(--fail);
}
.button-samewidth{
    width: 130px;
}
@media screen and (min-width: 768px){
    .button-big{
        font-size: 16px;
        padding: 18px 38px;
    }
    .button-full{
        font-size: 19px;
        padding: 20px 60px;
    }
    .button-outline{
        letter-spacing: 0.08px;
    }
}
@media screen and (min-width: 1280px){
    .button-big{
        font-size: 31px;
        padding: 40px 70px;
    }
    .button-full{
        font-size: 31px;
        padding: 38px 115px;
    }
}

/*************** Header *****************/
.rcrm .rcrm-topbar{
    background-color: var(--cultured-pearl);
    width: 100%;
}
.rcrm-topbar-content{
    display: flex;
    justify-content: space-between;
    max-width: 1920px;
    padding: 0 20px;
    margin: auto;
}
.rcrm .rcrm-topbar-content > *{
    display: flex;
    align-items: center;
    height: 84px;
}
.rcrm .rcrm-topbar .topbar-left a,
.rcrm .topbar-logo{
    height: 100%;
}
.rcrm .rcrm-topbar .topbar-right nav > ul{
    display: flex;
    align-items: center;
}
.rcrm .rcrm-topbar .topbar-right nav > ul > *{
    margin: 0 26px;
}
.rcrm .rcrm-topbar-before{
    background-color: var(--black);
    height: 42px;
    width: 100%;
}
.rcrm .rcrm-topbar-after{
    background-color: var(--alto);
    height: 10px;
    width: 100%;
}

.rcrm .topbar-buttons{
    display: flex;
}
.rcrm .topbar-buttons > *{
    margin-left: 20px;
}
.rcrm .topbar-buttons > *:first-child{
    margin-left: 0;
}

.rcrm .rcrm-topbar .home-link img{
    width: 18px;
    height: 15px;
}

.rcrm .rcrm-topbar a{
    color: var(--black);
    font-family: var(--font-family-dinpro-bold);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.rcrm .rcrm-topbar a,
.rcrm .rcrm-topbar a:hover,
.rcrm .rcrm-topbar a:focus{
    text-decoration: none;
}

.rcrm .rcrm-topbar a.button{
    color: var(--white);
    font-family: var(--font-family-dinpro-bold);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    padding: 17px 36px;
}
.rcrm .rcrm-topbar li{
    list-style: none;
}
@media screen and (min-width: 768px){
    .rcrm-topbar-content{
        padding: 0 50px;
    }
}



/* Drawer */
.rcrm-drawer-top{
    height: 42px;
    width: 400px;
    position: fixed;
    top: 0;
    left: 100%;
    background-color: var(--black);
    z-index: 5;
    transition: all .6s ease-out;
}
.rcrm-drawer-overlay.is-active+.rcrm-drawer-top{
    transform: translateX(-100%);
}
.rcrm-drawer{
    position: fixed;
    top: 42px;
    left: 100%;
    background-color: var(--white);
    width: 400px;
    height: 100%;
    padding: 82px 0;
    transition: all .6s ease-out;
    z-index: 1;
}
.rcrm-drawer.is-open{
    transform: translateX(-100%);
}
.rcrm-drawer nav ul{
    display: flex;
    flex-flow: column;
}
.rcrm-drawer nav li{
    width: 100%;
    text-align: center;
    border-top: 1px solid #DCDDDE;
}
.rcrm-drawer nav li:last-child{
    border-bottom: 1px solid #DCDDDE;
}
.rcrm-drawer nav .rcrm-drawer-link{
    display: inline-block;
    width: 100%;
    padding: 36px 0;
}
.rcrm-drawer nav .rcrm-drawer-link:hover,
.rcrm-drawer nav .rcrm-drawer-link:focus{
    background-color: #DCDDDE;
}
.rcrm-drawer nav .rcrm-drawer-button{
    margin: 20px 0;
}
.rcrm-drawer nav img{
    width: 18px;
    height: 15px;
}

/* Hamburger */
.rcrm-drawer-hamburger {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 0;
    box-shadow: none;
    vertical-align: middle;
    padding: 10px;
    box-sizing: content-box;
    background: transparent;
    z-index: 1;
    cursor: pointer;
}
.rcrm-drawer-hamburger.inactive{
    position: absolute;
}

.rcrm-drawer-hamburger:focus {
    outline: 0;
}
 
.rcrm-drawer-hamburger span {
    display: block;
    width: 80%;
    height: 6px;
    margin: 5px auto;
    background: var(--black);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
 
/* rotate first span */
.rcrm-drawer-hamburger span:first-of-type {
    transform: rotate(45deg) translate(10px, 10px);
}
 
/* hide second span */
.rcrm-drawer-hamburger span:nth-of-type(2) {
    opacity: 0;
}
 
/* rotate third span */
.rcrm-drawer-hamburger span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}
 
.rcrm-drawer-hamburger div {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: .25;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    z-index: -1;
}
.rcrm-drawer-hamburger.inactive div {
    background: var(--color-overlay-text);
}
.rcrm-drawer-hamburger.inactive span {
    transform: none;
    background: var(--black);
    opacity: 1;
}

/* Overlay */
.rcrm-drawer-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    transition: all .6s ease-out;
    z-index: 1;
}
.rcrm-drawer-overlay.is-active{
    pointer-events: all;
    background: rgba(0, 0, 0, .4);
}
@media screen and (max-width: 400px){
    .rcrm-drawer{
        width: 100%;
    }
}
@media screen and (min-width: 768px){
    .rcrm-drawer-hamburger {
        right: 50px;
    }
}



/*************** Footer *****************/
.rcrm footer{
    margin-top: 90px;
    padding: 80px 60px;
    background-color: var(--black);
}
.rcrm footer *{
    color: var(--white);
    text-decoration: none;
}
.rcrm .footer-content{
    max-width: 1080px;
    margin: auto;
}
.rcrm .footer-navigation{
    display: flex;
    flex-flow: row wrap;
}
.rcrm .footer-navigation-col{
    width: 50%;
    display: flex;
}
.rcrm .footer-navigation-col:last-child{
    width: 100%;
    margin-top: 50px;
}
.rcrm .footer-navigation-col > span{
    display: inline-flex;
    flex-flow: column;
}
.rcrm .footer-navigation li{
    margin-top: 20px;
}
.rcrm .footer-navigation a{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.rcrm .footer-separator{
    width: 200px;
    border-bottom: 2px solid var(--crimson);
    margin: 50px auto;
}
.rcrm .crimson *,
.rcrm .crimson{
    color: var(--crimson);
    font-family: var(--font-family-dinpro-bold);
}
.rcrm .footer-text *{
    font-size: 16px;
    text-align: center;
}
.rcrm footer .footer-text *{
    font-size: 12px;
}
.rcrm .footer-social ul{
    display: flex;
}
.rcrm .footer-social ul li{
    margin-right: 30px;
}
.rcrm .footer-social ul li:last-child{
    margin-right: 0;
}
.rcrm .footer-social img{
    height: 15px;
}
.rcrm .footer-social .footer-whatsapp{
    position: relative;
}
.rcrm .footer-social .footer-whatsapp *:last-child{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8px;
}
@media screen and (max-width: 767px){
    .rcrm footer h4{
        font-size: 16px;
    }
    .rcrm footer .footer-text *{
        font-size: 12px;
    }
}
@media screen and (min-width: 768px){
    .rcrm .footer-separator{
        width: 500px;
    }
    .rcrm .footer-navigation-col,
    .rcrm .footer-navigation-col:last-child{
        width: 33.333%;
        margin-top: 0;
    }
    .rcrm .footer-navigation-col > span{
        margin: 0 auto;
    }
}
@media screen and (min-width: 1280px){
    .rcrm footer .footer-text *{
        font-size: 16px;
        line-height: 20px;
    }
}

/*************** Components *****************/

main > *:first-child{
    margin-top: 50px;
}
main > *:first-child.rcrm-hero{
    margin-top: 0;
}
main > *:first-child.rcrm-hero+*{
    margin-top: 50px;
}
.rcrm-component{
    margin-bottom: var(--component-margin);
    position: relative;
}

/* Hero */
.rcrm .rcrm-hero{
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    height: 50vw;
}
.rcrm .hero-content{
    background-color: var(--black);
    padding: 5px 20px;
    left: 0px;
    position: absolute;
    bottom: 10vw;
    max-width: 260px;
}
.rcrm .hero-content p{
    color: var(--white);
    font-family: var(--font-family-dinpro-bold);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04px;
    line-height: 19px;
    text-shadow: 0px 3px 6px #00000029;
    margin: 0;
}

.rcrm .rcrm-hero.rcrm-hero-small{
    height: 36vw;
}
.rcrm .rcrm-hero.rcrm-hero-small .hero-content,
.rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
    bottom: 30%;
    padding: 5px 20px;
}
.rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
    background-color: transparent;
}
.rcrm .rcrm-hero.rcrm-hero-smaller-colored .hero-content{
    background-color: var(--black);
}
.rcrm .rcrm-hero.rcrm-hero-small .hero-content p,
.rcrm .rcrm-hero.rcrm-hero-smaller .hero-content p{
    font-family: var(--font-family-dinpro-bold);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04px;
    line-height: 22px;
    text-shadow: #000 2px 2px 2px;
}
.rcrm .rcrm-hero.rcrm-hero-smaller{
    height: 24vw;
}
.rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
    max-width: 260px;
}
.rcrm .rcrm-hero .hero-content-border{
    border: 2px solid var(--white);
    border-left: none;
}
@media screen and (min-width: 768px){
    .rcrm .rcrm-hero{
        height: 50vw;
    }
    .rcrm .hero-content{
        padding: 10px 40px;
        max-width: 420px;
    }
    .rcrm .hero-content p{
        font-size: 26px;
        letter-spacing: 0.09px;
        line-height: 32px;
    }
    /* .rcrm .rcrm-hero.rcrm-hero-small{
        height: 690px;
    } */
    .rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
        max-width: 300px;
    }
    .rcrm .rcrm-hero.rcrm-hero-small .hero-content p,
    .rcrm .rcrm-hero.rcrm-hero-smaller .hero-content p{
        font-size: 18px;
        letter-spacing: 0.05px;
        line-height: 21px;
    }
    /* .rcrm .rcrm-hero.rcrm-hero-smaller{
        height: 460px;
    } */
    .rcrm .rcrm-hero.rcrm-hero-small .hero-content,
    .rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
        padding: 14px 50px;
    }
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-hero{
        height: 942px;
        background-size: cover;
    }
    .rcrm .hero-content{
        padding: 24px 50px 24px 100px;
        max-width: 920px;
    }
    .rcrm .hero-content p{
        font-size: 60px;
        letter-spacing: 0.24px;
        line-height: 72px;
    }
    .rcrm .rcrm-hero.rcrm-hero-small{
        height: 690px;
    }
    .rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
        max-width: 560px;
    }
    .rcrm .rcrm-hero.rcrm-hero-small .hero-content p,
    .rcrm .rcrm-hero.rcrm-hero-smaller .hero-content p{
        font-size: 36px;
        letter-spacing: 0.14px;
        line-height: 46px;
    }
    .rcrm .rcrm-hero.rcrm-hero-smaller{
        height: 24vw;
    }
    .rcrm .rcrm-hero.rcrm-hero-small .hero-content,
    .rcrm .rcrm-hero.rcrm-hero-smaller .hero-content{
        padding: 24px 80px 24px 100px;
    }
}

/* Paragraph */
.rcrm .rcrm-paragraph{
    text-align: center;
}
.rcrm .rcrm-paragraph h2{
    margin-bottom: 10px;
}
.rcrm .rcrm-paragraph h3{
    margin-bottom: 20px;
}
.rcrm .rcrm-paragraph .rcrm-checkmark-list{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.rcrm .rcrm-paragraph .rcrm-checkmark-list > span{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.rcrm .rcrm-paragraph .rcrm-checkmark-list span span{
    text-align: left;
    width: 100%;
    margin-top: 16px
}
.rcrm .rcrm-paragraph .rcrm-checkmark-list img{
    width: 15px;
    height: 12px;
    margin-right: 30px;
}
@media screen and (max-width: 767px){
    .rcrm .rcrm-paragraph .rcrm-checkmark-list *{
        font-size: 18px;
    }
}
@media screen and (min-width: 768px){
    .rcrm .rcrm-paragraph h2{
        margin-bottom: 20px;
    }
    h3.h3-big{
        font-size: 25px;
        line-height: 44px;
        letter-spacing: 0.1px;
    }
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-paragraph h2{
        margin-bottom: 36px;
    }
    .rcrm .rcrm-paragraph h3{
        margin-bottom: 36px;
    }
    .rcrm .rcrm-paragraph .rcrm-checkmark-list span span{
        margin-top: 30px
    }
    .rcrm .rcrm-paragraph .rcrm-checkmark-list{
        margin-top: 60px;
    }
    .rcrm .rcrm-paragraph .rcrm-checkmark-list img{
        width: 31px;
        height: 25px;
    }
}


/* Cards */
.rcrm .rcrm-cards{
    display: flex;
    flex-flow: row wrap;
}
.rcrm .rcrm-cards .card{
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
}
.rcrm .rcrm-cards .card:last-child{
    margin-bottom: 0;
}
.rcrm .rcrm-cards .card-content{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    min-height: 262px;
    border-radius: 8px;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid var(--dove-gray);
}
.rcrm .rcrm-cards .card-text{
    padding: 20px;
}
.rcrm .rcrm-cards h3{
    margin-bottom: 20px;
}
.rcrm .rcrm-cards h3{
    margin-bottom: 20px;
}
.rcrm .rcrm-cards .card-image{
    width: 100%;
}
@media screen and (min-width: 768px){
    .rcrm .rcrm-cards .card{
        width: 33.333%;
        margin-bottom: 0;
    }
    .rcrm .rcrm-cards .card:first-child .card-content{
        margin-right: 23px;
    }
    .rcrm .rcrm-cards .card:nth-child(2) .card-content{
        margin: 0 10px;
    }
    .rcrm .rcrm-cards .card:last-child .card-content{
        margin-left: 23px;
    }
    .rcrm .rcrm-cards .card-content{
        min-height: 262px;
    }
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-cards .card{
        text-align: unset;
    }
    .rcrm .rcrm-cards .card:first-child .card-content{
        margin-right: 55px;
    }
    .rcrm .rcrm-cards .card:nth-child(2) .card-content{
        margin: 0 25px;
    }
    .rcrm .rcrm-cards .card:last-child .card-content{
        margin-left: 55px;
    }
    .rcrm .rcrm-cards .card-content{
        min-height: 400px;
    }
    .rcrm .rcrm-cards h3{
        font-size: 23px;
        line-height: 26px;
    }
    .rcrm .rcrm-cards p{
        font-size: 20px;
        line-height: 26px;
    }
    .rcrm .rcrm-cards .card-text{
        padding: 40px 50px;
    }
}


/* Component Button */
.rcrm-component-button{
    text-align: center;
    margin-bottom: var(--component-margin);
}
.rcrm-component-button .button{
    display: inline-block;
}
.rcrm-component-button .button:hover,
.rcrm-component-button .button:focus{
    box-shadow: 0px 12px 5px -8px rgb(0 0 0 / 20%);
}
.rcrm-component-button.no-margin-top{
    margin-top: calc(var(--component-margin) * -1);
}
@media screen and (max-width: 767px){
    .rcrm-component-button.s-no-margin-top{
        margin-top: calc(var(--component-margin) * -1);
    }
}


/* Call To Action */
.rcrm .rcrm-cta{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.rcrm .rcrm-cta:before{
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    height: 110%;
    background-color: rgba(0,0,0,0.1);
    pointer-events: none;
}
.rcrm .rcrm-cta>*:first-child{
    width: 100%;
    text-align: center;
}
.rcrm .rcrm-cta>*:last-child{
    width: 100%;
}
/* .rcrm .button-container .bg-arrow{
} */
.rcrm .button-container{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.rcrm .button-container .arrow-text{
    width: 0;
    height: 0;
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent; 
    border-right: 120px solid var(--crimson);
    text-align: right;
    color: #fff;
    position: relative;
    margin-right: 30px;
}
.rcrm .button-container .arrow-text > span{
    position: absolute;
    top: 50%;
    left: 44px;
    transform: translateY(-50%);
}
.rcrm .button-container .arrow-text > span span{
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}
.rcrm .button-container .arrow-text span span *:last-child{
    align-self: flex-start;
    margin-top: 4px;
}
.rcrm .rcrm-cta > p{
    color: var(--black);
    font-family: var(--font-family-dinpro-bold);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 24px;
}
.rcrm .rcrm-cta .arrow-text *{
    font-family: var(--font-family-dinpro-bold);
}
.rcrm .rcrm-cta .arrow-text{
    font-family: var(--font-family-dinpro-bold);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}
.rcrm .rcrm-cta .arrow-text span{
    width: 60px;
}
.rcrm .rcrm-cta .arrow-text small{
    font-size: 12px;
}
.rcrm .rcrm-cta .arrow-text small.dollar{
    font-size: 14px;
}
@media screen and (min-width: 768px){
    .rcrm .rcrm-cta{
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }
    .rcrm .rcrm-cta:before{
        height: 80%;
    }
    .rcrm .rcrm-cta>*:first-child{
        width: 50%;
    }
    .rcrm .rcrm-cta>*:last-child{
        width: 50%;
    }
    .rcrm .rcrm-cta > p{
        margin-bottom: unset;
    }
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-cta{
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }
    .rcrm .rcrm-cta>*:first-child{
        width: 60%;
    }
    .rcrm .rcrm-cta>*:last-child{
        width: 40%;
    }
    .rcrm .rcrm-cta .arrow-text span{
        width: 100px;
    }
    .rcrm .button-container .arrow-text{
        border-top: 140px solid transparent;
        border-bottom: 140px solid transparent; 
        border-right: 180px solid var(--crimson);
        margin-right: 68px;
    }
    .rcrm .button-container .arrow-text span{
        left: 56px;
    }
    .rcrm .rcrm-cta > p{
        font-size: 24px;
        margin-bottom: unset;
        line-height: 27px;
    }
    .rcrm .rcrm-cta .arrow-text{
        font-size: 34px;
    }
    .rcrm .rcrm-cta .arrow-text small{
        font-size: 17px;
    }
    .rcrm .rcrm-cta .arrow-text small.dollar{
        font-size: 20px;
    }
}


/* Separator */
.rcrm .rcrm-separator{
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
    height: 14px;
    margin: 100px auto;
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-separator{
        height: 36px;
    }
}

/* Columns */
.rcrm .rcrm-columns .row{
    display: flex;
    flex-flow: column;
    align-items: center;
}
.rcrm .rcrm-columns .column{
    width: 100%;
    margin-bottom: 20px;
}
.rcrm .rcrm-columns .row:nth-child(even){
    flex-flow: column-reverse;
}
.rcrm .rcrm-columns img{
    width: 100%;
}
.rcrm .rcrm-card{
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid var(--dove-gray);
    padding: 30px 20px;
    min-height: 260px;
    text-align: center;
}
.rcrm .rcrm-columns-full .rcrm-card{
    min-height: 300px;
}
.rcrm .rcrm-card h3{
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}
.rcrm .rcrm-card p{
    color: var(--dove-gray);
    font-family: var(--font-family-dinpro-regular);
    font-size: 14px;
    letter-spacing: -0.12px;
    font-style: normal;
    font-weight: 400;
}
@media screen and (min-width: 768px){
    .rcrm .rcrm-columns .row{
        display: flex;
        flex-flow: row;
        align-items: center;
        margin-bottom: 80px;
    }
    .rcrm .rcrm-columns .row:nth-child(even){
        flex-flow: row;
    }
    .rcrm .rcrm-columns .column{
        width: 40%;
        margin-bottom: unset;
    }
    .rcrm .rcrm-columns-compressed .column{
        padding: 20px !important;
    }
    .rcrm .rcrm-columns .column:first-child{
        padding-right: 20px
    }
    .rcrm .rcrm-columns .column:last-child{
        padding-left: 20px
    }
    .rcrm .rcrm-columns .row:nth-child(odd) .column:first-child{
        width: 60%;
    }
    .rcrm .rcrm-columns .row:nth-child(even) .column:last-child{
        width: 60%;
    }
    .rcrm .rcrm-columns.rcrm-columns-compressed .row:nth-child(odd) .column,
    .rcrm .rcrm-columns.rcrm-columns-compressed .row:nth-child(even) .column{
        width: 50%;
    }
    .rcrm .rcrm-columns.rcrm-columns-compressed .row{
        margin-bottom: 0;
    }
    .rcrm .rcrm-columns-compressed:before{
        content: "";
        height: calc(100% - 40px);
        position: absolute;
        top: 20px;
        left: 50%;
        width: 1px;
        border-right: 1px solid var(--crimson);
    }
    .rcrm .rcrm-card{
        padding: 24px 36px;
    }
    .rcrm .rcrm-card h3{
        font-size: 24px;
        line-height: 1.2;
    }
    .rcrm .rcrm-card p{
        font-size: 16px;
    }
    .rcrm .rcrm-columns-full .rcrm-card{
        min-height: 360px;
    }
    .rcrm .rcrm-columns-compressed .rcrm-card{
        min-height: 290px;
    }
    .rcrm .rcrm-columns-inverse .column:first-child{
        width: 40%;
    }
    .rcrm .rcrm-columns-inverse .column:last-child{
        width: 60%;
    }
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-columns .row{
        margin-bottom: 0;
    }
    .rcrm .rcrm-columns-full:before{
        content: "";
        height: calc(100% - 180px);
        position: absolute;
        top: 90px;
        left: 50%;
        width: 1px;
        border-right: 1px solid var(--crimson);
    }
    .rcrm .rcrm-columns .column,
    .rcrm .rcrm-columns .row:nth-child(odd) .column:first-child,
    .rcrm .rcrm-columns .row:nth-child(even) .column:last-child{
        width: 50%;
    }
    .rcrm .rcrm-card{
        text-align: unset;
    }
    .rcrm .rcrm-columns .column,
    .rcrm .rcrm-columns .column:first-child,
    .rcrm .rcrm-columns .column:last-child{
        padding: 60px;
    }
    .rcrm .rcrm-columns-compressed .column{
        padding: 25px 50px !important;
    }
    .rcrm .rcrm-card h3{
        font-size: 30px;
        letter-spacing: unset;
    }
    .rcrm .rcrm-columns-full .rcrm-card{
        min-height: 240px;
    }
}

/* Plan Columns */
.rcrm .rcrm-plan-columns .row{
    display: flex;
    flex-flow: column;
    align-items: center;
}
.rcrm .rcrm-plan{
    max-width: 500px;
    box-shadow: 0px 6px 9px #00000029;
}
.rcrm .rcrm-plan-columns .column{
    padding: 20px;
}
.rcrm .rcrm-plan-columns .column:first-child .rcrm-plan-signup,
.rcrm .rcrm-plan-columns .column:first-child .rcrm-plan{
    margin-left: auto;
}
.rcrm .rcrm-plan-columns .column:last-child .rcrm-plan-signup,
.rcrm .rcrm-plan-columns .column:last-child .rcrm-plan{
    margin-right: auto;
}
.rcrm .rcrm-plan-black{
    position: relative;
    background-color: var(--black);
    padding: 30px;
}
.rcrm .rcrm-plan-black h2{
    margin-top: 0;
}
.rcrm .rcrm-plan-black h3{
    color: var(--white);
}
.rcrm .rcrm-plan-white{
    background-color: var(--white);
    padding: 20px;
}
.rcrm .rcrm-plan-arrow{
    width: 0;
    height: 0;
    border-top: 140px solid transparent;
    border-bottom: 140px solid transparent; 
    border-right: 140px solid var(--crimson);
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(50%);
    line-height: 1;
}
.rcrm .rcrm-plan-arrow *{
    color: #fff;
    font-family: var(--font-family-dinpro-bold);
    font-style: normal;
    font-weight: 700;
}
.rcrm .rcrm-plan-arrow p{
    font-size: 30px;
    width: 140px;
    position: relative;
    bottom: 38px;
    right: 20px;
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    line-height: 1;
}
.rcrm .rcrm-plan-arrow p *:first-child{
    align-self: flex-end;
    margin-bottom: 2px;
}
.rcrm .rcrm-plan-arrow p *:last-child{
    align-self: flex-start;
    margin-top: 2px;
}
.rcrm .rcrm-plan-arrow p small{
    font-size: 22px;
}
.rcrm .rcrm-plan h4{
    margin-left: 54px;
    text-align: left;
    width: 100%;
}
.rcrm .rcrm-plan .rcrm-checkmark-list{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.rcrm .rcrm-plan .rcrm-checkmark-list > span{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.rcrm .rcrm-plan .rcrm-checkmark-list span span{
    text-align: left;
    width: 100%;
    margin-top: 4px;
}
.rcrm .rcrm-plan .rcrm-checkmark-list img{
    width: 15px;
    height: 12px;
    margin-right: 14px;
}
.rcrm .rcrm-plan-signup{
    text-align: center;
    max-width: 500px;
    margin-top: 40px;
}
@media screen and (max-width: 330px){
    .rcrm .rcrm-plan-columns .column{
        padding: 20px 0;
    }
}
@media screen and (min-width: 768px){
    .rcrm .rcrm-plan-columns .row{
        flex-flow: row;
    }
    .rcrm .rcrm-plan-columns .column{
        width: 50%;
        padding: 20px;
    }
    .rcrm .rcrm-plan-columns .column:first-child{
        width: 50%;
        padding-left: 0;
    }
    .rcrm .rcrm-plan-columns .column:last-child{
        width: 50%;
        padding-right: 0;
    }
    .rcrm .rcrm-plan-black{
        padding: 20px;
    }
    .rcrm .rcrm-plan h2{
        margin-bottom: 20px;
    }
    .rcrm .rcrm-plan-arrow p{
        font-size: 32px;
        width: 140px;
        bottom: 42px;
        right: 14px;
        line-height: 1;
    }
    .rcrm .rcrm-plan-arrow p *:last-child{
        margin: 0;
    }
    .rcrm .rcrm-plan-arrow p small{
        font-size: 26px;
    }
    .rcrm .rcrm-plan .rcrm-checkmark-list span span{
        margin-top: 10px;
    }
}
@media screen and (min-width: 1280px){
    .rcrm .rcrm-plan-arrow p *:first-child{
        align-self: flex-end;
        margin-bottom: 10px;
    }
    .rcrm .rcrm-plan-arrow p *:last-child{
        align-self: flex-start;
        margin-top: 4px;
    }
    .rcrm .rcrm-plan{
        max-width: 600px;
    }
    .rcrm .rcrm-plan-signup{
        max-width: 600px;
    }
    .rcrm .rcrm-plan-columns .row{
        flex-flow: row;
    }
    .rcrm .rcrm-plan-columns .column{
        width: 50%;
        padding: 30px;
    }
    .rcrm .rcrm-plan-columns .column:first-child{
        width: 50%;
    }
    .rcrm .rcrm-plan-columns .column:last-child{
        width: 50%;
    }
    .rcrm .rcrm-plan-black{
        padding: 60px;
    }
    .rcrm .rcrm-plan h2{
        margin-bottom: 20px;
        font-size: 36px;
    }
    .rcrm .rcrm-plan h3{
        font-size: 23px;
        margin-top: 10px;
        margin-bottom: 0;
    }
    .rcrm .rcrm-plan .rcrm-checkmark-list span span{
        margin-top: 0;
    }
    .rcrm .rcrm-plan-arrow p small{
        font-size: 60px;
    }
    .rcrm .rcrm-plan .h3{
        font-size: 23px;
    }
    .rcrm .rcrm-plan h4{
        margin-left: 54px;
        text-align: left;
        width: 100%;
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .rcrm .rcrm-plan-arrow{
        width: 0;
        height: 0;
        border-top: 315px solid transparent;
        border-bottom: 315px solid transparent; 
        border-right: 315px solid var(--crimson);
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translateY(50%);
    }
    .rcrm .rcrm-plan-arrow *{
        color: #fff;
        font-family: var(--font-family-dinpro-bold);
        font-style: normal;
        font-weight: 700;
    }
    .rcrm .rcrm-plan-arrow p{
        font-size: 80px;
        width: 300px;
        position: relative;
        bottom: 65px;
        right: 10px;
        line-height: 1;
    }
    .rcrm .rcrm-plan-arrow p small{
        font-size: 50px;
    }
}




.text-center{
    text-align: center;
}
.show-on-l{
    display: none !important;
}
.show-on-xl{
    display: none !important;
}
@media screen and (min-width: 768px){
    .hide-on-l{
        display: none !important;
    }
    .show-on-l{
        display: inherit !important;
    }
    
}
@media screen and (min-width: 1280px){
    .hide-on-xl{
        display: none !important;
    }
    .show-on-xl{
        display: inherit !important;
    }
    
}


/***************** LOGIN / SIGNUP / CONTACT ***************/
.rcrm .section-contact,
.rcrm .section-login{
    margin: 80px auto 70px;
}
.rcrm input, .rcrm textarea{
    border: 2px solid #707070;
    border-radius: 8px !important;
    height: 48px;
    width: 220px;
    margin-bottom: 28px;
    padding: 0 24px;
}
.rcrm input.button{
    border: none;
    border-radius: 8px !important;
}
.rcrm form{
    margin-top: 40px;
}
.rcrm .separator{
    width: 500px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 50px 0;
    border-bottom: 1px solid var(--crimson);
}
@media screen and (max-width: 500px){
    .rcrm .separator{
        width: 100%;
    }
}
@media screen and (min-width: 768px){
    .rcrm .u-input{
        width: 350px;
    } 
}
.rcrm.login .section-login{
    margin: 80px auto 70px;
}
.rcrm.login .u-input{
    border: 2px solid #707070;
    border-radius: 8px !important;
    height: 48px;
    width: 220px;
    margin-bottom: 28px;
    padding: 0 24px;
}
.rcrm.login input.button{
    border: none;
    border-radius: 8px !important;
}
.rcrm.login h2{
    margin-top: 0;
    margin-bottom: 40px;
}
.rcrm.login h4{
    border: none;
    margin-top: 40px;
    margin-bottom: 20px;
    border-radius: 8px !important;
}
.rcrm.login form{
    margin-top: 40px;
}
.rcrm.login .separator{
    width: 500px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 50px 0;
    border-bottom: 1px solid var(--crimson);
}

.section-contact form{
    display: flex;
    flex-flow: row wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    max-width: 500px;
}

.section-contact form .form-container{
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    width: 460px;
}
.section-contact form textarea{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 120px;
}
@media screen and (min-width: 768px){
    .section-contact form .form-container{
        flex-flow: row;
    } 
    .section-contact form textarea{
        width: 456px;
    }
}


/************  TERMS AND CONDITIONS  **************/

.rcrm .rcrm-block{
    padding: 50px 20px;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #707070;
    max-width: 1170px;
    margin: auto;
    margin-top: 50px;
}
.rcrm .rcrm-block h3{
    margin-top: 40px;
}
.rcrm #termsAccepted,
.rcrm #acceptAndDecline{
    margin-top: 70px;
}

.rcrm .rcrm-block ul{
    display: list-item;
    margin-left: 2em;
    padding: 0;
}
.rcrm .rcrm-block ul li{
    list-style-type: disc;
}
@media screen and (min-width:768px){
    .rcrm .rcrm-block{
        padding: 50px;
        box-shadow: 0px 3px 6px #00000029;
        border: 1px solid #707070;
        max-width: 1170px;
        margin: auto;
        margin-top: 50px;
    }
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    text-align: justify;
    margin-bottom: 20px;
    border-radius: 0 !important;
}

.active,
.accordion:hover {
    background-color: #ccc;
}
.accordion:focus {
    border: none;
    outline: none;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: 400;
    float: right;
    margin-left: 5px;
    font-size: 26px !important;
    line-height: 20px;
}
.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.2s ease-out;
}
p+button{
    margin-top: 40px;
}
.terms-button-container{
    display: flex;
    justify-content: center;
}
.terms-button-container > *:first-child{
    margin-right: 20px;
}

.s-conn-plus{
    display: inline-block;
    transform: scale(1) translateY(-20%);
}

.anim-fade {
    opacity: 0;
}
.animenter .anim-fade,
.anim-fade.animenter {
    animation: fade .8s ease-out forwards;
}
@keyframes fade {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.anim-left-60 {
    transform: translateX(-60px);
    opacity: 0;
}
.animenter .anim-left-60,
.anim-left-60.animenter {
    animation: left-60 .8s ease-out forwards;
}
@keyframes left-60 {
    0%{
        opacity: 0;
        transform: translateX(-60px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.anim-right-60 {
    transform: translateX(60px);
    opacity: 0;
}
.animenter .anim-right-60,
.anim-right-60.animenter {
    animation: right-60 .8s ease-out forwards;
}
@keyframes right-60 {
    0%{
        opacity: 0;
        transform: translateX(60px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}