.accordion-group li:nth-child(4) .accordion-overlay {
    background-color: #00000024;
    opacity: 0.8;
}

.accordion-group li:nth-child(4).out .accordion-overlay {
    background-color: #00000024;
    opacity: 0;
}

.accordion-group li:nth-child(3) .accordion-overlay {
    background-color: #00000024;
    opacity: 0.8;
}

.accordion-group li:nth-child(3).out .accordion-overlay {
    background-color: #0000009a;
    opacity: 0;
}

.accordion-group li:nth-child(2) .accordion-overlay {
    background-color: #00000024;
    opacity: 0.8;
}

.accordion-group li:nth-child(2).out .accordion-overlay {
    background-color: #00000024;
    opacity: 0;
}

.accordion-group li:nth-child(1) .accordion-overlay {
    background-color: #00000000;
    opacity: 0.8;
}

.accordion-group li:nth-child(1).out .accordion-overlay {
    background-color: #00000024;
    opacity: 0;
}

.red {
    color: #ca9964;
}

.orange {
    color: #e06014;
}

.blue {
    color: #5aaed6;
}

.beige {
    color: #d6ccad;
}

.mg {
    margin: 7rem 0 4rem 0;
}

.big {
    color: #333;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 1rem;
}

.small {
    color: #333;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 1rem;
}

.site-outer {
    overflow: hidden;
    width: 100%;
}

.site-outer .navbar {
    background-color: #fff;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.site-outer .navbar.slide-right {
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
}

.site-outer .site-inner {
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.site-outer .site-inner.slide-right {
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
}

.container-menu {
    padding: 0 1.5rem;
}

.container-menu .menu {
    padding: 0 1.5rem;
    cursor: pointer;
    position: relative;
    width: 8rem;
}

.container-menu .menu div {
    width: 5rem;
    height: 0.4rem;
    background-color: #333;
    margin-bottom: 0.4rem;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    position: absolute;
}

.container-menu .menu div:nth-child(1) {
    left: 1.5rem;
    top: 2rem;
}

.container-menu .menu div:nth-child(2) {
    left: 1.5rem;
    top: 2.8rem;
}

.container-menu .menu div:nth-child(2):after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5rem;
    height: 0.4rem;
    background-color: #333;
    -webkit-transition: all 350ms ease;
    -moz-transition: all 350ms ease;
    transition: all 350ms ease;
}

.container-menu .menu div:nth-child(3) {
    right: 1.5rem;
    top: 3.6rem;
}

.container-menu .menu.active div:nth-child(1),
.container-menu .menu.active div:nth-child(3) {
    width: 0;
}

.container-menu .menu.active div:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.container-menu .menu.active div:nth-child(2):after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

.container-menu .logotype {
    cursor: pointer;
    display: flex;
    flex-items: center;
    flex-direction: row;
    margin-left: 10rem;
}

.container-menu .logotype div {
    margin: 0;
}

.container-menu .checkout {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-group {
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 14px;
}

.accordion-group li {
    cursor: pointer;
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 0;
    padding: 1.6em;
    list-style: none;
    width: 33.33333%;
    height: inherit;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.accordion-group li h3 {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    padding: 0;
    font-weight: 300;
    margin: 6.5rem 0 0;
}

.accordion-group li .accordion-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.accordion-group li section {
    display: flex;
    align-items: flex-end;
    width: 75%;
    height: 100%;
}

.accordion-group li section.big-section {
    width: 100%;
}

.accordion-group li section article {
    display: table-cell;
    vertical-align: middle;
    padding: 8rem 2rem;
    position: relative;
    right: -200%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.accordion-group li section article p {
    background-color: rgb(122 11 11 / 75%);
    padding: 8px 14px;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: -0.04rem;
    line-height: 32px;
    font-family: "Ubuntu", serif;
    border-radius: 4px;
    font-size: 24px;
}

.accordion-group li section article p:before,
.accordion-group li section article p:after {
    content: "";
    display: block;
    height: 1px;
}

.accordion-group li.out {
    width: 50%;
}

.accordion-group li.out section article {
    right: 0;
}

.navigation {
    background-color: #fff;
    overflow: auto;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    -webkit-transform: translate3d(-250px, 0, 0);
    -moz-transform: translate3d(-250px, 0, 0);
    transform: translate3d(-250px, 0, 0);
}

.navigation:before,
.navigation:after {
    content: "";
    display: block;
    zoom: 1;
}

.navigation:after {
    clear: both;
}

.navigation.slide-right {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.navigation-login {
    padding: 2rem;
    line-height: 2;
    border: none;
    width: 100%;
    border-radius: 0;
    font-size: 1.8rem;
    background-color: #ca9964;
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
}

.navigation-search {
    padding: 2rem 2rem 0;
}

.navigation-content {
    padding: 0 2rem;
}

.navigation-content h3 {
    color: #ca9964;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    padding: 0;
    font-weight: 300;
}

.navigation-content .navigation-menu {
    list-style: none;
    padding: 0;
}

.navigation-content .navigation-menu li {
    display: block;
    padding: 0.8rem 0;
    margin: 1rem 0;
}

.navigation-content .navigation-menu li a {
    color: #333;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.navigation-content .navigation-menu li a.active,
.navigation-content .navigation-menu li a:active,
.navigation-content .navigation-menu li a:hover,
.navigation-content .navigation-menu li a:focus {
    color: #ca9964;
    text-decoration: none;
}

.map-container {
    padding: 3.2rem 0.8rem;
    position: relative;
    display: inline-block;
}

.map-container img {
    width: 100%;
}

.map-container .point {
    cursor: pointer;
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;
    background-color: #4d0101;
    border-radius: 50%;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 #1b0000;
    animation: pulse 3s infinite;
}

.map-container .point:hover {
    animation: none;
    transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.map-container .venezuela {
    top: 54%;
    left: 24%;
}

.map-container .brasil {
    top: 64%;
    left: 28%;
}

.map-container .argentina {
    top: 77%;
    left: 27%;
}

.map-container .colombia {
    top: 55%;
    left: 21%;
}

.map-container .panama {
    top: 51%;
    left: 18%;
}

.map-container .mexico {
    top: 38%;
    left: 12%;
}

.map-container .usa {
    top: 26%;
    left: 17%;
}

.map-container .arabia {
    top: 40%;
    left: 53%;
}

.map-container .turquia {
    top: 31%;
    left: 57%;
}

.map-container .rusia {
    top: 16%;
    left: 67%;
}

.map-container .china {
    top: 40%;
    left: 72%;
}

.map-container .japon {
    top: 34%;
    left: 86%;
}

.map-container .australia {
    top: 72%;
    left: 86%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(113, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(113, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(113, 0, 0, 0.5);
    }
}

@media screen and (max-width: 768px) {
    .accordion-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .accordion-group li.out,
    .accordion-group li {
        width: 100%;
    }
    .accordion-group li section article {
        padding: 0;
    }
    .accordion-group li section article {
        right: 0;
    }
    .accordion-group li section article p {
        white-space: nowrap;
    }
}

.slider-end {
    align-items: end;
    text-align: end;
}

.color-slider {
    color: #b71f2c !important
}

.slider-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: #1d1c1c42;
    z-index: 1;
    left: 0;
}