* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    color: #3A2213;
    line-height: 1.5em;
}

html {
    overflow-x: hidden;
    background-color: #FFF;

}

body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    image-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    pointer-events: none;
}

a {
    text-decoration: none;
    transition: 250ms ease;
}

::-moz-selection {
    background: #E3A83A;
}

::selection {
    background: #E3A83A;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    padding: 0 48px;
    display: flex;
    position: relative;
}

span, a {
    vertical-align: middle;
    line-height: normal;
}

@media all and (max-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media all and (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
}
.fancybox-container * {
    color: #FFF;
}