:root {
    --white: #FFFFFF;
    --black: #000000;
    --black-primary: #130809;
    --black-secondary: #201f1e;
    --gray-light: #999999;
    --red-primary: #b10715;
    --red-dark: #280708;
    --pink: #ee9494;
    --blue-facebook: #0866ff;
}

.text-gray-light {
    color: var(--gray-light);
}

.font-europhonic {
    font-family: 'Europhonic';
    text-transform: uppercase;
}

html,
body {
    background: var(--red-primary);
    color: var(--white);
    font-family: 'Interstate Light Condensed';
    font-style: normal;
    font-weight: normal;

}


/* menu button begin */
.toggleMenu {
    display: inline-block;
    width: 36px;
    min-width: 36px;
    height: 36px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .toggleMenu {
        display: none;
    }
}

.toggleMenu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.toggleMenu span:nth-child(1) {
    top: 6px;
}

.toggleMenu span:nth-child(2),
.toggleMenu span:nth-child(3) {
    top: 50%;
    margin-top: -1px;
}

.toggleMenu span:nth-child(4) {
    bottom: 6px;
}

.openMenu .toggleMenu {
    /*border-color: #fff;*/
}

.openMenu .toggleMenu span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.openMenu .toggleMenu span:nth-child(2) {
    transform: rotate(45deg);
}

.openMenu .toggleMenu span:nth-child(3) {
    transform: rotate(-45deg);
}

.openMenu .toggleMenu span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* menu button end */

/* size begin */
#windowSize * {
    font-family: "Arial", sans-serif !important;
}

#windowSize {
    position: fixed;
    left: 0px;
    bottom: 120px;
    z-index: 100;
    background: rgba(0, 0, 0, 1);
    padding: 3px;
    text-align: right;
    font-weight: normal;
}

@media (min-width: 768px) {
    #windowSize {
        bottom: 250px;
    }
}

#windowSize tr {
    border-top: 1px solid #aaa;
}

#windowSize tr:first-of-type {
    border-top: none;
}

#windowSize td {
    font-size: 11px;
    color: #eee;
    margin: 0;
    padding: 0;
    text-align: center;
}

#windowSize td span.hideMe {
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
    padding: 0;
    color: #777;
}

#windowSize:hover td span {
    height: auto;
    line-height: 1;
    padding: 2px 0;
}

#windowSize b {
    color: red;
    font-weight: bold;
}

#windowSize p span {
    display: inline-block;
    padding: 0 3px;
    font-weight: bold;
}

#windowSize .ipAddress {
    max-width: 60px;
    word-wrap: break-word;
}

/* size end */

.container {
    width: 100%;
    max-width: 1400px;
}

.icon-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    pointer-events: none;
}

.has-x {
    position: relative;
    overflow: hidden;
}

.has-x::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: url("../img/svg/bg-x-gray.svg") no-repeat center center;
    background-size: contain;
    z-index: 1;
    opacity: 0.25;
}

.has-x-xl::before {
    width: 100%;
    height: 100%;
}

.has-x>* {
    position: relative;
    z-index: 2;
}

.has-x-animation {
    position: relative;
    overflow: hidden;
}

.has-x-animation::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    background: url("../img/svg/bg-x-gray.svg") no-repeat center center;
    background-size: contain;
    z-index: 1;
    animation: scale-x 10s linear infinite;
}

.has-x-animation>* {
    position: relative;
    z-index: 2;
}

@keyframes scale-x {
    0% {
        transform: scaleX(0);
    }

    25% {
        transform: scaleX(1);
    }

    75% {
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(0);
    }
}

.change-bottle-animation {
    position: relative;
}

.change-bottle-animation .initial,
.change-bottle-animation .final {
    display: flex;
    justify-content: center;
    align-items: center;
}

.change-bottle-animation .initial {
    opacity: 0;
}

.change-bottle-animation .final {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 1;
}

.in-view .change-bottle-animation .initial {
    opacity: 1;
    animation: initial-animation 20s ease-in-out 1 forwards;
}

.in-view .change-bottle-animation .final {
    opacity: 0;
    animation: final-animation 20s ease-in-out 1 forwards;
}

@keyframes initial-animation {

    0%,
    25% {
        opacity: 1;
    }

    37.5%,
    87.5% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes final-animation {

    0%,
    25% {
        opacity: 0;
    }

    37.5%,
    87.5% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.btn {
    transition: all 0.3s ease;
}

.btn-white {
    background: var(--white);
    color: var(--red-primary);
    border: 2px solid var(--white);
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Europhonic';
    font-weight: bold;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 1400px) {
    .btn-white {
        font-size: 32px;
    }
}

.btn-white:hover {
    background: var(--red-primary);
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 18px;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Europhonic';
    font-weight: bold;
    letter-spacing: 0.05em;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red-primary);
    border: 2px solid var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
}