.containerFluid {
    max-width: 1600px;
    margin: 0 auto;
}

.containerSite {
    max-width: 1395px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.refLink {
    color: #1b1410;
}

header {
    padding: 1.6rem 0;
    background-color: #fff;
    position: relative;
}

@media screen and (max-width: 1024px) {
    header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    header {
        display: block;
        z-index: 1000;
        height: 85px;
    }
    header.open {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
}

header .logoCt__img {
    width: 330px;
}

@media screen and (max-width: 1200px) {
    header .logoCt__img {
        width: 230px;
    }
}

@media screen and (max-width: 1024px) {
    header .logoCt__img {
        width: 150px;
    }
}

header .logoCt.logoSp {
    display: none;
}

@media screen and (max-width: 1024px) {
    header .logoCt.logoSp {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        margin: 1.5rem 0;
    }
}

@media screen and (max-width: 992px) {
    header .logoCt.logoSp {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        justify-content: flex-start;
        margin: 0;
        padding: 1rem 0;
    }
}

@media screen and (max-width: 1024px) {
    header .navigation {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    header .navigation {
        margin-bottom: 0;
    }
}

header .toggleMenu {
    display: none;
}

.navList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    white-space: nowrap;
}

.navList__item:not(.hasLogo) > .navLink {
    text-transform: uppercase;
    display: block;
    color: #2e1d14;
    padding: 1.1rem 1.6rem;
    font-size: 1.8rem;
    font-family: "Century Gothic", sans-serif;
    font-weight: normal;
}

@media screen and (max-width: 1200px) {
    .navList__item:not(.hasLogo) > .navLink {
        font-size: 1.6rem;
    }
}

.navList__item .navLink {
    border: 2px solid transparent;
    border-radius: 6px;
}

.navList__item.active .navLink, .navList__item:hover .navLink {
    border: 2px solid #2e1d14;
    border-radius: 6px;
}

.navList__item:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1024px) {
    .hasLogo {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .navigation {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: absolute;
        background-color: #fff;
        z-index: -1;
        margin-top: 85px;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .navigation.open {
        opacity: 1;
        visibility: visible;
        -webkit-overflow-scrolling: touch;
    }
    .navigation .navList {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .navigation .navList__item {
        display: block;
        width: 100%;
    }
    .navigation .navList__item .navLink {
        border-bottom: 1px solid #ddd;
        font-size: 1.8rem;
        padding: 1.5rem 1.6rem;
    }
    .navigation .navList__item.active .navLink {
        border: none;
        background-color: #2e1d14;
        color: #fff;
        border-radius: 0;
    }
    header .toggleMenu {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: block;
        background-color: #2e1d14;
        color: #fff;
        height: 100%;
        width: 85px;
        font-size: 5rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
    }
    header .active {
        max-height: 100%;
        overflow: auto;
    }
}

.bgFooter {
    background-image: url("../img/common/bg_footer02.png"), url("../img/common/bg_footer01.png");
    background-position: bottom center;
    background-repeat: repeat-x, repeat;
}

.partnerContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.partnerContainer .innerCt__heading {
    color: #1b1410;
    font-size: 3.6rem;
    padding: 4.5rem 0;
    text-align: center;
    font-family: "Century Gothic", sans-serif;
}

@media screen and (max-width: 768px) {
    .partnerContainer .innerCt__heading {
        padding: 3rem 0;
    }
}

.partnerContainer .innerCt__heading .text-bold {
    font-weight: 700;
}

.partnerContainer .innerCt__heading .text-italic {
    font-style: italic;
    font-weight: normal;
}

.contactContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.contactContainer .formContact {
    padding-top: 8rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid #717171;
    border-top: 2px solid #717171;
}

@media screen and (max-width: 768px) {
    .contactContainer .formContact {
        padding: 3rem 0;
    }
}

.contactContainer .formContact .textTop {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
    .contactContainer .formContact .textTop {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .contactContainer .formContact .textTop {
        font-size: 1.6rem;
    }
}

.contactContainer .formContact .textTop .refLink {
    text-decoration: underline;
    font-weight: 500;
}

.contactContainer .formContact .frGroup {
    margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .contactContainer .formContact .frGroup {
        margin-bottom: 3rem;
    }
}

.contactContainer .formContact .btn-submit {
    height: 52px;
    border-radius: 5px;
    background-color: #fff;
    border: 2px solid #717171;
    padding: 1rem;
    text-transform: uppercase;
    width: 205px;
    color: #1b1410;
    font-weight: bold;
    font-size: 1.8rem;
}

.contactContainer .formContact .footerForm {
    text-align: center;
    margin-top: 4rem;
}

@media screen and (max-width: 768px) {
    .contactContainer .formContact .footerForm {
        margin-top: 3rem;
    }
}

.contactContainer .formContact .footerForm .terms {
    margin-top: 3rem;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .contactContainer .formContact .footerForm .terms {
        font-size: 1.6rem;
    }
}

.contactContainer .formContact .footerForm .terms .refLink {
    text-decoration: underline;
    font-weight: 500;
}

.footerContainer {
    padding-top: 5rem;
    padding-bottom: 10rem;
}

@media screen and (max-width: 768px) {
    .footerContainer {
        padding: 3rem 0;
    }
}

.footerContainer .socialList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}

.footerContainer .socialList__item {
    margin-right: 1rem;
}

.footerContainer .socialList__item:last-child {
    margin-right: 0;
}

.footerContainer .copyright {
    font-size: 1.6rem;
    font-weight: 300;
    padding-top: 5rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media screen and (max-width: 768px) {
    .footerContainer .copyright {
        padding-top: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .footerContainer .copyright {
        font-size: 1.3rem;
    }
}

.partnerList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding-bottom: 4rem;
}

@media screen and (max-width: 768px) {
    .partnerList {
        padding-bottom: 3rem;
    }
}

.partnerList__item {
    margin-right: 9rem;
}

@media screen and (max-width: 768px) {
    .partnerList__item {
        margin-right: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .partnerList__item {
        margin-right: 1.5rem;
    }
}

.partnerList__item > img {
    width: 210px;
}

.partnerList__item:last-child {
    margin-right: 0;
}

.-top .aboutContainer .aboutCt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5rem 0;
}

@media screen and (max-width: 992px) {
    .-top .aboutContainer .aboutCt {
        padding: 3rem 0;
    }
}

.-top .aboutContainer .aboutCt__left {
    width: calc(100% - 532px);
}

@media screen and (max-width: 1200px) {
    .-top .aboutContainer .aboutCt__left {
        width: 100%;
    }
}

.-top .aboutContainer .aboutCt__left .innerCt__heading {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-family: "Century Gothic", sans-serif;
    font-weight: bold;
}

.-top .aboutContainer .aboutCt__left .innerCt__desc {
    position: relative;
    padding-right: 6rem;
    padding-left: 3.5rem;
    text-align: justify;
    font-weight: 300;
    font-size: 1.6rem;
}

@media screen and (max-width: 1200px) {
    .-top .aboutContainer .aboutCt__left .innerCt__desc {
        padding-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .-top .aboutContainer .aboutCt__left .innerCt__desc {
        padding-left: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .-top .aboutContainer .aboutCt__left .innerCt__desc {
        padding-left: 1.5rem;
    }
}

.-top .aboutContainer .aboutCt__left .innerCt__desc:before {
    content: "";
    width: 9px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #f0dfbc;
}

@media screen and (max-width: 480px) {
    .-top .aboutContainer .aboutCt__left .innerCt__desc:before {
        width: 5px;
    }
}

.-top .aboutContainer .aboutCt__right, .-top .aboutContainer .aboutCt .bgAbout {
    width: 532px;
    height: 334px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 1200px) {
    .-top .aboutContainer .aboutCt__right, .-top .aboutContainer .aboutCt .bgAbout {
        display: none;
    }
}

.-top .aboutContainer .aboutCt .bgAbout {
    display: none;
}

@media screen and (max-width: 1200px) {
    .-top .aboutContainer .aboutCt .bgAbout {
        display: block !important;
        margin-bottom: 1.5rem;
        width: 100%;
    }
}

.-top .sneakContainer {
    background-color: #1b1410;
    position: relative;
}

.-top .sneakContainer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background-image: url("../img/common/border_pattern.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    top: 5px;
    left: 0;
}

.-top .sneakContainer:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background-image: url("../img/common/border_pattern.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    bottom: 0;
    left: 0;
}

.-top .sneakContainer .sneakWidth {
    max-width: 1476px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 4rem;
}

.-top .sneakContainer .sneakCt__heading {
    font-size: 3.6rem;
    padding: 6rem 0 4rem 0;
    color: #ffae00;
    text-align: center;
    font-family: "Century Gothic", sans-serif;
}

.-top .sneakContainer .sneakCt__heading .text-bold {
    font-weight: 700;
}

.-top .sneakContainer .sneakCt__heading .text-italic {
    font-style: italic;
    font-weight: normal;
}

.-top .sneakContainer .sneakCt .listSneak {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.-top .sneakContainer .sneakCt .listSneak__item {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}

.-top .sneakContainer .sneakCt .listSneak__item .innerCt {
    border-radius: 8px;
    overflow: hidden;
}

.-top .sneakContainer .sneakCt .listSneak__item .innerCt__img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    height: 264px;
}

.-top .sneakContainer .sneakCt .listSneak__item .innerCt__img > img {
    display: none;
}

.-top .sneakContainer .sneakCt .listSneak__item .innerCt__heading {
    font-size: 2.1rem;
    font-weight: bold;
    color: #fff;
    padding: 1.4rem 1rem;
    font-family: "Century Gothic", sans-serif;
    text-shadow: 0px 2px 3px rgba(24, 24, 24, 0.53);
}

.-top .sneakContainer .sneakCt .listSneak__item:first-child .innerCt__heading {
    background-color: #c35bbd;
    text-align: center;
}

.-top .sneakContainer .sneakCt .listSneak__item:nth-child(2) .innerCt__heading {
    background-color: #40a4de;
    text-align: center;
}

.-top .sneakContainer .sneakCt .listSneak__item:nth-child(3) .innerCt__heading {
    background-color: #de4040;
    text-align: center;
}

.-top .sneakContainer .sneakCt .listSneak__item:nth-child(4) .innerCt__heading {
    background-color: #de9540;
    text-align: center;
}

.-top .sneakContainer .sneakCt .listSneak__item:last-child .innerCt__heading {
    background-color: #67c05b;
    text-align: center;
}

.-sneak .descPage .innerCt {
    background-image: url("../img/sneak/bg.png");
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

@media screen and (max-width: 992px) {
    .-sneak .descPage .innerCt {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 768px) {
    .-sneak .descPage .innerCt {
        padding: 3rem 0;
    }
}

.-sneak .descPage .innerCt__heading {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #2e1d14;
    font-family: "Century Gothic", sans-serif;
}

.-sneak .descPage .innerCt__heading .text-bold {
    font-weight: 700;
}

.-sneak .descPage .innerCt__heading .text-italic {
    font-style: italic;
    font-weight: normal;
}

.-sneak .descPage .innerCt__desc {
    position: relative;
    padding-right: 6rem;
    padding-left: 3.5rem;
    text-align: justify;
    font-weight: 300;
    font-size: 1.6rem;
}

@media screen and (max-width: 1200px) {
    .-sneak .descPage .innerCt__desc {
        padding-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .-sneak .descPage .innerCt__desc {
        padding-left: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .-sneak .descPage .innerCt__desc {
        padding-left: 1.5rem;
    }
}

.-sneak .descPage .innerCt__desc:before {
    content: "";
    width: 9px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #f0dfbc;
}

@media screen and (max-width: 480px) {
    .-sneak .descPage .innerCt__desc:before {
        width: 5px;
    }
}

.-sneak .sneakPeekList {
    padding: 3.5rem 0;
}

.-sneak .sneakPeekList__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

.-sneak .sneakPeekList__item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .-sneak .sneakPeekList__item {
        margin-bottom: 3rem;
    }
}

.-sneak .sneakPeekList__item .boxLeft {
    width: 247px;
    height: 247px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #f0dfbc;
}

@media screen and (max-width: 768px) {
    .-sneak .sneakPeekList__item .boxLeft {
        margin: 0 auto;
        width: 100%;
    }
}

.-sneak .sneakPeekList__item .boxLeft > img {
    display: none;
}

.-sneak .sneakPeekList__item .boxRight {
    width: calc(100% - 247px);
    padding-left: 5rem;
}

@media screen and (max-width: 992px) {
    .-sneak .sneakPeekList__item .boxRight {
        padding-left: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .-sneak .sneakPeekList__item .boxRight {
        width: 100%;
        padding-left: 0;
        margin-top: 3rem;
    }
}

.-sneak .sneakPeekList__item .boxRight__heading {
    font-size: bold;
    font-size: 2rem;
}

.-sneak .sneakPeekList__item .boxRight__content {
    font-size: 16;
    font-weight: 300;
    color: #2e1d14;
}

.-partner .bgContent {
    background-image: url("../img/charges/bg.png");
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 9rem 0;
}

@media screen and (max-width: 992px) {
    .-partner .bgContent {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 768px) {
    .-partner .bgContent {
        padding: 3rem 0;
    }
}

.-partner .innerCt__desc {
    position: relative;
    padding-left: 3rem;
}

.-partner .innerCt__desc:before {
    content: "";
    width: 9px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f0dfbc;
}

@media screen and (max-width: 480px) {
    .-partner .innerCt__desc:before {
        width: 5px;
    }
}

.-partner .innerCt__heading {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #2e1d14;
    font-family: "Century Gothic", sans-serif;
}

.-partner .innerCt__heading .text-bold {
    font-weight: 700;
}

.-partner .innerCt__heading .text-italic {
    font-style: italic;
    font-weight: normal;
}

.-partner .innerCt__content {
    position: relative;
    padding-left: 3rem;
    margin-top: 5rem;
}

.-partner .innerCt__content .head {
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .-partner .innerCt__content .head {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .-partner .innerCt__content {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .-partner .innerCt__content {
        margin-top: 3rem;
    }
}

.-charges .bgContent {
    background-image: url("../img/charges/bg.png");
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 9rem 0;
}

@media screen and (max-width: 992px) {
    .-charges .bgContent {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 768px) {
    .-charges .bgContent {
        padding: 3rem 0;
    }
}

.-charges .innerCt {
    font-size: 1.6rem;
    font-weight: 300;
}

.-charges .innerCt a {
    color: #2e1d14;
    font-weight: bold;
}

.-charges .layoutsBox {
    padding: 5rem 0 7rem 0;
}

@media screen and (max-width: 992px) {
    .-charges .layoutsBox {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 768px) {
    .-charges .layoutsBox {
        padding: 3rem 0;
    }
}

.-charges .layoutsBox .title {
    font-size: 2rem;
    font-weight: bold;
    color: #2e1d14;
}

@media screen and (max-width: 992px) {
    .-charges .layoutsBox .title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .-charges .layoutsBox .title {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .-charges .layoutsBox .title {
        font-size: 1.4rem;
    }
}

.-charges .layoutsBox .layoutsBoxCt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.-charges .layoutsBox .layoutsBoxCt__item {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    text-align: center;
    margin-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    align-self: flex-end;
}

.-charges .layoutsBox .layoutsBoxCt__item:last-child {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}
@media screen and (min-width: 993px) {
    .-charges .layoutsBox .layoutsBoxCt__item:last-child img{
        width: 65%;
    }
}

@media screen and (max-width: 992px) {
    .-charges .layoutsBox .layoutsBoxCt__item {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .-charges .layoutsBox .layoutsBoxCt__item {
        margin-bottom: 2rem;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.-charges .layoutsBox .layoutsBoxCt__item .desc {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2e1d14;
    margin-top: 4rem;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    .-charges .layoutsBox .layoutsBoxCt__item .desc {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .-charges .layoutsBox .layoutsBoxCt__item .desc {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .-charges .layoutsBox .layoutsBoxCt__item .desc {
        font-size: 1.4rem;
    }
}

.-contact .innerCt__heading {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #2e1d14;
    font-family: "Century Gothic", sans-serif;
    text-align: center;
}

.-contact .innerCt__heading .text-bold {
    font-weight: 700;
}

.-contact .innerCt__heading .text-italic {
    font-style: italic;
    font-weight: normal;
}

.-contact .formContact {
    border-top: none;
}

.-showcase.pageElement {
    padding-top: 9rem;
}

@media screen and (max-width: 992px) {
    .-showcase.pageElement {
        padding-top: 4rem;
    }
}

@media screen and (max-width: 480px) {
    .-showcase.pageElement {
        padding-top: 3rem;
    }
}

.-showcase .eventList__item {
    margin-bottom: 6rem;
    position: relative;
}

@media screen and (max-width: 992px) {
    .-showcase .eventList__item {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 480px) {
    .-showcase .eventList__item {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

.-showcase .eventCt {
    display: block;
}

.-showcase .eventCt__head {
    font-size: 2.1rem;
    font-weight: bold;
    color: #2e1d14;
    margin-bottom: 4rem;
}

@media screen and (max-width: 992px) {
    .-showcase .eventCt__head {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .-showcase .eventCt__head {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }
}

.-showcase .eventCt__img {
    width: 100%;
}

.-showcase .eventCt__desc {
    font-size: 1.6rem;
    font-weight: 300;
    color: #2e1d14;
    margin-bottom: 3.5rem;
}

@media screen and (max-width: 992px) {
    .-showcase .eventCt__desc {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .-showcase .eventCt__desc {
        margin-bottom: 2rem;
        font-size: 1.4rem;
    }
}

.-showcase .eventCt__create {
    color: #b1b1b1;
    font-size: 1.6rem;
    font-weight: 300;
}

@media screen and (max-width: 480px) {
    .-showcase .eventCt__create {
        font-size: 1.4rem;
    }
}

.-showcase .eventCt__ribbon {
    width: 70px;
    height: 70px;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 1.2rem;
    right: 3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.-showcase .eventCt__ribbon .item_01,
.-showcase .eventCt__ribbon .item_02 {
    font-size: 2.1rem;
    font-weight: 400;
    color: #2e1d14;
    text-align: center;
    display: block;
    line-height: 2rem;
    width: 100%;
}

.-term .termContainer {
    padding: 12rem 0;
}

@media screen and (max-width: 992px) {
    .-term .termContainer {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 768px) {
    .-term .termContainer {
        padding: 3rem 0;
    }
}

.-term .termContainer .contentPost ul {
    list-style: disc;
}

.-term .termContainer .contentPost ol {
    list-style: none;
}

.-term .termContainer .contentPost p {
    font-size: 1.6rem;
}

.-term .termContainer .contentPost h2, .-term .termContainer .contentPost h3 {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: bold;
}

@media screen and (max-width: 992px) {
    .-term .termContainer .contentPost h2, .-term .termContainer .contentPost h3 {
        margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .-term .termContainer .contentPost h2, .-term .termContainer .contentPost h3 {
        margin-bottom: 2rem;
    }
}

.-term .termContainer .contentPost .mb35 {
    margin-bottom: 3rem;
}

@media screen and (max-width: 992px) {
    .-term .termContainer .contentPost .mb35 {
        margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .-term .termContainer .contentPost .mb35 {
        margin-bottom: 2rem;
    }
}

.-term .termContainer .contentPost ul {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}

.-term .partnerList {
    padding: 7rem 0;
}

@media screen and (max-width: 992px) {
    .-term .partnerList {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 768px) {
    .-term .partnerList {
        padding: 3rem 0;
    }
}

.-term .formContact {
    border-top: 0;
}

.-term .formContact .innerCt__heading {
    display: none;
}

.bannerCt__img {
    width: 100%;
}
