@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&family=Yellowtail&display=swap');

:root {
    --green: #7e9f3e !important;
    --dark-green: #4e6523 !important;
    --darker-green: #002b04 !important;
    --dark: #231f20 !important;
    --orange: #e56f01 !important;

    --whatsapp: #00d861 !important;

    --thin: 100 !important;
    --ultraLight: 100 !important;
    --light: 300 !important;
    --regular: 400 !important;
    --medium: 500 !important;
    --semiBold: 600 !important;
    --bold: 700 !important;
    --extraBold: 800 !important;
    --black: 900 !important;

    --ttfirs: 'TTFirs' !important;
    --wix: "Wix Madefor Display", sans-serif;
    --yellowtail: "Yellowtail", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    font-family: 'TTFirs' !important;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    overflow-x: hidden;
    /* overflow-y: scroll; */
    background-color: #fff !important;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.pointer {
    cursor: pointer;
}

a,
a:hover {
    text-decoration: none !important;
    transition: 400ms !important;
}

body.header-contact-active,
body.menu-active {
    overflow: hidden;
}

/* ===== Header: Start ===== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
}

button.header-contact-button {
    border: none;
    background: none;
    color: #000;
    font-weight: 500;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo img {
    transform: translate(0px, 15px) scale(1);
    /* transform: scale(4) translate(0px, 15px); */
    transform-origin: center top !important;
    filter: brightness(10);
    height: auto;
    /* height: 30px; */
    width: 100%;
    object-fit: contain;
    transition: 600ms;
}

.header-logo a {
    width: 100%;
}

/* body:has(.inner-page) .header-logo img, */
body.scrolled .header-logo img {
    /* transform: scale(1) translate(0px, 0px); */
    transform: translate(0px, -35px) scale(.3);
    transform-origin: center top !important;
    filter: brightness(1);
    transition: 600ms;
}

.no-home {
    display: none;
}

.no-inner {
    display: block;
}

.header-logo.no-home img {
    transform: translate(0px, 0px) scale(1) !important;
    transform-origin: center top !important;
    filter: unset !important;
    transition: 600ms;
}

body:has(.inner-page) .no-home {
    display: block;
}


body:has(.inner-page) .no-inner {
    display: none;
}

/* .header-logo img.dark-logo {
    opacity: 0 !important;
    pointer-events: none !important;
}

body.scrolled .header-logo img.dark-logo {
    opacity: 1 !important;
    pointer-events: all !important;
}


body.scrolled .header-logo img.light-logo {
    opacity: 0 !important;
    pointer-events: none !important;
} */

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* .header-right svg, */
.header-right svg path {
    fill: #fff !important;
    transition: 400ms;
}

/* body.scrolled .header-right svg, */
body:has(.inner-page) .header-right svg path,
body.scrolled .header-right svg path {
    fill: #000 !important;
    transition: 400ms;
}


.header-right span,
.header-right a {
    color: #fff !important;
    margin-left: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: 400ms;
}

body:has(.inner-page) .header-right span,
body:has(.inner-page) .header-right a,
body.scrolled .header-right span,
body.scrolled .header-right a {
    color: #000 !important;
    transition: 400ms;
}

.header-right .menu-button-content {
    margin-right: 20px;
}


.menu-button {
    display: flex;
    align-items: center;
    cursor: pointer !important;
}


.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: 400ms;
}

body:has(.inner-page) .header-left,
body.scrolled .header-left {
    opacity: 1 !important;
    pointer-events: all !important;
    transition: 400ms;
}

body:has(.inner-page) .header,
body.scrolled .header {
    background: #fff;
}

.header {
    height: 75px;
    padding: 1.35rem 4rem;
}

.header-lang-content,
.header-lang-content a {
    display: flex;
    align-items: center;
}


html:has(body.menu-active) {
    overflow: hidden !important;
    padding-right: 15px !important;
}

.header-overlay {
    transition: opacity .8s cubic-bezier(.5, 0, 0, 1) 0s;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 400ms;
}

body.header-contact-active .header-overlay,
body.menu-active .header-overlay {
    opacity: 1;
    pointer-events: all;
    transition: 400ms;
}

.header-contact,
.header-menu {
    position: fixed;
    right: -600px;
    top: 0;
    height: 100%;
    width: 600px;
    max-width: 100%;
    background: #fff;
    padding: 15px 15px 5rem 5rem;
    z-index: 999999;
    transition: 600ms;
}

body.header-contact-active .header-contact,
body.menu-active .header-menu {
    right: 0;
    transition: 600ms;
}

html:has(body.header-contact-active),
html:has(body.menu-active) {
    overflow: hidden;
}

.active-menu-button button {
    width: 50px;
    height: 50px;
    border: none !important;
    background: #000 !important;
    border-radius: 100%;
}

.active-menu-button button path {
    fill: #fff !important;
}

.active-menu-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu-list {
    margin: 75px 0;
}

.menu-list ul {
    list-style: none;
    padding: 0;
}

.menu-list ul a {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    padding: 5px 0;
}

.menu-list ul li {
    margin: 25px 0;
}

.header-menu-socials .menu-socials {
    display: flex;
}

.header-menu-socials .menu-socials a {
    background-color: #000 !important;
    color: #fff !important;
}

.header-menu-socials .menu-socials a:hover {
    background: #fff !important;
    color: #000 !important;
    transition: 400ms;
}

.header-contact-list {
    margin: 50px 0;
}

.header-contact-list ul {
    list-style: none;
    padding: 0;
}

.header-contact-list ul li {
    margin: 15px 0;
}

.header-contact-list ul li a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.header-contact-list ul li p {
    font-size: 18px;
    font-weight: 600;
    padding-right: 75px;
    color: #000000b5;
    margin-top: 15px !important;
    display: block;
}

.header-contact-list .header-contact-map {
    margin-top: 50px;
    padding-right: 50px;
}

/* ===== Header: End ===== */

/* ===== Footer: Start ===== */

.footer {
    background: #000;
}

.footer-top {
    padding: 75px 0;
}

.footer-logo img {
    width: 100%;
    height: 125px;
    object-fit: contain;
    object-position: left;
}

.footer-socials.socials {
    margin: 50px 0;
    display: flex;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    margin-right: 15px;
    font-size: 18px;
    /* background: #fff;
    color: var(--dark); */
    background: #fff;
    color: #000;
    transition: 400ms;
}

.socials a:hover {
    background: #000;
    color: #fff;
    transition: 400ms;
}

.socials a:last-child {
    margin-right: 0 !important;
}

button.return-top-button {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 100%;
    font-size: 15px;
    transition: 400ms;
}

button.return-top-button:hover {
    background: #000;
    color: #fff;
    transition: 400ms;
    animation-name: jump;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

}

.footer-return-top {
    display: flex;
    justify-content: flex-end;
}

@keyframes jump {
    0% {
        /* Başlangıç konumu */
        transform: translateY(0);
    }

    50% {
        /* Animasyonun ortasında, 20px yukarı zıplıyor */
        transform: translateY(-10px);
    }

    100% {
        /* Tekrar başlangıç konumuna dönüyor */
        transform: translateY(0);
    }
}



.footer-menu-item ul {
    list-style: none;
    padding: 0;
}

.footer-menu-item ul li a {
    font-size: 26px;
    color: #fff;
    font-weight: 300;
    transition: 400ms;
}

.footer-menu-item ul li a:hover {
    color: #fff;
    transition: 400ms;
}

li.footer-address {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-top: 25px;
}

li.footer-address p {
    margin: 0
}

a.footer-whatsapp {
    font-size: 20px;
    font-weight: 600;
    color: #00d861 !important;
    display: flex;
    align-items: center;
    margin-top: 35px;
    transition: 400ms;
}

a.footer-whatsapp i {
    font-size: 26px;
    margin-right: 10px;
    transition: 400ms;
}

a.footer-whatsapp:hover i {
    color: #fff;
    transition: 400ms;
}

.copyright {
    padding: 35px 0;
    border-top: 1px solid #ffffff66;
    display: flex;
    justify-content: space-between;
}

.copyright span {
    font-size: 16px;
    color: #fff;
    opacity: .4;
    font-weight: 500;
    max-width: 300px;
    width: 100%;
}

.copyright .fizu {
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.copyright .fizu img {
    height: 40px;
    opacity: .4;
    filter: invert(1);
    transition: 400ms;
}

.copyright .fizu:hover img {
    opacity: .8;
    transition: 400ms;
}

.bottom-links {
    display: flex;
    justify-content: center;
}

.bottom-links a {
    color: #fff;
    opacity: .4;
    font-weight: 500;
    padding: 0 15px;
    position: relative;
}

.bottom-links a:after {
    content: "";
    display: block;
    position: absolute;
    right: -3px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: .4;
    border-radius: 100%;
    transition: 400ms;
}

.bottom-links a:hover {
    color: #fff;
    opacity: 1;
    transition: 400ms;
}

.bottom-links a:last-child:after {
    display: none;
}

/* ===== Footer: End ===== */

/* ===== Slider: Start ===== */


.main-slider {
    position: relative;
}

.main-slider .item.slider-item {
    width: 100%;
    height: 100dvh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.main-slider .item.slider-item .slider-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .2;
}

.main-slider .item.slider-item {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20dvh;
}

.main-slider .slider-main {
    z-index: 99999999;
    display: block;
    position: relative;
    font-size: 65px;
    font-weight: 700;
    max-width: 55%;
    line-height: 1.2;
}

.main-slider-buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20dvh;
    z-index: 99;
    display: flex;
    align-items: center;
}

.main-slider-buttons .slider-buttons {
    display: flex;
    justify-content: space-between;
}

.slider-left-buttons {
    display: flex;
}

.main-slider-buttons .slider-buttons button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid #fff;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 400ms;
}

.main-slider-buttons .slider-buttons button:hover {
    background: #fff;
    transition: 400ms;
}

.main-slider-buttons .slider-buttons button:hover i {
    color: var(--green);
    transition: 400ms;
}

.main-slider-buttons .slider-buttons button:first-child {
    margin-right: 20px;
}

.main-slider-buttons .slider-buttons button i {
    color: #fff;
    font-size: 24px;
}

.main-slider-buttons .slider-buttons .scroll-down {
    animation-name: jump;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    transition: 400ms;
}

.main-slider-buttons .slider-buttons .scroll-down:hover {
    background: var(--dark-green);
    border: 1px solid var(--dark-green);
    color: #fff;
    transition: 400ms;
}

/* ===== Slider: End ===== */


/* ===== Main Categories ===== */

h2.main-area-title {
    text-align: center;
    padding: 75px 0;
    font-size: 40px;
    font-weight: 500;
}

a.main-category.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 600px;
    width: 100%;
}

a.main-category.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 500ms;
}

a.main-category.category-item:hover img {
    transition: 500ms;
    transform: scale(0.96);
}

span.category-title {
    color: #000;
    font-weight: 600;
    font-size: 17px;
    padding: 15px 0;
}

.go-categories-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.go-categories-button button {
    border: none;
    background: none;
    font-size: 22px;
    font-weight: 500;
}

/* ===== Main Categories: End ===== */


/* ===== Main About ===== */

.main-about {
    padding: 100px 0;
}

.main-about-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.main-about-image {
    padding: 50px;
}

.main-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.main-about-content h2 {
    font-size: 50px;
    font-weight: 500;
}

.main-about-text p {
    font-size: 22px;
    font-weight: 400;
    color: #6b6b6b;
}


/* ===== Main About: End ===== */




/* ===== MainSustanbility: Start ===== */

.main-sustainability {
    background: url(images/sustainability-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.main-sustainability:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.4;
    z-index: 9;
}

.main-sustainability * {
    z-index: 999;
}

.main-sustainability h3 {
    color: #fff;
    font-size: 74px;
    font-weight: 500;
    margin-bottom: 45px;
}

.main-sustainability p {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
}

/* ===== MainSustanbility: End ===== */


/* ===== MainReels ===== */

.main-reels {
    padding: 100px 0 175px 0;
}

.reels-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.reels-item video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.reels-item.playing video {
    filter: brightness(1);
}

/* ▶ Play ikonu */
.reels-item::after {
    content: '▶';
    position: absolute;
    color: white;
    font-size: 35px;
    opacity: 0.8;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.2s;
}

.reels-item.playing::after {
    opacity: 0;
}

/* 🔈 Ses butonu - sade ve renksiz */
.volume-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s;
    backdrop-filter: blur(4px);
}

.reels-item.playing .volume-btn {
    opacity: 1;
    /* sadece oynayan videoda görünür */
}

.volume-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ===== MainReels: End ===== */



/* main-contact */

.main-contact {
    background: url(images/main-contact-bg.png);
    background-repeat: no-repeat;
    padding: 70px 0;
}

.main-contact .content-title .small-title {
    color: var(--dark-grey);
    font-size: 24px;
    letter-spacing: 5px;
    line-height: 51px;
    font-weight: 200;
}

.main-contact .content-title .big-title {
    color: var(--dark);
    font-size: 72px;
    line-height: 84px;
    font-weight: 600;
}

.main-contact .content-text p {
    color: #000000b5;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 50px 0 65px 0;
}

.main-contact .theme-button span {
    color: var(--dark) !important;
}

/* main-contact-end */


/**** main-media-begin ****/

.main-media {
    margin: 100px 0
}

a.main-media-item {
    height: 475px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    padding: 45px 50px;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    position: relative;
    transition: 400ms
}

a.main-media-item:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    opacity: 0;
    left: 0;
    bottom: 0;
    transition: 400ms;
}

a.main-media-item:hover:after {
    content: "";
    display: block;
    position: absolute;
    width: 85%;
    height: 85%;
    opacity: 1;
    left: 7.5%;
    bottom: 7.5%;
    transition: 400ms;
}

a.main-media-item img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 400ms;
}

a.main-media-item:hover img {
    filter: grayscale(1);
    transition: 400ms;
}

a.main-media-item span {
    width: min-intrinsic;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    display: table-caption;
    display: -ms-grid;
    -ms-grid-columns: min-content;
    display: table;
    padding: 0 10px;
    transition: 400ms
}

a.main-media-item:hover span {
    background: var(--dark-grey);
    filter: unset !important
}

a.main-media-item:hover {
    padding: 65px 70px;
    color: #fff;
    transition: 400ms
}

.main-media-button {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;

}

.main-media-button span {
    color: var(--dark);

}

.main-media-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 45px 0;
}

.main-media-text .txt-lg {
    font-size: 46px;
    font-weight: 800;
}

.main-media-text .txt-sm {
    color: var(--dark-grey);
    font-size: 18px;
    letter-spacing: 2px;
}

/**** main-media-end ****/

/**** inner-page ****/
.inner-page {
    margin-top: 75px;
}

.container.custom-container {
    padding: 0 300px;
}

.page-header {
    height: 350px;
    margin: 100px 0 50px 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 10px 25px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.page-header:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000042;
}

.page-header * {
    z-index: 9;
    display: block;
    color: #fff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header .page-title h1.lg,
.page-header .page-title span.lg {
    font-size: 70px;
    font-weight: 600;
}

.page-header .row {
    width: 100%;
}

.page-bread {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: end;
}

.page-bread ul {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    white-space: nowrap;
    overflow: auto;
    width: 100%;
}

.page-bread ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.page-bread ul::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.page-bread ul::-webkit-scrollbar-thumb {
    background: #dcdcdc;
    border: 0px none #ffffff;
    border-radius: 50px;
}

.page-bread ul::-webkit-scrollbar-thumb:hover {
    background: #c2c2c2;
}

.page-bread ul::-webkit-scrollbar-thumb:active {
    background: #c2c2c2;
}

.page-bread ul::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
}

.page-bread ul::-webkit-scrollbar-track:hover {
    background: transparent;
}

.page-bread ul::-webkit-scrollbar-track:active {
    background: transparent;
}

.page-bread ul::-webkit-scrollbar-corner {
    background: transparent;
}


.page-bread ul li:not(:last-child) {
    padding-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.page-bread ul li:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    /* top: 11px; */
    transform: translateY(2px);
    width: 5px;
    height: 5px;
    background: #ffffffa1;
    border-radius: 100%;
}

.page-bread ul li:last-child {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.page-bread ul li:last-child:after {
    display: none !important;
}

.page-bread ul li {
    font-size: 15px;
    color: #ffffffa1;
}

/**** inner-page-end ****/

/**** corporate-page ****/

.blog-detail-text,
.corporate-text {
    font-size: 22px;
    font-weight: 500;
    color: #4f4f4f;
    letter-spacing: 1.2px;
    line-height: 1.6;
}

.corporate-bottom-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.corporate-image img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    height: 100%;
}

h3.corporate-item-title {
    font-size: 45px;
    font-weight: 600;
}

.corporate-item-text {
    font-size: 21px;
    font-weight: 500;
    color: #4f4f4f;
    letter-spacing: 1.2px;
    line-height: 1.6;
}

.corporate-image {
    height: 100%;
}

.corporate-item-content {
    padding: 35px 0;
}

.corporate-bottom-item {
    margin: 125px 0;
}

/**** corporate-page-end ****/



@keyframes fadeInUpSoft {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpSoft {
    animation-name: fadeInUpSoft;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(.25, .46, .45, .94);
    animation-fill-mode: both;
    will-change: transform, opacity;
}

@keyframes fadeInLeftSoft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftSoft {
    animation-name: fadeInLeftSoft;
    animation-duration: 1.3s;
}

@keyframes fadeInRightSoft {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightSoft {
    animation-name: fadeInRightSoft;
    animation-duration: 1.3s;
}

.wow {
    visibility: hidden;
}

.wow.animate__animated,
.wow.animated {
    visibility: visible;
}


/**** contact-page ****/

.contact-info-item {
    min-height: 150px;
    border: 1px solid #0000006b;
    display: flex;
    align-items: center;
    padding: 25px;
    text-align: center;
    background: #000;
}

.contact-info-item ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.contact-info-item ul li a,
.contact-info-item p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1.2px;
}

.contact-info-item * {
    color: #fff !important;
}

.contact-bottom {
    padding: 100px 0;
}

.contact-form .form-control {
    border: 1px solid #000 !important;
    min-height: 60px;
    border-radius: 0;
    color: #000000;
    box-shadow: none !important;
    outline: none !important;
    transition: 400ms;
}

.contact-form textarea {
    min-height: 120px !important;
    height: 100% !important;
}

.contact-form .form-control::placeholder {
    color: #000000d9;
    font-weight: 500;
    transition: 400ms;
}

.contact-form .form-control:focus::placeholder {
    color: #000000;
    transition: 400ms;
}

h2.page-content-title {
    font-size: 60px;
    font-weight: 600;
    padding: 25px 0;
}

button.theme-button.primary-button {
    border: 1px solid #000;
    background: #000 !important;
    color: #fff;
    font-weight: 500;
    background: none;
    height: 60px;
    padding: 0 15px;
    width: 150px;
    transition: 400ms;
}


button.theme-button.primary-button:hover {
    background: #fff !important;
    color: #000 !important;
    transition: 400ms;
}

/**** contact-page-end ****/


/**** blog-list-page ****/
.blog-item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.blog-item-content {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

a.blog-item {
    margin-bottom: 30px;
    display: block;
}

.gallery-page-content {
    margin-bottom: 150px;
}

.blog-item-content {
    font-size: 22px;
    font-weight: 500;
}

/**** blog-list-page-end ****/



/**** blog-detail-page ****/

.detail-page-title {
    font-size: 55px !important;
    font-weight: 600 !important;
}

.blog-detail-page-content {
    margin-bottom: 150px;
}

/**** blog-detail-page-end ****/


/**** photos-page ****/

a.image-item img {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

a.image-item {
    margin-bottom: 30px;
    display: flex;
    transition: 400ms;
}

a.image-item:hover {
    transform: translateY(4px);
    transition: 400ms;
}

/**** photos-page-end ****/

/**** videos-page ****/

.gallery-list .reels-item {
    margin-bottom: 30px;
}

/**** videos-page-end ****/

.hover-down {
    transition: 400ms;
}

.hover-down:hover {
    transform: translateY(4px);
    transition: 400ms;
}


/**** categories-page ***/

.page-content.categories-page-content {
    margin-bottom: 150px;
}

.category-item-image {
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 100%;
}

.category-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.page-content.categories-page-content a.main-category.category-item {
    height: auto !important;
    margin-bottom: 30px;
    align-items: start
}

a.main-category.category-item img {
    transition: 800ms;
}

a.main-category.category-item:hover img {
    transform: scale(1.05);
    transition: 800ms;
}

.page-content.categories-page-content span.category-title {
    text-align: left !important;
    padding: 15px;
    text-transform: uppercase;
    font-size: 18px
}

/**** categories-page-end ****/

/**** product-detail ****/

section.product-detail-page .page-header {
    height: 600px;
}

.prod-gallery-item {
    margin-bottom: 30px;
}

.prod-gallery-item a {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.prod-gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 800ms;
}

.prod-gallery-item a:hover img {
    transform: scale(1.05);
    transition: 800ms;
}

.product-detail-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

span.product-detail-title {
    font-size: 65px;
    font-weight: 800;
}

span.product-detail-subtitle {
    font-size: 25px;
}

.product-detail-description {
    margin: 100px 0;
    font-size: 22px;
    color: #313131;
}

.product-detail-gallery {
    margin-bottom: 125px;
}

/**** product-detail-end ****/

span.no-prod-alert {
    background: #eff0ef87;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: space-between;
    padding: 30px 40px;
    margin-bottom: 30px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #5e5e5e;
}




.panel-button {
    position: fixed;
    left: 35px;
    bottom: 50px;
    z-index: 99999999;
}

.panel-button a {
    height: 40px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration-line: unset !important;
    padding: 0 20px;
    font-size: 15px;
    border: 2px solid #000000;
    color: #fff;
    transition: 400ms;
}

.panel-button a:hover {
    background: #ffffff;
    color: #000000;
    transition: 400ms;
}