.machine__img {
    background: none;
}

.cms-contact__wrapper-form,
.cms-product__item{
    background: #ffffff;
}

.cms-contact__wrapper-text h4,
.cms-contact__social{
    display: none;
}

/*Whatsapp*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

.mypage-whatsapp-phone {
    position: fixed;
    bottom: 0;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 99;

    &.bottom_left {
        left: 0;
    }

    &.bottom_right {
        right: 0;
    }
}

.mypage-whatsapp-ph-img-circle {
    width: 30px;
    height: 30px;
    top: 43px;
    left: 43px;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
    color: #fff;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: #0d9f16;
    background-size: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mypage-whatsapp-ph-circle-fill {
    width: 60px;
    height: 60px;
    top: 28px;
    left: 28px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(13, 159, 22, 0.5);
    opacity: .75 !important;
}

.mypage-whatsapp-ph-circle {
    width: 90px;
    height: 90px;
    top: 12px;
    left: 12px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color: #0d9f16;
    opacity: .5;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}
.video__player, .machine__img {max-width:1110px;}

.cms-product__top-img img,
.cms-product__bottom-img {
    aspect-ratio: 4/5 !important;
}

.footer {
    position: relative;
}
.footer__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
    opacity: .05;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Mega Menu Styles */
.has-dropdown {}

.mega-menu {
    position: absolute;
    left: 0;
    top: 65px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.has-dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu__container {
    width: 1100px;
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 50px 100px rgba(0, 0, 0, 0.03);
}

.mega-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.mega-menu__item:hover {
    transform: translateY(-5px);
}

.mega-menu__image {
    width: 100%;
    aspect-ratio: 4/5;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.mega-menu__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-menu__item:hover .mega-menu__image img {
    transform: scale(1.1);
}

.mega-menu__item span {
    font-size: 16px;
    font-weight: 500;
    color: #0e121b;
}

@media (max-width: 768px) {
    .has-dropdown {
        flex-direction: column;
    }

    .mega-menu {
        position: static;
        padding: 5px 0;
        background: transparent;
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .mega-menu__container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        border: 1px solid #eee;
        border-radius: 10px;
        box-shadow: none;
    }

    .mega-menu__item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .mega-menu__image {
        width: 60px;
        margin-bottom: 0;
        border-radius: 5px;
    }
}


.hero__products-img--3 {
    filter: blur(1px);
}

.hero__products-img--2 {
    filter: blur(1.5px);
}

.header__logo img {
    max-height: 70px;
}

@media (max-width: 480px) {
    .header__logo img {
        height: 70px;
    }
}