@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --padding-left-right: 10px;
    --width-small-size: 0;
    --width-phone-size: 767;
    --width-tablet-size: 1024px;
    --width-laptop-size: 1140px;
    --width-computer-size: 1400px;

    --color-grey: #676767;
    --primary-color: #74c476;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.mainContainer {
    padding: 0px 10px;
}

.mainContainer.full {
    padding: 0px;
}

.subContainer {
    max-width: 100%;
    margin: 0 auto;
}


.subContainer.full {
    max-width: 100%;
    margin: 0 auto;
}


@media (min-width: 767px) {
    .subContainer {
        max-width: var(--width-phone-size);
    }
}

@media (min-width: 1024px) {
    .subContainer {
        max-width: var(--width-tablet-size);
    }
}

@media (min-width: 1140px) {
    .subContainer {
        max-width: var(--width-laptop-size);
    }
}




/* Header Style */
.mainHeader {
    position: absolute;
    height: 60px;
    width: 100%;
    background-color: white;

    .topHeader {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;

        .logo {

            img {
                width: 150px;
                height: auto;
            }


        }

        .afterLogo {
            display: none;
            flex-direction: row;
            align-items: center;
            gap: 10px;

            .site-navigation {
                display: flex;


                .primary-menu-container {
                    ul {
                        display: flex;
                        gap: 20px;
                        list-style-type: none;

                        li {
                            display: flex;
                            align-items: center;
                            gap: 5px;
                            position: relative;

                            a {
                                font-size: 0.72rem;
                                text-transform: uppercase;
                                font-weight: 600;
                                color: var(--color-grey);
                                transition: all 0.3s ease;
                                width: 100%;
                            }

                            button.sub-menu-toggle {
                                padding: 0;
                                margin: 0;
                                border: none;
                                display: flex;
                                background-color: transparent;
                                align-items: center;
                                justify-content: center;
                                cursor: pointer;

                                .icon-plus,
                                .icon-minus {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    transition: all 0.3s ease;

                                    svg {
                                        width: 15px;
                                        aspect-ratio: 1;
                                        stroke: var(--primary-color);
                                        fill: var(--primary-color);
                                        stroke-width: 1px;
                                    }
                                }

                                .icon-minus {
                                    display: none;
                                }
                            }

                            ul.sub-menu {
                                position: absolute;
                                display: flex;
                                top: 170%;
                                min-width: 100%;
                                flex-direction: column;
                                background-color: white;
                                z-index: 2;
                                padding: 10px;
                                border-radius: 10px;
                                box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                                width: max-content;
                                transition: all 0.3s ease;
                                visibility: hidden;
                                opacity: 0;

                                li {
                                    a {
                                        color: white;
                                        transition: all 0.3s ease;
                                    }
                                }
                            }

                            ul.sub-menu.active {
                                display: flex;
                            }
                        }

                        li:hover {
                            /* display: flex;
                        align-items: center;
                        gap: 5px;
                        position: relative; */

                            a {
                                font-size: 0.72rem;
                                text-transform: uppercase;
                                font-weight: 600;
                                color: var(--primary-color);
                            }

                            button.sub-menu-toggle {

                                .icon-plus,
                                .icon-minus {
                                    transform: rotate(180deg);
                                }

                                .icon-minus {
                                    display: none;
                                }
                            }

                            ul.sub-menu {
                                visibility: visible;
                                opacity: 1;
                                background-color: var(--primary-color);

                                li {
                                    a {
                                        color: white;
                                    }
                                }

                                li:hover {
                                    a {
                                        color: grey;
                                    }
                                }
                            }

                        }
                    }
                }
            }

            .productionGuideButton {

                .button {
                    position: relative;

                    .click {
                        background-color: var(--primary-color);
                        padding: 2px 15px;
                        border: 2px solid var(--primary-color);
                        border-radius: 20px;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        margin-left: 15px;
                        cursor: pointer;
                        transition: all 0.3s ease;

                        span {
                            color: white;
                            font-size: 0.65rem;
                            font-weight: 600;
                            text-transform: uppercase;
                            transition: all 0.3s ease;
                        }

                        .arrow {
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            svg {
                                width: 15px;
                                aspect-ratio: 1;
                                fill: white;
                                stroke: white;
                                stroke-width: 1px;
                                transition: all 0.3s ease;
                            }
                        }
                    }

                    .pupUp {
                        display: block;
                        position: absolute;
                        top: 150%;
                        right: 0;
                        z-index: 2;
                        width: max-content;
                        background-color: var(--primary-color);
                        padding: 15px;
                        padding-top: 25px;
                        padding-bottom: 25px;
                        border-radius: 20px;
                        visibility: hidden;
                        opacity: 0;
                        transition: all 0.3s ease;

                        ul {
                            display: flex;
                            flex-direction: column;
                            gap: 15px;
                            list-style: none;

                            li {
                                a {
                                    color: white;
                                    font-weight: 600;
                                    text-transform: uppercase;
                                    font-size: 0.80rem;
                                    transition: all 0.3s ease;
                                }
                            }

                            li:hover {
                                a {
                                    color: gray;
                                }
                            }
                        }
                    }

                    .click:hover {
                        background-color: transparent;

                        span {
                            color: var(--primary-color);
                        }

                        .arrow {
                            svg {
                                fill: var(--primary-color);
                                stroke: var(--primary-color);
                            }
                        }
                    }


                }

                .button:hover {
                    .pupUp {
                        visibility: visible;
                        opacity: 1;
                    }
                }
            }


            .languageIcon {
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;

                .icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;

                    svg {
                        width: 15px;
                        height: 15px;
                        fill: var(--color-grey);
                    }
                }

                .popUp {
                    display: none;
                }

                .popUp.active {
                    position: absolute;
                    top: 200%;
                    right: 0;
                    width: max-content;
                    z-index: 2;
                    background-color: var(--primary-color);
                    display: block;
                    padding: 10px;
                    border-radius: 20px;
                    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                }

            }
        }

        .burgerMenuIcon {
            display: block;
            z-index: 1000;

            .demo {
                display: flex;
                align-items: center;
                justify-content: center;
                width: auto;
                height: auto;
                background-color: transparent;

                .menu-icon {
                    transform: scale(0.8);
                }
            }

            :root {
                --bar-bg: var(--primary-color);
            }

            .menu-icon {
                position: relative;
                width: 50px;
                height: 50px;
                cursor: pointer;

                .menu-icon__cheeckbox {
                    display: block;
                    width: 100%;
                    height: 100%;
                    position: relative;
                    cursor: pointer;
                    z-index: 2;
                    -webkit-touch-callout: none;
                    position: absolute;
                    opacity: 0;
                }

                div {
                    margin: auto;
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    width: 22px;
                    height: 12px;
                }

                span {
                    position: absolute;
                    display: block;
                    width: 100%;
                    height: 2px;
                    background-color: var(--primary-color);
                    border-radius: 1px;
                    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);

                    &:first-of-type {
                        top: 0;
                    }

                    &:last-of-type {
                        bottom: 0;
                    }
                }

                &.active,
                .menu-icon__cheeckbox:checked+div {
                    span {
                        &:first-of-type {
                            transform: rotate(45deg);
                            top: 5px;
                        }

                        &:last-of-type {
                            transform: rotate(-45deg);
                            bottom: 5px;
                        }
                    }
                }

                &.active:hover span:first-of-type,
                &.active:hover span:last-of-type,
                &:hover .menu-icon__cheeckbox:checked+div span:first-of-type,
                &:hover .menu-icon__cheeckbox:checked+div span:last-of-type {
                    width: 22px;
                }

                &:hover {

                    @media (min-width: 1024px) {
                        span:first-of-type {
                            width: 26px;
                        }

                        span:last-of-type {
                            width: 12px;
                        }
                    }
                }
            }

        }
    }




}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}


.mainHeader.sticky {
    position: fixed;
    top: 0;
    background-color: white;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 1;

    .topHeader {
        .burgerMenuIcon {
            z-index: 1000;
        }
    }
}

.aside {
    position: absolute;
    background-color: white;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 0;
    padding: 10px;
    padding-top: 0px;
    visibility: hidden;
    /* opacity: 0; */
    transform: translateY(-100%);
    transition: 0.4s cubic-bezier(0.32, 0.49, 0.65, 0.78);

    .nagivation {
        padding-top: 50px;

        .primary-menu-container {
            ul {
                display: flex;
                flex-direction: column;
                list-style: none;
                gap: 0px;

                li {
                    display: flex;
                    gap: 5px;
                    align-items: self-start;
                    flex-direction: column;
                    position: relative;
                    border-bottom: 1px solid #e9e8e8;
                    padding: 10px 0px;

                    a {
                        color: var(--color-grey);
                        font-weight: 500;
                        text-transform: uppercase;
                        font-size: 0.95rem;
                        width: 100%;

                    }

                    ul.sub-menu {
                        display: none;
                    }

                    ul.sub-menu.active {
                        display: flex;
                        background-color: #dfffdf;
                        width: 100%;
                        padding-left: 15px;
                        padding-right: 15px;

                        li {
                            a {
                                font-size: 0.83rem;
                            }
                        }
                    }

                    button.sub-menu-toggle {
                        position: absolute;
                        display: flex;
                        background-color: transparent;
                        padding: 0;
                        border: none;
                        top: 10px;
                        right: 0;

                        .icon-plus {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transform: rotate(0);
                            transition: all 0.3s ease;

                            svg {
                                width: 20px;
                                aspect-ratio: 1;
                                fill: black;
                            }
                        }

                        .icon-plus.active {
                            transform: rotate(90deg);

                            svg {
                                width: 20px;
                                aspect-ratio: 1;
                                fill: black;
                            }
                        }

                        .icon-minus {
                            display: none;
                        }
                    }


                }

                li.active {
                    padding-bottom: 0;
                }

                li:last-child {
                    border-bottom: none;
                }
            }
        }
    }

    .asideProductionGuideButton {
        padding-top: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: space-between;

        .languageIcon {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;

            .icon {
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;

                svg {
                    width: 30px;
                    aspect-ratio: 1;
                    fill: var(--color-grey);
                }
            }

            .popUp {
                display: none;
            }

            .popUp.active {
                position: absolute;
                top: 200%;
                right: 0;
                width: max-content;
                z-index: 2;
                background-color: var(--primary-color);
                display: block;
                padding: 10px;
                border-radius: 20px;
                box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            }

        }

        .productionGuideButton {
            width: 100%;

            .button {
                position: relative;

                .click {
                    background-color: var(--primary-color);
                    padding: 7px 15px;
                    border: 2px solid var(--primary-color);
                    border-radius: 20px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-left: 0;
                    cursor: pointer;
                    justify-content: space-between;
                    width: 100%;

                    span {
                        color: white;
                        font-size: 0.85rem;
                        font-weight: 600;
                        text-transform: uppercase;
                        transition: all 0.3s ease;
                    }

                    .arrow {
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        svg {
                            width: 15px;
                            aspect-ratio: 1;
                            fill: white;
                            stroke: white;
                            stroke-width: 1px;
                            transition: all 0.3s ease;
                        }
                    }
                }

                .click:hover {
                    background-color: transparent;

                    span {
                        color: var(--primary-color);
                    }

                    .arrow {
                        svg {
                            fill: var(--primary-color);
                            stroke: var(--primary-color);
                        }
                    }
                }

                .pupUp {
                    position: absolute;
                    top: 110%;
                    width: 100%;
                    left: 0;
                    background-color: var(--primary-color);
                    padding: 20px;
                    border-radius: 20px;
                    display: none;

                    ul {
                        list-style: none;
                        display: flex;
                        gap: 20px;
                        flex-direction: column;

                        li {
                            a {
                                color: white;
                                font-size: 0.85rem;
                                text-transform: uppercase;
                                font-weight: 600;

                            }
                        }
                    }
                }

                .pupUp.active {
                    display: block;
                }
            }

        }

    }
}

.aside.active {
    position: absolute;
    background-color: white;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 200;
    padding: 30px;
    padding-top: 0px;
    visibility: visible;
    /* opacity: 1; */
    transform: translateY(0%);
}

@media (min-width: 767px) {
    .mainHeader {
        .topHeader {
            .burgerMenuIcon {
                display: block;
            }

            .afterLogo {
                display: none;
            }
        }
    }



}

@media (min-width: 1024px) {
    .mainHeader {
        .topHeader {
            .burgerMenuIcon {
                display: block;
            }

            .afterLogo {
                display: none;
            }
        }
    }

}

@media (min-width: 1140px) {
    .mainHeader {
        .topHeader {
            .burgerMenuIcon {
                display: none;
            }

            .afterLogo {
                display: flex;
            }
        }
    }

}

.site-content {
    padding-top: 60px;
}


.to-top {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}


/* Footer Style */
.topFooter {
    background-color: var(--primary-color);
}

.topFooter .topFooterContent {
    padding-top: 100px;
    padding-bottom: 100px;
}

.topFooter .topFooterContent .title {
    color: white;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.topFooter .topFooterContent .button {
    border: 2px solid white;
    width: fit-content;
    padding: 5px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: transparent;
    cursor: pointer;
}

.topFooter .topFooterContent .button a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.topFooter .topFooterContent .button:hover {
    background-color: white;
}

.topFooter .topFooterContent .button:hover a {
    color: var(--primary-color);
}

.topFooter .topFooterContent p {
    color: white;
    font-size: 1rem;
}

.topFooter .topFooterContent ul {
    list-style: inside;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.topFooter .topFooterContent ul li {
    color: white;
    font-size: 0.95rem;
}

.mainFooter {
    padding-top: 75px;
    padding-bottom: 75px;
}

.mainFooter .mainFooterContent .topRow {
    display: flex;
    gap: 50px;
    padding-bottom: 70px;
    flex-direction: column;
}

.mainFooter .mainFooterContent .topRow .firstRow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mainFooter .mainFooterContent .topRow .firstRow img {
    width: 200px;
    height: auto;
}

.mainFooter .mainFooterContent .topRow .firstRow p {
    font-size: 0.8rem;
    width: 100%;
    color: #5b5858;
    line-height: 1.5;
}

.mainFooter .mainFooterContent .topRow .afterRow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mainFooter .mainFooterContent .topRow .afterRow .title {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
}

.mainFooter .mainFooterContent .topRow .afterRow ul.listItems {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 3px;
}

.mainFooter .mainFooterContent .topRow .afterRow ul.listItems li a {
    color: #7f7c7c;
    text-transform: uppercase;
    font-size: 0.85rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.mainFooter .mainFooterContent .topRow .afterRow ul.listItems li:hover a {
    color: var(--primary-color);
}

.mainFooter .mainFooterContent .copyright {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: gray;
    line-height: 1.5;
}

.socialIcon ul {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
}

.socialIcon ul li a svg {
    width: 15px;
    aspect-ratio: 1;
    fill: #5c5c5c;
    transition: all 0.3s ease;
}

.socialIcon ul li:hover a svg {
    fill: var(--primary-color);
}


@media (min-width: 767px) {}

@media (min-width: 1024px) {
    .mainFooter .mainFooterContent .topRow {
        gap: 100px;
        flex-direction: row;
    }

    .mainFooter .mainFooterContent .topRow .firstRow p {
        width: 400px;
    }

    .mainFooter .mainFooterContent .topRow .afterRow {
        gap: 30px;
    }

    .mainFooter .mainFooterContent .topRow .afterRow ul.listItems li a {
        font-size: 0.75rem;
    }

    .mainFooter .mainFooterContent .topRow .afterRow .title {
        font-size: 0.8rem;
    }

    .mainFooter .mainFooterContent .copyright {
        font-size: 0.7rem;
    }
}

@media (min-width: 1140px) {
    .mainFooter .mainFooterContent .topRow {
        gap: 150px;
        flex-direction: row;
    }

    .mainFooter .mainFooterContent .topRow .firstRow p {
        width: 400px;
    }

    .mainFooter .mainFooterContent .topRow .afterRow {
        gap: 30px;
    }
}

.wpml-ls-legacy-list-vertical a {
    color: white;
}

/* HOMEPAGE */
.homepageSlider .hompageSliderSwiper .swiper {
    width: 100%;
    height: 100%;
}

.homepageSlider .hompageSliderSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .backgroundImage {
    width: 100%;
    height: 100%;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000007d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .content h2.title {
    color: white;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 20px;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .content p.description {
    color: white;
    line-height: 1.5;
    font-size: 1rem;
    padding-bottom: 30px;
    max-width: 800px;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .content a {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 5px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.homepageSlider .hompageSliderSwiper .swiper-slide .content a:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.homepageSlider .hompageSliderSwiper .swiper-button-next:after,
.homepageSlider .hompageSliderSwiper .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 30px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: white;
}

.homepageSlider .hompageSliderSwiper .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    display: inline-block;
    border-radius: 1px;
    background: var(--primary-color);
}

@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .homepageSlider .hompageSliderSwiper .swiper-slide .content {
        padding: 10px;
    }
}

.ul-inside {
    ul {
        margin-left: 15px;
    }
}

#custom-button {
    background-color: transparent;
    padding: 7px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#custom-button:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

.hompageGuidesSliderSwiper {
    margin-top: 50px;
    position: relative;
}

.hompageGuidesSliderSwiper .swiper-wrapper .swiper-slide .backgroundImage {
    width: 100%;
    aspect-ratio: 1;
    padding-bottom: 10px;
}

.hompageGuidesSliderSwiper .swiper-wrapper .swiper-slide .backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all 0.3s ease;
}

.hompageGuidesSliderSwiper .swiper-wrapper .swiper-slide .backgroundImage:hover img {
    opacity: 0.5;
}

.hompageGuidesSliderSwiper .swiper-wrapper .swiper-slide .content h2.title {
    font-size: 0.9rem;
    color: black;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
}

.hompageGuidesSliderSwiper .swiper-pagination {
    position: relative;
    margin-top: 100px;
}

.hompageGuidesSliderSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 0;
}

.hompageNewsSliderSwiper {
    margin-top: 50px;
    position: relative;
}

.hompageNewsSliderSwiper .swiper-wrapper .swiper-slide .backgroundImage {
    width: 100%;
    aspect-ratio: 3/2;
    padding-bottom: 10px;
}

.hompageNewsSliderSwiper .swiper-wrapper .swiper-slide .backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all 0.3s ease;
}

.hompageNewsSliderSwiper .swiper-wrapper .swiper-slide .backgroundImage:hover img {
    opacity: 0.5;
}

.hompageNewsSliderSwiper .swiper-wrapper .swiper-slide .content h2.title {
    font-size: 0.8rem;
    color: black;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    padding-top: 10px;
}

.hompageNewsSliderSwiper .swiper-wrapper .swiper-slide .content p.date {
    color: grey;
    font-size: 0.80rem;
    padding-top: 0px;
    padding-bottom: 0px;
}

.hompageNewsSliderSwiper .swiper-pagination {
    position: relative;
    margin-top: 100px;
}

.hompageNewsSliderSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 0;
}


.ourWorkContainer {
    margin-top: 30px;
    position: relative;

    .ourWorkGrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 0px;

        .item {
            width: 100%;
            aspect-ratio: 1.7777777778;
            overflow: hidden;
            cursor: pointer;
            opacity: 1;
            transition: all 0.3s ease;
            position: relative;

            .image {
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .icon {
                position: absolute;
                top: 0;
                left: 0;
                background-color: #00000069;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;

                svg {
                    width: 50px;
                    aspect-ratio: 1;
                    fill: rgba(255, 255, 255, 0.695);
                    transition: all 0.3s ease;
                }
            }

            &:hover {
                .icon {
                    background-color: transparent;

                    svg {
                        fill: white;
                    }
                }
            }
        }
    }
}

.ourWorkPage {
    margin-top: 30px;
    position: relative;

    .ourWorkGrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 20px;

        .item {
            width: 100%;
            aspect-ratio: 1.7777777778;
            overflow: hidden;
            cursor: pointer;
            opacity: 1;
            transition: all 0.3s ease;
            position: relative;

            .image {
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .icon {
                position: absolute;
                top: 0;
                left: 0;
                background-color: #00000069;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;

                svg {
                    width: 50px;
                    aspect-ratio: 1;
                    fill: rgba(255, 255, 255, 0.695);
                    transition: all 0.3s ease;
                }
            }

            &:hover {
                .icon {
                    background-color: transparent;

                    svg {
                        fill: white;
                    }
                }
            }
        }
    }
}





.ourClientsContainer {
    width: 70%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.ourClientsContainer .content {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.ourClientsContainer .content .item {
    flex: 0 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourClientsContainer .content .item img {
    width: 100%;
    height: 100%;
}

.homepage-location-image {
    .elementor-image-box-img {
        img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
    }
}


@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .hompageGuidesSliderSwiper {
        margin-top: 10px;
    }

    .hompageGuidesSliderSwiper .swiper-pagination {
        margin-top: 50px;
    }

    .ourWorkContainer .ourWorkGrid {
        grid-template-columns: 1fr 1fr;
    }

    .hompageNewsSliderSwiper {
        margin-top: 20px;
    }

    .hompageNewsSliderSwiper .swiper-pagination {
        margin-top: 50px;
    }

    .ourClientsContainer {
        width: 90%;
        margin: 0 auto;
    }

    .ourClientsContainer .content .item {
        flex: 0 0 20%;
    }

    .ourWorkPage {
        margin-top: 30px;
        position: relative;

        .ourWorkGrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 10px;
        }
    }
}


.filterBar {
    display: inline-block;
    text-align: left;
    width: 100%;

    label {
        background: #efe2e2;
        padding: 6px 15px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        box-shadow: #EDEDED 0 0 0 1px inset, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
        display: inline-block;
        font-weight: 500;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    label:hover {
        background: rgba(0, 0, 0, 0.03);
        box-shadow: #CFCFCF 0 0 0 1px inset, rgba(0, 0, 0, 0.1) 0 1px 2px;
    }

    input {
        appearance: none;
        display: none;
    }

    input:focus {
        outline: none;
    }

    input:checked+label {
        box-shadow: var(--primary-color) 0 0 0 2px inset, rgba(0, 0, 0, 0.1) 0 1px 2px 1px;
        background: var(--primary-color);
        color: white;
    }
}

.outPagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customPagnition {
    display: flex;
    gap: 20px;
    align-items: center;
    transform: scale(0.8);

    .page-numbers {
        background-color: lightgray;
        padding: 5px 5px;
        width: 30px;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 600;
        color: var(--text-color);
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .page-numbers.current,
    .page-numbers:hover {
        background-color: var(--primary-color);
        color: white;
    }
}

.newsPageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;

    .backgroundImage {
        width: 100%;
        aspect-ratio: 3/2;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .content {
        h2.title {
            color: black;
            font-size: 0.90rem;
            line-height: 1.5;
            padding-bottom: 20px;
            font-weight: 500;
        }

        p.date {
            color: grey;
            font-size: 0.80rem;
            padding-top: 10px;
            padding-bottom: 10px;
        }
    }
}

@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {}

.full-image {
    img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
}

.topMainTitleContainer {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;

    .background {
        position: relative;
        width: 100%;
        height: 100%;
        /* background: #000000; */
        /* background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(132, 132, 132, 0.7) 70%, rgba(31, 31, 31, 1) 100%); */

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
        }
    }

    .background::after {
        content: '';
        position: absolute;
        background: linear-gradient(0deg, rgb(0 0 0 / 51%) 0%, rgb(0 0 0 / 52%) 70%, rgb(31 31 31 / 0%) 100%);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;

    }

    .content {
        position: absolute;
        bottom: 15%;
        left: 0;
        width: 100%;

        .title {
            color: white;
            padding-bottom: 10px;
            line-height: 1.5;
        }

        .date {
            font-weight: 900;
            color: lightgreen;
        }
    }
}

@media (max-width: 767px) {
    .newsPageGrid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }

    .topMainTitleContainer {
        aspect-ratio: 1;
    }
}

.contactForm {
    .contact-page-contact-form {
        width: 80%;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .contact-page-contact-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-contact-form form input {
        border-radius: 30px;
        padding: 5px 20px;
        border: 1px solid lightblue;
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form input::placeholder {
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form textarea {
        border-radius: 10px;
        padding: 10px 20px;
        border: 1px solid lightblue;
        font-family: "Montserrat", serif;
        height: 200px;
    }

    .contact-page-contact-form form textarea::placeholder {
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form button {
        border-radius: 30px;
        padding: 5px 20px;
        border: 2px solid var(--primary-color);
        background-color: var(--primary-color);
        color: white;
        font-size: 0.85rem;
        font-family: "Montserrat", serif;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .contact-page-contact-form form button:hover {
        background-color: white;
        color: var(--primary-color);
    }

    @media (max-width: 576px) {
        .contact-page-contact-form {
            width: 100%;
            padding-top: 50px;
        }
    }
}

.allServicesPage {
    .allServicesGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;

        .item {
            display: flex;
            gap: 30px;
            align-items: center;
            cursor: pointer;

            .number {
                span {
                    font-size: 2.5rem;
                    font-weight: 900;
                    color: black;
                }
            }

            .content {
                h3.title {
                    color: black;
                    text-transform: uppercase;
                    font-weight: 400;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .allServicesPage {
        .allServicesGrid {
            grid-template-columns: 1fr;
        }
    }
}

.allFilmLocations {
    .allFilmLocationsGrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;

        .item {
            margin-bottom: 20px;

            .backgroundImage {
                width: 100%;
                aspect-ratio: 6/4;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .content {
                .title {
                    color: #2d2b2b;
                    font-size: 1.2rem;
                    text-align: center;
                    padding-top: 20px;
                    font-weight: 600;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .allFilmLocations {
        .allFilmLocationsGrid {
            grid-template-columns: 1fr;
        }
    }
}

.productionGuidelinePage {
    .productionGuidelinePageGrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;

        .item {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;

            .backgroundImage {
                width: 100%;
                aspect-ratio: 1;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .content {
                h2.title {
                    color: #626262;
                    font-size: 1rem;
                    text-transform: uppercase;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .productionGuidelinePage {
        .productionGuidelinePageGrid {
            grid-template-columns: 1fr;
        }
    }
}

.guideTopCover {
    background: var(--primary-color);

    .content {
        .title {
            padding-top: 150px;
            padding-bottom: 150px;
            text-align: center;
            font-weight: 500;
            text-transform: uppercase;
        }
    }
}

.guideNewsPageGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;

    .backgroundImage {
        width: 100%;
        aspect-ratio: 1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .content {
        h2.title {
            color: #6d6969;
            font-size: 0.80rem;
            line-height: 1.5;
            padding-bottom: 20px;
            padding-top: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }


    }
}

.productionGuideSinglePage {
    background: #f0f0f0;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .productionGuideSinglePage {
        display: none;
    }
}