/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
.franchise-ctn section.s-investments div.wrapper {
    max-width: 1500px;
}

.franchise-ctn section.s-investments h2 {
    margin: 0 0 35px 0;
    line-height: 1.4em;
}

.franchise-ctn section.s-investments p.introduction {
    margin: 0 0 120px 0;
    font-size: 22px;
}

.franchise-ctn section.s-investments div.content-ctn {
    max-width: 1200px;
    font-size: 0;
    width: 100%;
    margin: auto;
}

.franchise-ctn section.s-investments div.box {
    background: #ed1d24;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 390px;
    padding: 85px 25px 75px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.franchise-ctn section.s-investments div.box h3, .franchise-ctn section.s-investments div.box p {
    color: #FFFFFF;
    text-align: left;
}

.franchise-ctn section.s-investments div.box h3 {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin: 0 0 5px 0;
}

.franchise-ctn section.s-investments div.box p.info {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    margin: 0 0 5px 0;
}

.franchise-ctn section.s-investments div.box p.detail {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.franchise-ctn section.s-investments div.box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 150px;
    background: #ed1d24;
}

.franchise-ctn section.s-investments div.box-info {
    margin: 0 0 40px 0;
}

.franchise-ctn section.s-investments div.box-info:last-child {
    margin: 0;
}

.franchise-ctn section.s-investments div.dropdown-ctn {
    vertical-align: top;
    display: inline-block;
    width: calc(100% - 390px);
    padding: 145px 0 310px 0;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    color: #000000;
    border-bottom: solid 1px #D7D7D7;
    text-align: left;
    margin-left: 120px;
    position: relative;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown:first-child {
    border-top: solid 1px #D7D7D7;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown h3 {
    padding: 28px 35px 30px 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown svg.icon-franchise-x {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 30px;
    right: 5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 1;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown svg.icon-franchise-x path {
    fill: #ed1d24;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content {
    overflow: hidden;
    height: 0;
    position: relative;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul {
    padding: 5px 0 0 0;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #000000;
    margin: 0 0 30px 0;
    position: relative;
    line-height: 1.5;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li span {
    padding: 0 0 0 40px;
    display: block;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li svg {
    width: 23px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li svg path {
    fill: #ed1d24;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown.active div.drop-content {
    height: auto;
}

.franchise-ctn section.s-investments div.dropdown-ctn div.dropdown.active svg.icon-franchise-x {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

.franchise-ctn section.s-investments div.picture {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    margin: -270px 0 0 0;
}

@media (min-width: 0) and (max-width: 1439px) {
    .franchise-ctn section.s-investments h2 {
        margin: 0 0 25px 0;
    }
    .franchise-ctn section.s-investments p.introduction {
        margin: 0 0 80px 0;
    }
    .franchise-ctn section.s-investments div.picture {
        height: 300px;
    }
    .franchise-ctn section.s-investments div.box {
        width: 300px;
    }
    .franchise-ctn section.s-investments div.box p.info {
        font-size: 25px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn {
        padding: 100px 0 310px 0;
        width: calc(100% - 550px);
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown {
        margin-left: 60px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown h3 {
        font-size: 25px;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .franchise-ctn section.s-investments h2 {
        margin: 0 0 25px 0;
    }
    .franchise-ctn section.s-investments p.introduction {
        margin: 0 0 80px 0;
    }
    .franchise-ctn section.s-investments div.picture {
        height: 300px;
    }
    .franchise-ctn section.s-investments div.box {
        width: 300px;
    }
    .franchise-ctn section.s-investments div.box p.info {
        font-size: 25px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn {
        padding: 100px 0 310px 0;
        width: calc(100% - 400px);
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown {
        margin-left: 60px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown h3 {
        font-size: 25px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li {
        font-size: 18px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .franchise-ctn section.s-investments div.picture {
        height: 200px;
    }
    .franchise-ctn section.s-investments h2 {
        margin: 0 0 15px 0;
    }
    .franchise-ctn section.s-investments p.introduction {
        margin: 0 0 40px 0;
        font-size: 18px;
    }
    .franchise-ctn section.s-investments div.box {
        width: 100%;
        display: block;
        margin: auto;
        padding: 40px 20px;
    }
    .franchise-ctn section.s-investments div.box:before {
        display: none;
    }
    .franchise-ctn section.s-investments div.box h3 {
        font-size: 16px;
    }
    .franchise-ctn section.s-investments div.box p.info {
        font-size: 20px;
    }
    .franchise-ctn section.s-investments div.box p.detail {
        font-size: 16px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn {
        display: block;
        width: 100%;
        padding: 50px 0 80px 0;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown {
        margin-left: 0;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown h3 {
        font-size: 20px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown svg.svg-x-icon {
        width: 16px;
        height: 16px;
        top: 34px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li {
        margin: 0 0 15px 0;
        font-size: 16px;
    }
    .franchise-ctn section.s-investments div.dropdown-ctn div.dropdown div.drop-content ul li svg {
        width: 17px;
        height: 12px;
    }
}

/*# sourceMappingURL=section.investments.css.map */
