.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: 45px;
    }
}

.product h2 {
    background: #0f0f27;
    color: white;
}
.title-mini span {
    color: #2c9111;
}
.product i {
    border: 1px solid #2c9111;
    color: #2c9111;
}

.product:hover i {
    background: #2c9111;
	color:#ffffff;
}

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

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

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

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

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

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


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

.blog__img:hover i {
    border: 1px solid #b73f02 !important;
    background: #b73f02 !important;
	color:#ffffff;
}

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

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

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

.footer__menu h6 {
    color: rgb(169 203 44);
}

.footer__social a {
    background: #95c625;
	color:#ffffff;
}

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

.header__menu a:hover {
    color: #2e9311;
}
.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: #329811;
    color: #ffffff;
}

.cms-contact__items>li i {
    color: #2e9311;
    background: rgb(50 152 17 / 25%);
}

.cursor {
    background: #322e2e;
}



.header__search-button {
    background: rgb(15 15 39);
	color: #ffffff;
}

.header__search-button:hover {
    background: rgb(45 146 16);
	color: #ffffff;
}

.footer {
        background: rgb(15 15 39);
}

.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 #2c9212;
    background-color: #2c9212;
}


.cms-product__item h2 {
    color: #2c9212;
}

.cms-form button {
    background: #2c9212;
}

.cms-catalog i {
    color: #2c9212;
    background: rgb(183 63 2 / 22%);
}

.cms-catalog:hover {
    border: 1px solid #2c9212;
   background: rgb(183 63 2 / 22%);
}

.header__nav {

    margin-top: 17px;
}






/* ANA ALAN */
.urun-vitrin-alani {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}


/* SATIR */
.urun-vitrin-satir {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    margin-bottom: 80px;
}


/* TERS OLAN SATIR */
.urun-vitrin-satir.ters {
    flex-direction: row-reverse !important;
}


/* YAZI */
.urun-vitrin-yazi {
    width: 50%;
    flex: 0 0 calc(50% - 40px);
}

.urun-vitrin-yazi h2 {
    margin: 0 0 15px;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    color: #20242f;
}

.urun-vitrin-yazi p {
    margin: 0 0 35px;
    max-width: 500px;

    font-size: 14px;
    line-height: 1.7;
    color: #555963;
}


/* GÖRSEL */
.urun-vitrin-gorsel {
    width: 50%;
    flex: 0 0 calc(50% - 40px);

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 360px;
}

.urun-vitrin-gorsel img {
    display: block;
    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 350px;

    object-fit: contain;
}


/* DETAY */
.urun-detay {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.urun-detay span {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #62b746;
    color: #fff;

    font-size: 20px;
    line-height: 1;

    transition: 0.3s;
}

.urun-detay:hover span {
    transform: translateX(5px);
}


/* TABLET */
@media screen and (max-width: 991px) {

    .urun-vitrin-satir {
        gap: 40px;
    }

    .urun-vitrin-yazi,
    .urun-vitrin-gorsel {
        flex: 0 0 calc(50% - 20px);
        width: calc(50% - 20px);
    }

}


/* MOBİL */
@media screen and (max-width: 767px) {

    .urun-vitrin-alani {
        padding: 30px 20px;
    }

    .urun-vitrin-satir,
    .urun-vitrin-satir.ters {
        flex-direction: column !important;
        gap: 25px;
        margin-bottom: 60px;
    }

    .urun-vitrin-yazi,
    .urun-vitrin-gorsel {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .urun-vitrin-gorsel {
        min-height: auto;
    }

    .urun-vitrin-gorsel img {
        max-height: 300px;
    }

}