@media only screen and (min-width:1600px) {
    .container {
        max-width: 1540px !important;
    }
}

@media only screen and (min-width:1800px) {
    .container {
        max-width: 1680px !important;
    }
}

:root {
    --black: #1E1E1E;
    --gray: #EEEEEE;
    --white: #fff;
    --red: #CF0D2A;
    --timing-function: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-timing-function: 0.5s ease-in-out;
}

:target {
    scroll-margin-top: 100px;
}


body {
    color: var(--black);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    font-style: normal;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background: var(--white);
}

button {
    cursor: pointer;
    padding: 0;
    background: none;
    outline: none;
    border: none;
}

/* Fonts CSS Start */

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.title {
    font-size: 50px;
    line-height: 65px;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
}

.heading {
    font-family: "Teko", sans-serif;
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
}

.sub-title {
    font-size: 16px;
    line-height: 20px;
    font-family: "League Spartan", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--black);
    text-transform: uppercase;
}

.teko-sub-title {
    font-size: 18px;
    line-height: 24px;
    font-family: "Teko", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--black);
    text-transform: uppercase;
}

.mini-heading {
    font-size: 20px;
    line-height: 25px;
    font-family: "Teko", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--black);
    text-transform: uppercase;
}

/* Fonts CSS End */

/* Shared CSS Start */

.theme-button {
    background: var(--black);
    font-size: 14px;
    line-height: 18px;
    font-family: "League Spartan";
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--white);
    padding: 7.5px 20px;
    border-radius: 0px;
    transition: all var(--timing-function);
    text-transform: uppercase;
    border: 1px solid var(--black);
}

.transparent-button {
    background-color: transparent;
    font-size: 14px;
    line-height: 18px;
    font-family: "League Spartan";
    font-weight: 500;
    font-optical-sizing: auto;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 7.5px 20px;
    border-radius: 0px;
    transition: all var(--timing-function);
    text-transform: uppercase;
}

.spacing-top {
    padding-top: 100px
}

.spacing-bottom {
    padding-bottom: 100px;
}

.margin-spacing-top {
    margin-top: 100px;
}

.margin-spacing-bottom {
    margin-bottom: 100px;
}

/* Shared CSS End */

header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
    background: var(--white);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.logo-container {
    height: 33px;
}

.logo-container img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

header ul {
    margin: 0px;
}

.desktop-links {
    display: none;
}

.hamburger-and-language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
}

.hamburger-trigger span {

    height: 2px;
    display: block;
    background-color: var(--black);
    transition: all var(--timing-function);
    transform: translate3d(0px, 0px, 0.0001px);
}

.hamburger-box {
    display: flex;
    justify-content: flex-end;
}

.first-hamburger {
    width: 30px;

}

.second-hamburger {
    width: 21px;

}

.active-hamburger .first-hamburger {
    transform: rotate(44deg) translate3d(0px, 10px, 0.0001px);
}

.active-hamburger .second-hamburger {
    width: 30px;
    transform: rotate(-45deg) translate3d(-5px, -7px, 0.0001px);
}

.logo-and-hamburger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu CSS Start */

.full-screen-menu {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 99;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow-y: auto;
    transition: all var(--timing-function);
    opacity: 0;
    visibility: hidden;
    transform: translate(-100%, 0, 0.0001px);
}

.full-screen-menu .container, .full-screen-menu .row, .full-screen-menu .col-12, .full-screen-menu .full-screen-menu-items {
    height: 100%;
}

.active-full-screen-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0.0001px);
}

.full-screen-menu-items {
    position: relative;
}

.full-screen-social-links-wrapper {
    position: absolute;
    bottom: 0px;
}

.full-screen-menu ul {
    padding: 0;
    margin: 0;
}

.full-screen-menu ul li {
    font-size: 25px;
    line-height: 35px;
}

.full-screen-menu ul li a {
    color: var(--black);
}

.full-screen-links-wrapper-title span {

    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}

.location-link a {
    color: var(--black);
}

.location-link a span {
    display: block;
    font-weight: 500;
}

.full-screen-social-links-wrapper ul li {
    font-size: 14px !important;
    line-height: 18px !important;
}

.full-screen-menu-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.full-screen-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.full-screen-menu-contact-links {
    margin-top: 10px !important;
}


.full-screen-menu-list a {
    color: var(--black);
}

/* Menu CSS End */

/* Home CSS Start */

.hero {
    position: relative;
    height: 650px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.15);
}

.smoke-background {
    position: absolute;
    z-index: 4;
    bottom: -30px;
    width: 100%;
    height: 200px;
}

.smoke-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero-content-holder {

    padding-top: 30px;
    text-align: center;
}

.hero-content-holder h1 {
    color: var(--white);

}


.hero-video {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-content-holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.store-content-holder .title {
    text-align: center;
}

.store-can-and-items {
    display: flex;
    gap: 30px;
}

.store-can {
    width: calc(50% - 15px);
}

.store-can img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.drink-items-holder {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.drink-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.drink-item span {
    display: block;
}

.drink-item-image {
    height: 30px;
}

.drink-item-image img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.text-and-button {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-content-holder .text-and-button {
    align-items: center;
}

.energy-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--gray);
    position: relative;
}

.title-holder-and-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.title-holder-and-logo img {
    width: auto;
    height: auto;
    max-width: 30%;
    max-height: 30%;
    object-fit: contain;
}

.title-holder-and-logo span {
    display: block;
}

.energy-item {
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}



.energy-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.gradient-item {
    position: absolute;
    filter: blur(113px);
    -webkit-filter: blur(113px);
    width: 100px;
    height: 100px;
}

.top-left-blue-gradient {
    top: 40px;
    left: 10%;
    background: #005090;
}

.top-right-yellow-gradient {
    top: 40px;
    right: 10%;
    background: #BB9332;
}

.bottom-right-red-gradient {
    bottom: 40px;
    left: 10%;
    background: #CF0D2A;
}

.bottom-right-black-gradient {
    bottom: 40px;
    right: 10%;
    background: #000000;
}

.energy-item-image {
    width: 30px;
    height: 30px;
}

.energy-item-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
}

.gallery-title {
    text-align: center;
}

.gallery-holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.single-gallery-image {
    width: 100%;
    height: 500px;
}

.single-gallery-image img {
    max-height: 100%;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.single-gallery-image-holder {
    position: relative;
}

.single-gallery-image-holder::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--timing-function);
    pointer-events: none;
}

.single-gallery-image-holder p {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--white);
    z-index: 2;
    transform: translate3d(0px, 20px, 0.000px);
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--timing-function), transform var(--timing-function);
}


.single-gallery-item:hover .single-gallery-image-holder::before {
    opacity: 1;
}

.single-gallery-item:hover .single-gallery-image-holder p {
    opacity: 1;
    transform: translate3d(0px, 0px, 0.000px);
    pointer-events: auto;
}

.contact-content-holder h4 {
    text-align: center;
}

.contact-content-holder p {
    margin-bottom: 20px;
    text-align: center;
}

.contact-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Home CSS End */

/* Footer CSS Start */

footer {
    background: var(--black);
    padding-top: 50px;
}

.footer-links-holder {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-navigation-title {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
    color: var(--white);
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
}

.footer-navigations ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-navigations ul li a {
    font-size: 12px;
    line-height: 14px;
    color: var(--white);
}

.address-list li a span {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-bottom-content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0px;

}

.footer-bottom-content a {
    font-size: 12px;
    line-height: 14px;
    color: var(--white);
    text-decoration: none;
}

.footer-bottom-content a span {
    font-weight: 600;
}

.imprint-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.language-switcher-holder .trp-language-switcher {
    width: 50px !important;
}

.hamburger-and-language-switcher .language-switcher-holder .trp-language-switcher {
    height: 31px !important;
}

.language-switcher-holder .trp-ls-shortcode-language {
    width: 50px !important;
}

.language-switcher-holder .trp-language-switcher>div>a:hover {
    background: transparent !important;
    border: none !important;
}

.language-switcher-holder .trp-ls-shortcode-current-language {
    width: 50px !important;
    border: none !important;
}

.language-switcher-holder .trp-language-switcher>div {
    padding: 0px !important;
    background-color: transparent !important;
}

.language-switcher-holder .trp-language-switcher>div>a {
    padding: 7px 0px !important;
}

.language-switcher-holder .trp-ls-shortcode-current-language {
    background-position: right 5px top 10px !important;
    background-image: url('../images/arrow_down.svg') !important;
}

.hamburger-and-language-switcher .language-switcher-holder .trp-ls-shortcode-current-language {
    background-position: right 5px top 13px !important;
    background-image: url('../images/arrow_down_white.svg') !important;
}

.language-switcher-holder .trp-language-switcher .trp-ls-shortcode-language {
    border: none !important;
    background-color: transparent !important;
    background-size: 120% !important;
    background-position: -20% 0;
}

.hamburger-and-language-switcher .language-switcher-holder .trp-language-switcher>div>a {
    background-color: #fff !important;
    padding: 0px 7px !important;
}

.hamburger-and-language-switcher .language-switcher-holder .trp-language-switcher .trp-ls-shortcode-disabled-language {
    padding: 7px 7px !important;
}

/* Footer CSS End */

/* Locations Modal CSS Start */

.locations-modal {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 50;
    transform: translate3d(0px, 100%, 0.000px);
    transition: transform var(--timing-function), opacity var(--timing-function);
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    padding-top: 100px;
    padding-bottom: 100px;
}

.active-location-modal {
    transform: translate3d(0px, 0px, 0.000px);
    opacity: 1;
    pointer-events: auto;
}

.locations-modal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 25px 15px;
    background: var(--white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.locations-modal-header {
    width: 85%;
}

.location-modal-close {
    position: absolute;
    top: 20px;
    right: 15px;
}

.location-modal-close svg {
    max-width: 20px;
    width: auto;
    height: auto;
    max-height: 20px;
}

.row-line br {
    display: none;
}

.row-line label, .row-line-textarea label {
    margin-bottom: 5px;
}

.row-line {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.row-line-textarea {
    margin-bottom: 20px;
}

.row-line-textarea br {
    display: none;
}

.row-line-textarea textarea {
    background: none;
    outline: none;
    border: none;
    color: var(--black);
    padding: 7.5px 15px;
    border: 1px solid var(--gray);
    width: 100%;
    resize: none;
    overflow: auto;
}

.row-line input {
    background: none;
    outline: none;
    width: 100%;
    border: none;
    padding: 7.5px 15px;
    border: 1px solid var(--gray);
    color: var(--black);
}

.row-line input::placeholder {
    color: var(--black);
}

.row-line-textarea textarea::placeholder {
    color: var(--black);
}

.form-holder .wpcf7-not-valid-tip {
    color: var(--black) !important;
}



.form-holder .wpcf7-response-output {

    border: none !important;
    margin: 20px 0px 0px 0px !important;
    padding: 0px !important;
    color: var(--black) !important;
}

/* Locations Modal CSS End */

/* Animations CSS Start */

.item-animation {
    transition: all var(--animation-timing-function);
    transform: translate3d(0px, 20px, 0.00001px);
    opacity: 0;
}

.animate-second {
    transition-delay: .3s;
}

.animate-third {
    transition-delay: .6s;
}

.animate-fourth {
    transition-delay: .9s;
}

.animate-fifth {
    transition-delay: 1.2s;
}

.in-view .item-animation {
    opacity: 1;
    transform: translate3d(0px, 0px, 0.00001px);
}

.energy-item0 {
    transition-delay: .4s;
}

.energy-item1 {
    transition-delay: .8s;
}

.energy-item2 {
    transition-delay: 1.2s;
}

.energy-item3 {
    transition-delay: 1.6s;
}

.line-link {
    display: inline-block;
    position: relative;
    width: fit-content;
}

.full-screen-link {
    width: fit-content;
    position: relative;
}

/* Animations CSS End */

/* 404 CSS Start */

.not-found-texts-and-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.not-found-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* 404 CSS End */

@media only screen and (min-width:992px) {
    .hero {
        height: 1080px;
    }

    .hero-content-holder h1 {
        letter-spacing: 0px;
        white-space: pre-wrap;
    }

    .hero::after {
        content: "";
        z-index: 5;
        position: absolute;
        bottom: 0px;
        height: 200px;
        left: 0px;
        width: 100%;
        background: linear-gradient(to top, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-content-holder {
        padding-top: 100px;
    }

    .smoke-background {
        height: auto;
        bottom: -150px;
    }

    /* 404 CSS Desktop Start*/

    .not-found-texts-and-link {
        gap: 40px;
    }

    /* 404 CSS Desktop End */

    .spacing-top {
        padding-top: 200px;
    }

    .spacing-bottom {
        padding-bottom: 200px;
    }

    .margin-spacing-top {
        margin-top: 200px;
    }

    .margin-spacing-bottom {
        margin-bottom: 200px;
    }

    .store-content-holder {
        width: 60%;
        margin-left: 20%;
    }

    /* Fonts CSS Start */

    .title {
        font-size: 200px;
        line-height: 100%;
        letter-spacing: 60px;
    }

    .heading {
        font-size: 80px;
        line-height: 100%;
    }

    .teko-sub-title {
        font-size: 24px;
        line-height: 30px;
    }

    .sub-title {
        font-size: 20px;
        letter-spacing: 6px;
        line-height: 25px;
    }

    .mini-heading {
        font-size: 35px;
        line-height: 40px;
    }

    body {
        font-size: 18px;
        line-height: 25px;
    }

    /* Fonts CSS End */

    .store-can-and-items {
        width: 80%;
        margin-left: 10%;
        gap: 150px;
    }

    .store-can {
        width: calc(35% - 75px);
    }

    .drink-items-holder {
        width: calc(65% - 75px);
        flex-direction: row;
        gap: 60px;
        flex-wrap: wrap;
        align-items: center;
    }

    .drink-item {
        width: calc(50% - 30px);
    }

    .store-can-and-items {
        align-items: center;
    }

    .drink-item-image {
        height: 50px;
    }

    .store-content-holder .text-and-button {
        max-width: 80%;
        margin-left: 10%;
        justify-content: center;
        width: fit-content;
        align-items: center;
    }

    .locations-modal-header {
        width: 70%;
        margin-left: 15%;
        text-align: center;
    }

    .locations-modal-header p {
        margin-top: 10px;
        width: 80%;
        margin-left: 10%;
    }

    .store-content-holder {
        gap: 80px;
    }

    .energy-content-holder {
        position: relative;
    }

    .energy-section {
        padding-top: 250px;
        padding-bottom: 250px;
    }

    .energy-item {
        padding: 40px 45px;
        position: absolute;
        width: 35%;
    }

    .energy-item-image {
        width: 50px;
        height: 50px;
    }

    .energy-item0 {
        top: -100px;
        left: 12%;
        transform: translate3d(-50px, -50px, 0.0001px);
    }



    .energy-item1 {
        top: -100px;
        right: 12%;
        transform: translate3d(50px, -50px, 0.0001px);
    }

    .energy-item2 {
        bottom: -118px;
        left: 12%;
        transform: translate3d(-50px, 50px, 0.0001px);
    }

    .energy-item3 {
        bottom: -118px;
        right: 12%;
        transform: translate3d(50px, 50px, 0.0001px);
    }

    .in-view .energy-item0, .in-view .energy-item3 {
        transform: translate3d(0px, 0px, 0.0001px) rotate(-20deg);
    }

    .in-view .energy-item1, .in-view .energy-item2 {
        transform: translate3d(0px, 0px, 0.0001px) rotate(20deg);
    }

    .gradient-item {
        width: 200px;
        height: 150px;
    }

    .top-left-blue-gradient {
        top: -100px;
        left: 17.5%;
    }

    .top-right-yellow-gradient {
        top: -80px;
        right: 17.5%;
    }

    .bottom-right-black-gradient {
        bottom: -100px;
        right: 17.5%;
    }

    .bottom-right-red-gradient {
        bottom: -100px;
        left: 17.5%;
    }

    .title-holder-and-logo img {
        position: relative;
        z-index: 10;
    }

    .logo-container {
        height: 66px;
    }

    .energy-content-holder {
        width: 90%;
        margin-left: 5%;
        padding: 50px 0px 0px 0px;
    }

    .gallery-holder {
        margin-top: 100px;
        width: 90%;
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 5%;
        gap: 25px;
    }

    .single-gallery-item {
        width: calc(50% - 12.5px);
    }

    .single-gallery-image {
        height: 806px;
    }

    .gallery-item-right {
        margin-top: 100px;
    }

    .contact-content-holder p {
        margin-bottom: 50px;
        width: 80%;
        margin-left: 10%;
    }

    .theme-button, .transparent-button {
        font-size: 18px;
        letter-spacing: 4px;
        line-height: 25px;
        padding: 20px 60px;
    }

    .transparent-button {
        padding: 20px 60px;
    }

    .footer-top-content {
        width: 90%;
        margin-left: 5%;
    }

    .footer-links-holder {
        flex-direction: row;
        justify-content: space-between;
        gap: 150px;
    }

    .footer-navigation-title {
        font-size: 20px;
        line-height: 25px;
    }

    .footer-bottom-content {
        width: 90%;
        margin-left: 5%;
        margin-top: 100px;
        flex-direction: row;
        justify-content: space-between;
    }

    .imprint-links {
        flex-direction: row;
    }

    .full-screen-menu {
        padding-top: 150px;
        padding-bottom: 50px;
        transform: translate3d(100%, 0, 0.0001px);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 0px 2px;
    }

    body {
        overflow-x: hidden;
    }

    .active-full-screen-menu {
        transform: translate3d(70%, 0, 0.0001px);
    }

    .full-screen-social-links-wrapper ul li {
        font-size: 16px;
        line-height: 20px;
    }

    .energy-item-content span {
        display: block;
        margin-bottom: 5px;
    }

    .logo-and-hamburger {
        width: 95%;
        margin-left: 2.5%;
    }

    .locations-modal-content {
        padding: 35px 30px 50px 35px;
        width: 90%;
        margin-left: 5%;

    }

    .location-modal-close {
        top: 30px;
        right: 30px;
    }

    .location-modal-close svg {
        max-width: 26px;
        max-height: 26px;
    }

    .locations-modal {
        padding-top: 150px;

    }

    .single-gallery-image-holder p {
        bottom: 30px;
        left: 30px;
        width: 80%;
    }

    .hamburger-and-language-switcher .language-switcher-holder .trp-language-switcher .trp-ls-shortcode-disabled-language {
        padding: 3px 7px !important;
    }

    .full-screen-menu .container, .full-screen-menu .row, .full-screen-menu .col-12, .full-screen-menu .full-screen-menu-items {
        margin-left: 0px !important;
    }

    .full-screen-menu-list {
        gap: 20px;
    }

    .full-screen-menu-contact-links {
        gap: 5px !important;
    }

    .line {
        position: absolute;
        left: 0px;
        width: 100%;
        bottom: 0px;
        height: 1px;
        background-color: var(--black);
        transition: max-width var(--timing-function);
        max-width: 0px;
        will-change: max-width;
    }

    footer .line {
        background-color: var(--white);
    }

    .row-line {
        flex-direction: row;
        gap: 40px;
        margin-bottom: 40px;
    }

    .row-line-textarea {
        margin-bottom: 30px;
    }

    .label-and-input {
        width: calc(50% - 20px);
    }

    .form-holder {
        width: 70%;
        margin-left: 15%;
    }

    .row-line input {
        padding: 10px 15px;
    }

    .row-line-textarea textarea {
        padding: 10px 15px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {

    .locations-modal-header, .form-holder {
        width: 80%;
        margin-left: 10%;
    }

    .theme-button, .transparent-button {
        padding: 15px 45px;
    }

    .footer-top-content, .footer-bottom-content {
        width: 95%;
        margin-left: 2.5%;
    }

    .mini-heading {
        font-size: 30px;
        line-height: 35px;
    }

    .title {
        font-size: 120px;
        letter-spacing: 30px;
    }

    .heading {
        font-size: 60px;
        line-height: 80px;
    }

    .hero {
        height: 780px;
    }

    .hero::after {
        bottom: -50px;
        height: 350px;
        background: linear-gradient(to top, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
    }

    .store-content-holder {
        width: 80%;
        margin-left: 10%;
    }

    .store-can-and-items {
        gap: 60px;
    }

    .store-can {
        width: calc(40% - 30px);
    }

    .drink-items-holder {
        width: calc(60% - 30px);
    }

    .energy-item {
        width: 40%;
        padding: 20px 25px;
    }

    .energy-item0 {
        top: -130px;
        left: 0%;
    }

    .energy-item1 {
        top: -10px;
        right: 0%;
    }

    .energy-item2 {
        bottom: -145px;
        left: 0%;
    }

    .energy-item3 {
        bottom: -145px;
        right: 0%;
    }

    .single-gallery-image {
        height: 400px;
    }

    .gallery-item-right {
        margin-top: 50px;
    }


    .footer-links-holder {
        gap: 30px;
    }



    .locations-modal-header p {
        width: 100%;
        margin-left: 0%;
    }

}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer-links-holder {
        gap: 80px;
    }

    .locations-modal-header, .form-holder {
        width: 75%;
        margin-left: 12.5%;
    }

    .locations-modal-header p {
        width: 90%;
        margin-left: 5%;
    }

    .locations-holder {
        grid-template: auto / repeat(3, 1fr);
    }

    .footer-top-content, .footer-bottom-content {
        width: 95%;
        margin-left: 2.5%;
    }

    .title-holder-and-logo img {
        max-width: 35%;
        max-height: 35%;
    }

    .logo-and-hamburger {
        width: 95%;
        margin-left: 2.5%;
    }

    .energy-content-holder {
        width: 100%;
        margin-left: 0%;
    }

    .title {
        font-size: 120px;
        letter-spacing: 30px;
    }

    .heading {
        font-size: 65px;
        line-height: 120%;
    }

    .hero {
        height: 990px;
    }

    .hero::after {
        bottom: -50px;
        height: 350px;
        background: linear-gradient(to top, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
    }

    .store-content-holder {
        width: 70%;
        margin-left: 15%;
    }

    .store-can-and-items {
        width: 90%;
        margin-left: 5%;
        gap: 75px;
    }

    .store-content-holder .text-and-button {
        max-width: 90%;
        margin-left: 5%;
    }

    .store-can {
        width: calc(35% - 37.5px);
    }

    .drink-items-holder {
        width: calc(65% - 37.5px);
    }

    .energy-item {
        padding: 25px 30px;
        width: 40%;
    }

    .energy-item0 {
        left: 2.5%;
    }

    .energy-item1 {
        right: 2.5%;
    }

    .energy-item2 {
        left: 2.5%;
    }

    .energy-item3 {
        right: 2.5%;
    }



    .single-gallery-image {
        height: 575px;
    }


    .gallery-item-right {
        margin-top: 50px;
    }

    .theme-button, .transparent-button {
        padding: 15px 45px;
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .hero {
        height: 1100px;
    }

    .title {
        font-size: 160px;
        letter-spacing: 30px;
    }

    .heading {
        font-size: 70px;
        line-height: 130%;
    }

    .mini-heading {
        font-size: 30px;
        line-height: 35px;
    }

    .store-content-holder {
        width: 70%;
        margin-left: 15%;
    }

    .store-can-and-items {
        width: 90%;
        margin-left: 5%;
        gap: 100px;
    }

    .store-content-holder .text-and-button {
        max-width: 90%;
        margin-left: 5%;
    }

    .store-can {
        width: calc(35% - 50px);
    }

    .drink-items-holder {
        width: calc(65% - 50px);
        gap: 30px;
    }

    .energy-item {
        width: 37.5%;
        padding: 30px 25px;
    }

    .title-holder-and-logo img {
        max-width: 35%;
        max-height: 35%;
    }

    .energy-item0 {
        left: 7.5%;
    }

    .energy-item1 {
        right: 7.5%;
    }

    .energy-item2 {
        lefT: 7.5%;
    }

    .energy-item3 {
        right: 7.5%;
    }

    .single-gallery-image {
        height: 640px;
    }

    .gallery-item-right {
        margin-top: 75px;
    }

    .footer-links-holder {
        gap: 100px;
    }

    .theme-button, .transparent-button {
        padding: 15px 45px;
    }
}

@media only screen and (min-width:1600px) and (max-width:1799px) {
    .title {
        font-size: 180px;
        letter-spacing: 45px;
    }

    .heading {
        font-size: 75px;
        line-height: 130%;
    }

    .teko-sub-title {
        font-size: 22px;
    }

    .store-can-and-items {
        gap: 100px;
    }

    .store-can {
        width: calc(35% - 50px);
    }

    .drink-items-holder {
        width: calc(65% - 75px);
        gap: 30px;
    }

    .store-content-holder {
        gap: 60px;
    }

    .energy-item0 {
        top: -135px;
        transform: rotate(-15deg);
    }

    .energy-item1 {
        top: -135px;
        transform: rotate(15deg);
    }

    .energy-item2 {
        transform: rotate(15deg);
    }

    .energy-item3 {
        transform: rotate(-15deg);
    }

    .single-gallery-image {
        height: 740px;
    }
}

@media only screen and (hover:hover) and (min-width:992px) {
    .theme-button:hover {
        background-color: transparent;
        color: var(--black);
    }

    .transparent-button:hover {
        background-color: var(--black);
        color: var(--white);
    }

    .full-screen-link a:hover .line {
        max-width: 100%;
    }

    .line-link:hover .line {
        max-width: 100%;
    }

    .location-modal-close {
        transition: opacity var(--timing-function);
    }

    .location-modal-close:hover {
        opacity: 0.7;
    }
}