.product {height:fit-content !important;}

.hero {
    background: none;
}

.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;
    }
}

@media screen and (max-device-width: 600px) {
    .mypage-whatsapp-phone {
        transform: scale(0.8);
    }
	
	.footer__top {
		display:none;
	}

    .numbers__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .number {
        padding: 15px;
        border-radius: 16px;
    }

    .number i {
        font-size: 40px;
    }

    .number__text h5 {
        font-size: 18px;
    }

    .number__text h6 {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .header__logo img {
        height: 25px;
    }
}

.product h2 {
    background: #1d1d1b;
    color: white;
}
.title-mini span {
    color: #8f8e8d;
}
.product i {
    border: 1px solid #8f8e8d;
    color: #8f8e8d;
}

.product:hover i {
    background: #8f8e8d;
}

.product:hover h2 {
    background: #8f8e8d;
}
.number__text h5 {
    color: #8f8e8d;
}
.number:hover {
    border-color: #8f8e8d;
}

.video__player {
    background: rgb(143 141 141 / 28%);
}

.video__player-pagination span.swiper-pagination-bullet-active {
    background: #8f8e8d;
}

.home-menu__item--career i {
    color: #8f8e8d !important;
    border: 1px solid #8f8e8d !important;
}

.home-menu__item--career:hover i {
    background: #8f8e8d !important;
    border: 1px solid #8f8e8d !important;
}

.home-menu__item i {
    border: 1px solid #8f8e8d;
    color: #8f8e8d;
}
.home-menu__item:hover i {
    border: 1px solid #8f8e8d !important;
    background: #8f8e8d !important;
}


.blog__img i {
    border: 1px solid #8f8e8d;
    color: #8f8e8d;
}

.blog__img:hover i {
    border: 1px solid #8f8e8d !important;
    background: #8f8e8d !important;
}

.blog__text-info a {
    color: #8f8e8d;
}

a:hover {
    color: #8f8e8d;
}
.blogs__pagination span.swiper-pagination-bullet-active {
    background: #8f8e8d;
}

.blogs__pagination span {
    border: 1px solid #8f8e8d;
}

.footer__menu h6 {
    color: #8f8e8d;
}

.footer__social a {
    background: #8f8e8d;
}

.footer__social a:hover {
    background: #ffffff;
}
.footer__oyos a {
    color: #8f8e8d;
}

.header__menu a:hover {
    color: #8f8e8d;
}
.products__slider .arrow {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.products__slider .arrow:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
}


.blogs__slider .arrow {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.blogs__slider .arrow:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
}

.cms-contact__wrapper-form>button {
    background: #8f8e8d;
    color: #ffffff;
}

.cms-contact__items>li i {
    color: #8f8e8d;
    background: rgb(143 141 141 / 38%);
}

.cursor {
    background: #322e2e;
}

.header {
    background: #ffffff;
}

.header__search-button {
    background: #992a2a;
	color: #ffffff;
}

.header__search-button:hover {
    background: #444444;
	color: #ffffff;
}

.footer {
    background: #363b41;
}

.products__pagination span.swiper-pagination-bullet-active {
    width: 35px;
    background: #363b41;
}

.products__pagination span {
    border: 1px solid #363b41;
}


.header__mobile {
    background: #363b41;
}
.hero__arrow {
    color: #363b41;
}

.blogs__slider .arrow {
    border: 1px solid #363b41;
    background-color: #363b41;
}