:root {
    --container-width: 1410px;
    --container-width-2: 1600px;
    --container-out: calc(calc(100vw - var(--container-width)) / 2);
    --container-out-2: calc(calc(100vw - var(--container-width-2)) / 2);
    --black-color: rgb(17 17 17);
    --white-color: #ffffff;
    --red-color: #e20019;
    --gray-color: #F3F4F6;
    --soft-blue: #E5E8EF;
    --soft-gray: #F2F4F7;
    --fancybox-bg: #fff;
    --swiper-pagination-bullet-width:11px;
    --swiper-pagination-bullet-height:11px;
    --drawer-w: min(470px, 92vw);
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.15);
    --bg: var(--red-color);
    --panel: #ffffff;
    --text: var(--red-color);
    --muted: #6B7280;
    --accent:var(--red-color);
    --chip: #fff;
    --chip-text: #6B7280;
    --overlay: rgba(2,6,23,.55);
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: 'ozduman';
    src: url('./fonts/icon-font/font/ozduman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.fancybox__container {
    --fancybox-color: #282828;
    --fancybox-hover-color: #282828;
    --fancybox-bg: rgb(255 255 255 / 80%);
}
* {
     font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-style: normal;
    font-weight: normal;
    scroll-behavior: smooth;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}
::selection {
    background: var(--red-color);
    color: #fff;
}
strong,b {
    font-weight: 700;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
::after, ::before {
    box-sizing: border-box;
}
body {
 	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
    margin: 0;
}
.demo-icon {
    font-family: "ozduman";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
    padding-bottom: 0;
    color: var(--red-color);
}
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--red-color);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--red-color);
}
.toast-message {
    font-size: 14px;
    color: #fff;
}
#toast-container>.toast {
    background: var(--black-color);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-position: left center;
    background-position-x: 14px;
    padding: 25px 34px 25px 50px;
    width: initial;
}
.c-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}
.c-container-two {
    width: 100%;
    max-width: var(--container-width-2);
    margin: 0 auto;
}
.cl-container {
    margin: 0 auto;
    margin-left: var(--container-out);
}
.gap-1 {
    gap: 1rem!important;
}
.gap-2 {
    gap: 2rem!important;
}
.gap-8 {
    gap: 8rem!important;
}
.pore {
    position: relative;
}
.poab {
    position: absolute;
}
h1, h2, h3, h4, h5, h6 ,p {
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.w-25 {
    width: calc(25% - 7px);
}
.w-33 {
    width: calc(100% / 3)
}
.w-50 {
    width: calc(50% - 7px);
}
.w-100 {
    width: 100%;
}
.d-block {
    display: block;
}
.text-center {
    text-align: center;
}
.h-100 {
    height: 100%;
}
.row-gap {
    row-gap: var(--bs-gutter-x);
}
.column-gap {
    column-gap: var(--bs-gutter-x);
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
li {
    list-style: none;
}
ul {
    margin: 0;
    padding-left: 0;
}
.btn {
    display: inline-flex;
    background: transparent;
    align-items: center;
    justify-content: center;
    padding: 13px 20px 13px;
    background-color: var(--black-color);
    font-size: 16px;
    color: var(--white-color);
    gap: 16px;
    border: none;
    cursor: pointer;
    transition: all .5s;
    font-weight: 600;
    border-radius: 10px;
}
.btn i {
    font-size: 10px;
    color: var(--white-color);
}
.btn:hover {
    gap: 24px;
}
.btn-primary-green {
    background-color: var(--red-color);
}
.btn-contact-white {
    background-color: var(--white-color);
    color: var(--black-color);
    font-weight: 800;
}
.btn-contact-white i {
    color: var(--black-color);
}
.btn-contact-blue {
    padding: 24px 26px;
    background-color: var(--black-color);
    gap: 10px;
    max-width: max-content;
}
.btn-contact-blue i {
    font-size: 24px;
}
.btn-contact-green {
    padding: 24px 26px;
    background-color: var(--red-color);
    gap: 10px;
}
.btn-contact-green i {
    font-size: 24px;
}
.btn-text-green {
    background: transparent;
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-color);
    gap: 8px;
    cursor: pointer;
}
.btn-text-green i {
    font-size: 8px;
    color: var(--red-color);
}
.btn-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 26px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    color: var(--primary-gray);
    gap: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
.btn-copy i {
    font-size: 20px;
}
.menu-btn {
    display: none;
}
header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 25px 0 40px;
}
header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}
header .menu li {
    position: relative;
    margin: 0 2px;
    padding: 18px 0px 5px 0;
    font-weight: 500;
    margin-left: 40px;
}
header .menu> li:first-child {
    margin-left: 0
}
header .menu li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 2px 20px 2px;
    background: var(--black-color);
    display: none;
    z-index: 88;
    border-radius: 15px;
}
header .menu li .dropdown-menu li {
    margin: 0;
    padding: 13px 45px 13px 30px;
    border-bottom: 2px solid rgb(255 255 255 / 10%);
}
header .menu li .dropdown-menu li:last-child {
    border-bottom: none;
}
header .menu li.dropdown:hover .dropdown-menu {
    display: block
}
header .menu li .dropdown-menu li:hover {
    background: rgb(255 255 255 / 10%);
    border-color: var(--black-color);
}
header .menu li a,header .menu li span {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: #25282d;
    gap: 8px;
    cursor: pointer;
}
header.header .menu li a i {
    font-size: 20px;
    color: var(--red-color);
}
header.header .menu li a,header.header .menu li span {
    color: var(--black-color);
}
header .menu li .dropdown-menu a {
    color: #fff;
    text-transform: initial;
    font-weight: 500;
    font-size: 16px;
}
header .menu li .dropdown-menu li .right-down {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    padding: 0 10px 5px;
    background: var(--black-color);
    border-radius: 0  10px 10px 0px;
}
header .menu li .dropdown-menu li:hover .right-down {
    display: block;
}
header #btn-search{
    color: #fff;
    padding: 12px 24px;
    position: relative;
    background: var(--red-color);
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    }
header #btn-search i{
  
    font-size: 20px;
    }
.language-switcher{display: flex;align-items: center;gap: 10px;}
.language-switcher a{color: var(--black-color);font-weight: 500;font-size: 17px;}
.main {
    display: flex;
    margin: 0 90px;
    height: calc(100vh - 200px);
    align-items: stretch;
    gap: 20px;
}
.slider {
    width: 70%;
    position: relative;
    border-radius: 25px;
}
.slider video,.slider img {
    height: calc(100vh - 200px);
    width: 100%;
    object-position: center;
    object-fit: cover;
    max-width: 100%;
    border-radius: 25px;
}
.slider .item {
    position: relative
}
.slider .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    left: var(--container-out-2);
    bottom: 0;
    z-index: 16;
}
.slider .content-detail {
    padding-left: 0;
    padding-bottom: 0;
}
.slider .content .text1 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    max-width: 50rem;
}
.slider .content .text2 {
    font-size: 24px;
    line-height: 31px;
    font-weight: 400;
    margin-bottom: 48px;
    color: #fff;
    max-width: 41rem;
}
.scroll-indicator {
    position: absolute;
    left: 0px;
    bottom: -60px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}
.scroll-text {
    font-size: 14px;
    color: #25282d;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}
.scroll-indicator i {
    height: 48px;
    width: 48px;
    font-size: 10px;
    background: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 48px;
    color: #fff;
}
.main .right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main .right .right-item {
    border-radius: 20px;
    overflow: hidden;
    height: 50%;
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.main .right .right-item a{display: flex;
    align-items: end;
    height: 100%;}
.main .slider  picture:after{position:absolute;top:0;left:0;background:var(--black-color);width:100%;height:100%;content:"";opacity:.3;border-radius: 25px;}
.main .right .right-item img {
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
}
.main .right .right-item h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    max-width: 18rem;
    padding: 22px;
    background: rgb(226 0 25 / 50%);
    margin: 0;
    border-radius: 0 15px 0 0;
}
.home-about {
    margin-top: 36px;
    height: 100%;
}
.home-about .icon-favicon {
    position: absolute;
    font-size: 34rem;
    color: #F1F1F1;
    transform: translateX(-13rem);
    z-index: 1;
}
.home-about-flex {
    margin-top: 80px;
    display: block;
    align-items: start;
    justify-content: space-between;
    position: relative;
    padding-top: 120px;
    gap: 15px;
    position: relative;
    flex-direction: column;
}
.home-about-flex > div {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-bottom: 75px;
}
.home-about-left .title1 {
    color: #707070;
    font-size: 24px;
    font-weight: 600;
}
.home-about-left .title2 {
    color: var(--black-color);
    font-size: 48px;
    font-weight: 400;
    line-height: 54px;
    text-align: center;
}
.home-about-left .title2 strong {
    display: block;
}
.counters {
    font-size: 20px;
    color: #707070;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.home-product {
    background: #E5E8EF;
    padding-bottom: 155px;
    padding-top: 240px;
    margin-bottom: 0;
    margin-top: 0;
}
.home-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}
.product {
    width: calc(100% /4 - 22.5px);
    padding: 0px 0px 30px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.product .product-img {
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}
.product .product-img img {
    aspect-ratio: 8/7;
    position: relative;
    z-index: 1;
    transform: scale(.9);
    transition: all .5s;
    padding: 0;
}
.product:hover .product-img img {
    transform: scale(1);
}
.product .logo-icon {
    margin-bottom: 17px;
    padding-left: 25px;
}
.product .product-name {
    margin-bottom: 14px;
    font-size: 18px;
    min-height: 54px;
    font-weight: 600;
    color: #707070;
    line-height: 27px;
    padding-left: 25px;
}
.product-list .product .product-name,.other-product .product .product-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
    margin-bottom: 0;
}
.product-list .product:hover .product-name,.other-product .product:hover .product-name,.category .product:hover .product-name {
    color: var(--black-color);
}
.product-list .product:hover,.other-product .product:hover,.category .product:hover {
    border-color: var(--red-color);
}
.product-list .product .product-name i,.other-product .product .product-name i {
    display: flex;
    height: 48px;
    width: 48px;
    background: var(--red-color);
    color: #ffF;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all .5s;
    position: relative;
    left: -10px;
    border-radius: 48px;
    opacity: 0;
    aspect-ratio: 1/1;
}
.product-list .product:hover .product-name i,.other-product .product:hover .product-name i {
    left: 20px;
    opacity: 1;
}
.product .category-name {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 18px;
    margin-left: 20px;
    letter-spacing: 0px;
    margin-top: 12px;
    background: var(--red-color);
    width: max-content;
    padding: 5px 8px;
    border-radius: 5px;
}
.product b {
    color: var(--red-color);
    padding: 0;
    background: transparent;
    font-size: 14px;
    gap: 8px;
    padding-left: 25px;
}
.product b i {
    color: var(--red-color);
}
.product:hover b {
    gap: 16px;
}
.home-product-slider-container {
    margin-left: var(--container-out);
    width: 100%;
}
.home-product-slider .slick-slide {
    margin-right: 30px;
}
.home-product-dots {
    margin-top: 55px;
    position: relative;
}
.home-product-dots .swiper-pagination-bullet {
    background: var(--black-color);
}
.home-product-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--red-color);
}
.home-product .arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.home-product .arrows i {
    cursor: pointer;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red-color);
    border-radius: 48px;
    color: var(--red-color);
}
.home-product .arrows .home-product-right {
    color: #fff;
    background: var(--red-color);
}
.home-product-text1 {
    color: #707070;
    line-height: 22px;
    margin-bottom: 0;
}
.home-product-text2 {
    color: var(--black-color);
    line-height: 65px;
    margin-bottom: 0;
    font-size: 42px;
    font-weight: 600;
}
.blog {
    width: 450px;
    margin-left: 30px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
}
.blog .blog-img {
    position: relative;
    width:100%;
}
.blog .content {
    padding: 40px;
    background: rgb(89 96 111 / 6%);
}
.blog .btn {
    padding: 0;
}
.blog p {
    font-size: 16px;
    color: #707070;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 38px;
}
.blog h4 {
    font-size: 20px;
    color: var(--black-color);
    line-height: 27px;
    font-weight: 600;
    margin-bottom: 10px;
}
.site-footer {
    margin: 0 75px 42px;
    background: var(--black-color);
    border-radius: 20px;
    padding: 71px 0 43px;
    position: relative;
}
.site-footer .logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.site-footer .logo h6 {
    font-size: 14px;
    color: #fff;
    line-height: 17px;
    max-width: 9rem;
    font-weight: 400;
}
.site-footer .w-30 {
    width: 30%;
}
.site-footer .w-70 {
    width: 70%;
}
.site-footer .center {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
}
.site-footer .center .right {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-left: 80px;
    border-left: 1px solid rgb(255 255 255 / 25%);
    padding-bottom: 40px;
}
.site-footer .bottom {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.site-footer .bottom .w-50 {
    padding-top: 50px
}
.site-footer .bottom .right {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-left: 80px;
    border-left: 1px solid rgb(255 255 255 / 25%);
}
.site-footer .bottom ul {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
}
.site-footer .footer-slogan {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    line-height: 40px;
    max-width: 28rem;
    margin-bottom: 75px;
}
.social {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    padding-bottom: 40px;
}
.social a{
    position:relative;
    height: 62px;
    width: 62px;
    border-radius: 72px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social a:after{
    content:"";
    font-family:'ozduman';
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social a:hover {
    border: 1px solid var(--red-color);
    background: var(--red-color);
}
.social a.facebook:after{
    content:"\e80b";
}
.social a.instagram:after{
    content:"\e80f";
}
.social a.youtube:after{
    content:"\e813";
}
.social a.twitter:after{
    content:"\e818";
}
.social a.linkedin:after{
    content:"\e819";
}
.copyright {
    font-size: 14px;
    color: #fff;
    line-height: 19px;
}
.site-footer .bottom ul a {
    font-size: 14px;
    color: #fff;
    line-height: 19px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 17rem;
    margin-bottom: 27px;
}
.contact-info a {
    width: max-content;
    color: #fff;
    font-size: 20px;
    line-height: 27px;
}
.contact-info p {
    color: #fff;
}
.site-footer .center .right ul li {
    margin-bottom: 12px;
    max-width: 19rem;
}
.site-footer .center .right ul li:last-child {
    margin-bottom: 0;
}
.site-footer .center .right .title {
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    }
.site-footer .center .right ul a {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    font-weight: 500;
}
.site-footer .center .right div + ul a {
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
}
.site-footer .icon-arrow-up {
    position: absolute;
    top: 71px;
    right: 75px;
    height: 64px;
    width: 64px;
    background: var(--red-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
    cursor: pointer;
}
.contact-buttons {
    position: fixed;
    right: 0;
    top: 35%;
    display: flex;
    flex-direction: column;
    background: var(--red-color);
    padding: 10px 11px;
    gap: 10px;
    z-index: 2;
    border-radius: 15px 0 0 15px;
}
.contact-buttons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    border-radius: 15px;
    transition: all .5s;
}
.contact-buttons a:hover {
    background: #fff;
    color: var(--red-color);
}
.banner {
    position: relative;
    width: calc(100% - 126px);
    margin: 0 auto;
    background: #373737;
    min-height: 311px;
    border-radius: 10px 10px;
    display: flex;
    align-items: center;
}
.breadcrumb, .breadcrumb ul {
    align-items: center;
    display: flex;
    width: 100%;
}
.breadcrumb ul {
    justify-content: start;
    gap: 4px;
    margin-bottom: 7px;
    overflow: auto;
    white-space: nowrap;
}
.breadcrumb ul li {
    position: relative;
    padding-right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}
.breadcrumb ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}
.breadcrumb h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -1.5px;
    width: 48%;
}
.breadcrumb-flex {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.page {
    margin-bottom: 110px;
    margin-top: 90px;
}
.product-detail{margin-top:0;margin-bottom: 0;}
.old-page {
    margin-bottom: 110px;
    margin-top: 160px;
}
.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    flex-direction: column;
}
.about-flex > div {
    width: 100%;
    text-align: center;
}
.about-flex h2 {
    color: var(--black-color);
    letter-spacing: -1.5px;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 40px;
}
.about-flex p {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
}
.about-flex .page-text {
    max-width: 100%;
    margin: 0 auto;
}
.about-flex p strong {
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 30px;
    display: block;
}
.about-flex .page-img {
    text-align: center;
}
.old-flex {
    display: flex;
    gap: 30px;
}
.old-page .w-33 {
    border: 1px solid #D1D1D1;
    padding: 48px 35px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.old-page .w-33 > i {
    width: 96px;
    font-size: 92px;
    color: var(--black-color);
}
.old-page .w-33 p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #707070;
    line-height: 19px;
}
.old-page .w-33 a {
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: var(--black-color);
}
.old-page .w-33 a i {
    font-size: 14px;
    color: var(--black-color);
}
.page-quality .item {
    width: calc(100% / 3 - 25px);
}
.page-quality img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.page-quality p {
    text-align: center;
    font-size: 24px;
    color: #707070;
    line-height: 33px;
    font-weight: 600;
    letter-spacing: -1px;
    max-width: 56rem;
    margin: 0 auto 80px;
}
.form-policy-group label {
    padding-left: 36px;
    opacity: .8;
    height: 100%;
    z-index: 9;
    color: #707070;
}
.form-policy-group {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    padding-left: 0;
    min-height: 27px;
    margin-bottom: 10px;
}
.form-policy-group input {
    width: 0px;
    height: 0px;
    opacity: 0;
    position: absolute
}
.form-policy-group:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #707070;
    border-radius: 5px;
}
.form-policy-group:after {
    content: "\e80d";
    font-family: "ozduman";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    opacity: 0
}
.form-policy-group:has(input:valid):after {
    opacity: 1
}
.form form {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}
#careerForm button[type="submit"] {
    display: none;
}
.form .custom-select, .form select {
    width: 100%;
}
.form .form-input {
    width: calc(50% - 15px);
}
.form .form-text {
    width: 100%;
    position: relative;
}
.form input,.form textarea {
    border: 1px solid #d9d9d9;
    color: #ABABAB;
    font-size: 16px;
    width: 100%;
    padding: 16px 14px;
    height: 64px;
    border-radius: 5px;
}
.form input::placeholder,.form textarea::placeholder {
    color: #ABABAB;
}
.form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 0;
    min-height: 120px;
    max-width: 100%;
    min-width: 100%;
}
.custom-select select,.select-hide {
    display: none;
}
.custom-select {
    position: relative;
    height: 64px;
    padding: 0;
    outline: 0;
    color: #707070
}
.select-selected {
    border: 1px solid #D1D1D1;
    border-radius: 5px;
}
.select-selected:after {
    content: "\e801";
    font-family: "ozduman";
    position: absolute;
    top: 30px;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: 10px;
    color: #ABABAB !important;
    font-weight: 700
}
.select-selected.select-arrow-active:after {
    content: "\e802"
}
.select-items div,.select-selected {
    color: #ABABAB!important;
    padding: 0 10px;
    cursor: pointer;
    user-select: none;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    opacity: 1;
}
.select-items div {
    height: 53px;
    border-bottom: 1px solid #D1D1D1;
    color: #1d1d1d!important
}
.select-items {
    position: absolute;
    background-color: #000;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 225px;
    overflow: auto;
    border: 1px solid #D1D1D1;
    border-top: none;
    border-radius: 5px;
}
.same-as-selected,.select-items div:hover {
    background-color: var(--black-color);
    color: #fff!important
}
.select-selected:not(.select-arrow-active) + .select-items {
    display: none;
}
.form-group.form-file-group {
    position: relative;
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background: #E5E8EF;
    border-radius: 16px;
    padding: 30px 40px 30px 75px;
    cursor: pointer;
}
.form-group.form-file-group:before {
    content: "\e806";
    font-family: "ozduman";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    font-size: 30px;
    color: var(--black-color) !important;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
}
.form-group.form-file-group input {
    display: none;
}
.form-group.form-file-group label {
    color: var(--black-color);
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    cursor: pointer;
}
.form-group.form-file-group .placeholder-title {
    font-weight: 600;
    font-size: 16px;
}
.referances-flex {
    margin-top: 78px;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    text-align: center;
    gap: 23px;
}
.referances-flex .referance {
    min-width: 330px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
    -webkit-box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
    -moz-box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
    cursor: pointer;
}
.referances-flex .referance .firma {
    position: absolute;
    bottom: 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #707070;
    width: 100%;
    left: 0;
}
.referances p {
    text-align: center;
    font-size: 24px;
    color: #707070;
    line-height: 33px;
    font-weight: 600;
    letter-spacing: -1px;
    max-width: 56rem;
    margin: 0 auto 0px;
}
.services .service {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.services .service img {
    border-radius: 20px;
    max-width: 810px;
    width: 100%;
}
.services .service:nth-child(even) {
    flex-direction: row-reverse;
}
.services .service .content {
    width: 450px;
}
.services .service .content h4 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--black-color);
    margin-bottom: 15px;
    line-height: 40px;
}
.services .service .content p {
    font-size: 20px;
    font-weight: 500;
    color: #707070;
    margin-bottom: 63px;
    line-height: 27px;
}
.banner .bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.banner .bottom p {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #707070;
    line-height: 33px;
    max-width: 43rem;
    margin-top: 40px;
}
.product-overlay {
    position: absolute;
    top: 0;
    right: 120px;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
}
.product-overlay-center {
    padding: 58px 30px;
    border-radius: 36px;
    height: max-content;
    width: max-content;
    background: rgba(229, 232, 239, 0.61);
    /* #E5E8EF + %61 opacity */
    backdrop-filter: blur(8px) brightness(0.9);
    -webkit-backdrop-filter: blur(8px) brightness(0.9);
    /* Safari için */
    border: 1px solid #E5E8EF;
    /* text-align: center; */
    min-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-overlay h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 33px;
    color: var(--black-color);
    text-align: center;
}
.product-overlay a {
    text-transform: uppercase;
}
.product-overlay a:hover {
    margin-left: 8px;
}
.contact-maps {
    margin-top: 110px;
    width: 100%;
    height: 60vh;
    max-height: 500px;
    position: relative;
}
.contact-maps #map {
    height: 100%;
    width: 100%;
    border-radius: 32px;
}
.contact-page h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--black-color);
    line-height: 64px;
}
.contact-flex {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.contact-page .form-policy-group {
    margin-bottom: 0px;
}
.page-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-contact-info p {
    font-size: 20px;
    line-height: 27px;
    color: #707070;
    max-width: 18rem;
}
.page-contact-info button {
    padding: 0;
    margin-bottom: 10px;
}
.page-contact-info a {
    font-size: 20px;
    line-height: 27px;
    color: #707070;
    max-width: 18rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}
.page-contact-info a:hover {
    color: var(--red-color);
}
.page-contact-info .social {
    margin-top: 30px;
}
.page-contact-info .social i {
    border: 1px solid #707070;
    color: #707070;
    font-size: 24px;
}
.page-contact-info .social i:hover {
    border: 1px solid var(--red-color);
    color: var(--white-color);
    font-size: 24px;
}
.page-kvkk p,.page-kvkk a {
    color: #707070;
    line-height: 22px;
    font-size: 16px;
    font-weight: 400;
}
.page-kvkk h2 {
    color: #707070;
    line-height: 27px;
    font-size: 20px;
    font-weight: 400;
    margin-top: 25px;
    font-weight: 500;
}
.news-flex {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 30px;
}
.page-news .blog {
    margin-left: 0;
    box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
    -webkit-box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
    -moz-box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
}
.blog-detail-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-bottom: 76px;
}
.blog-detail-flex img {
    width: 50.44%;
    height: 499px;
    object-fit: cover;
    border-radius: 36px;
}
.blog-detail-flex .left {
    width: calc(100% - 57.45%);
    max-width: calc(100% - 57.45%);
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    padding: 30px 0 60px;
}
.blog-detail-flex .left span {background:var(--red-color);width: max-content;padding: 10px 15px;margin-bottom: 10px;color: #fff;font-weight: 600;border-radius: 5px;font-size: 15px;}
.blog-detail-flex .left h2 {
    font-size: 48px;
    color: var(--black-color);
    line-height: 65px;
    letter-spacing: -1.5px;
    font-weight: 600;
}
.blog-detail-flex .left p {
    font-size: 24px;
    color: #707070;
    line-height: 33px;
    font-weight: 500;
    max-width: 32rem;
}
.blog-detail-text p,.blog-detail-text a,.blog-detail-text li {
    color: #707070;
    line-height: 30px;
    font-size: 19px;
    font-weight: 400;
}
.blog-detail-text ul {
    margin-left: 20px
}
.blog-detail-text li {
    list-style: disc;
}
.blog-detail-text h2 {
    color: #707070;
    line-height: 27px;
    font-size: 20px;
    font-weight: 400;
    margin-top: 25px;
    font-weight: 500;
}
.blog-detail-text h3 {
    color: #707070;
    line-height: 27px;
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    font-weight: 500;
}
.other-blogs {
    margin-bottom: 110px;
}
.other-blogs-bg {
    background: #E5E8EF;
    border-radius: 32px;
    padding: 68px 70px;
}
.other-blogs .blog {
    margin-left: 0;
    margin-right: 30px;
}
.other-blogs h2 {
    text-align: center;
    color: var(--black-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
}
.category-flex,.product-list-flex {
    display: flex;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
}
.category-flex .product,.product-list-flex .product {
    border: 1px solid #D1D1D1;
}

.title {
    font-size: 13px;
    color: #707070;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.technic-table {
    margin-top: 60px;
    max-height: calc(100% - 220px);
    overflow: auto;
}
.technic-table::-webkit-scrollbar {
    width: 0px;height:0;
} 
.technic-table ul {
    margin-left: 20px;
}
.technic-table ul li,.technic-table p {
    list-style: disc;
    font-size: 18px;
    color: #707070;
    line-height: 29px;
}
.product-detail-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.product-detail-flex .left{
   width:48%;
}
.product-detail-img {
    border-radius: 32px;
    background: #fff;
    padding-right: 12px;
    align-items: center;
    transform: translateY(-160px);
    text-align: center;
}
.large-img {
    border-radius: 32px;
    height: 46vh;
    object-fit: contain;
    max-width: 100%;
    margin-bottom: 60px;
}
.product-detail-thumbnail img {
    border: 1px solid var(--soft-gray);
    border-radius: 10px;
    aspect-ratio: 4/3;
    object-fit: cover;
    max-width: 100%;
    padding: 10px;
}
.product-detail-thumbnail img:hover,.product-detail-thumbnail img.active {
    border-color: var(--red-color);
    cursor: pointer;
}
.product-detail h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    color: var(--black-color);
}
.product-detail h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #707070;
}
.product-detail .left p {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: var(--black-color);
    max-width: 77%;
}
.other-product-slider .slick-slide {
    margin: 0 15px;
}
.other-product {
    margin-bottom: 110px;
    margin-top: 165px;
}
.other-product h3 {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 70px;
    letter-spacing: -1.5px;
    text-align: center;
}
.product-slider-dots {
    margin-top: 55px;
}
.product-slider-dots .slick-dots {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}
.product-slider-dots .slick-dots li {
    position: relative;
    display: inline-block;
    height: 3px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.product-slider-dots .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    background: transparent;
    border: none;
}
.product-slider-dots .slick-dots li button:before {
    content: "";
    width: 48px;
    background: #002561;
    height: 4px;
    border: none;
    border-radius: 20px;
    opacity: .2;
    display: block;
}
.product-slider-dots .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #002561;
}
.counter {
    min-height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-bottom: 2px solid var(--red-color);
    justify-content: center;
    width: 50%;
}
.counter h4 {
    font-size: 27px;
    color: var(--black-color);
    white-space: nowrap;
}
.counter .count {
    font-size: 75px;
    color: var(--red-color);
    font-weight: 700;
}
.counter .count span {
    font-size: 80px;
    color: var(--black-color);
    font-weight: 700;
}
.genel-form-content .form .form-input {
    width: calc(100% / 3 - 20px);
    height: 60px;
}
.genel-form-content .form .form-text {
    width: calc(100% - calc(100% / 3 - -10px));
    height: 60px;
}
.genel-form-content .form .form-text textarea {
    min-height: 100%;
}
.genel-form-content form {
    display: flex;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin-top: 35px;
    justify-content: space-between;
}
form .policy {
    width: calc(100% / 3 - 20px);
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    padding-left: 0;
    min-height: 27px;
    margin-bottom: 45px;
}
.form .policy input {
    width: 0px;
    height: 0px;
}
.form .policy label {
    display: flex;
    padding-left: 36px;
    opacity: .8;
    height: 100%;
    z-index: 9;
    color: #707070;
    font-size: 14px;
}
.form .policy:after {
    content: "\e80d";
    font-family: "ozduman";
    position: absolute;
    left: 0px;
    top: 0;
    width: 36px;
    height: 36px;
    color: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    opacity: 0;
    font-size: 20px;
}
.form .policy:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    border: 2px solid #707070;
    border-radius: 5px;
}
.form .policy:has(input:valid):after {
    opacity: 1;
}
.g-btn {
    border: none;
    background: var(--red-color);
    padding: 12px 36px 12px;
    color: #fff;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100% );
    width: max-content;
    font-size: 13px;
    letter-spacing: .1px;
    cursor: pointer;
}
.d-1024-block, .d-768-block, .radiusdijital-mobile, .d-800-block, .d-1200-block {
    display: none;
}
.menu-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    height: 100%;
    padding: 35px 40px 40px 40px;
    width: 420px;
    overflow: auto;
    transition: .3s;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
}
.form .form-input label, .form .form-text label {
    display: none;
}
 .overlay {z-index: 11; position: fixed; inset: 0; background: var(--overlay); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
    .overlay.open { opacity: 1; pointer-events: auto; }
    .drawer {z-index: 12; position: fixed; inset-block: 0; inset-inline-end: 0; width: var(--drawer-w); background: var(--panel); color: var(--text); box-shadow: var(--shadow); transform: translateX(110%); transition: transform .28s cubic-bezier(.2,.8,.2,1); display: grid; grid-template-rows: auto 1fr auto; }
    .drawer.open { transform: translateX(0); }
    .drawer h3 { font-size: 18px; margin: 0; font-weight: 700; letter-spacing: .2px; }
    .icon-btn {border: 0;background: var(--default-color);padding: 13px 18px;border-radius: 10px;cursor: pointer;color: #fff;}
   .searchbar { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 16px 18px; }
    .searchbar input { width: 100%; font-size: 16px; padding: 12px 14px; border-radius: 12px; border: 1px solid #e5e7eb; outline: none; }
    .searchbar input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(37,99,235,.15); }
    .searchbar button { background: var(--accent); color: white; border: 0; padding: 12px 16px; border-radius: 12px; cursor: pointer; font-weight: 600; }
    .drawer .content { padding: 8px 18px 18px; overflow: auto; }
    .section-title { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin: 12px 0 8px; }
    .chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip { background: var(--chip); color: var(--chip-text); border-radius: 999px; padding: 8px 12px; font-size: 14px; border: 1px solid #e5e7eb; cursor: pointer; }
    .chip:hover { background: #eef2f7; }
    .chip .x { margin-left: 6px; opacity: .6; }
.drawer-footer { border-top: 1px solid #eef2f7; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }
kbd {  border: 1px solid #e5e7eb; border-bottom-width: 2px; border-radius: 6px; padding: 2px 6px; background: #f9fafb; color: #374151; font-size: 12px; }
.youtube-card {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: var(--black-color);
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
}
.youtube-card + h6{
    font-size: 16px;
    color:var(--black-color);
    font-weight: 500;
}
.youtube-card img,
.youtube-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.youtube-card img {
    object-fit: cover;
    z-index: 1;
}

.youtube-card iframe {
    border: 0;
    display: none;
    z-index: 2;
}
.document .item{color: var(--black-color);border: 1px solid var(--gray-color);border-radius: 15px;width: calc(100% / 3 - 25px);}
.document a{color: var(--black-color);display: flex;align-items: center;gap: 25px;font-size: 18px;font-weight: 600;margin-bottom: 0;padding: 60px;}
.document a i{color: var(--red-color);font-size: 76px;}
.column-2{
    columns: 2;
    column-gap: 50px;
    }
    .table{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 440px;
  direction: rtl;
  }

table {
  width: 100%;
  table-layout: auto; /* otomatik dağıtsın */
  border-collapse: collapse;
  direction: ltr;
}
 table tr {
        height: 55px;
        text-align: center;
    }
  table tr:nth-child(1) {
        background-color: var(--black-color);
        color: #fff;
    }
 table tr:nth-child(2n+0) {
        background-color: #eee ;
        color: var(--black-color);
    }

    table tr td {
        font-size: 13px;
        font-weight: 500;
        padding: 0 6px
    }
table th:first-child,
table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 3;
  min-width: 180px;
  width: max-content;
}

table th:nth-child(2),
table td:nth-child(2) {
  position: sticky;
  left: 180px; /* 1. sütun genişliği kadar */
  background: #fff;
  z-index: 3;
  min-width: 70px;
}
table th:not(:nth-child(-n+2)),
table td:not(:nth-child(-n+2)) {
  text-align: center;
  white-space: nowrap;
}
#text-container{font-weight: 600;transform: scaleX(1.02);color: #e5e8ef;line-height: 0.6;}
.home-group .o-hidden{display: flex;
    overflow: hidden;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    align-items: end;
    justify-content: center;}
.home-group{background: #2c2f31;padding-top: 90px;margin-top: 150px;position: relative;width: 100%;}
.home-group p{text-align:center;color:#fff;font-size:36px;font-weight:300;max-width:40rem;margin: 0 auto 0%;}
.overlay-img{display:flex;justify-content:space-between;align-items: end;transform: translateY(33%);padding: 0 9%;margin-top: -4%;}
.overlay-img img{min-width: 40%;object-fit:contain;max-width: 50%;}
.home-media {
    position: relative;
    padding-top: 0;
    margin-bottom: 95px;
}
.home-media .home-media-content {
    padding: 45px;
    background: #f8f8f8;
    position: relative;
    z-index: 9;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    gap: 30px;
    transform: translateY(-250px);
    margin-bottom: -200px;
}
.home-media .home-media-content .home-katalog {
    width: 42%;
    background: #fff;
    border-radius: 15px;
    padding: 50px 0px 0 60px;
}
.home-media .home-media-content .home-katalog h3 {
    color: #231f20;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 500;
}
.home-media .home-media-content .home-katalog p {
    color: #707070;
    max-width: 18rem;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
}
.home-media .home-media-content .home-katalog a {
    color: #231f20;
    font-size: 16px;
    font-weight: 500;
}
.home-media .home-media-content .home-katalog img {
    margin-top: 70px;
    transform: translateX(21px);
}
.home-media .home-media-content .right {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.home-media .home-media-content .right .media-gallery,.home-media .home-media-content .right .home-news {
    height: 50%;
    background: #fff;
    padding: 30px 30px 30px 60px;
    border-radius: 15px;
    position: relative;
}
.home-media .home-media-content .home-news a {
    color: #231f20;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 10;
}
.home-media .home-media-content .home-news .top span {
     color: #707070;
    font-size: 14px;
    line-height:18px;
    font-weight: 500;
    margin-bottom: 10px;
    display:flex;
}
.home-media .home-media-content .home-news h4 {
    color: var(--black-color);
    font-size: 22px;
    line-height:32px;
    font-weight: 600;
    margin-bottom: 10px;
}
.home-media .home-media-content .home-news p {
    color: #707070;
    font-size: 16px;
    line-height:24px;
    font-weight: 300;
    margin-bottom: 30px;
    max-width:90%
}
.home-media .home-media-content .news-slider  {
    height: 100%;
}
.home-media .home-media-content .home-news .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.news-slider-dots {top: initial !important;bottom: 30px !important;right: 30px;left: initial !important;text-align: right;width: max-content !important;}
.news-slider-dots .swiper-pagination-bullet {
    background: var(--black-color);
}
.news-slider-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--red-color);
}
.home-media .home-media-content .right .media-gallery {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.home-media .home-media-content .right .media-gallery .left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-media .home-media-content .right .media-gallery .left h4 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 500;
}
.home-media .home-media-content .right .media-gallery .left p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #707070;
}
.home-media .home-media-content .right .media-gallery img {
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
    width: initial;
}
.home-media .home-media-content .right .media-gallery i{
    position: absolute;
    top: 50%;
    left: 0;
    color: var(--red-color);
    background: #fff;
    width: 75px;
    height: 75px;
    border-radius: 75px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    border: 1px solid var(--red-color);
}
.home-media .home-media-content .right .media-gallery .left a {
    color: #231f20;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 10;
}
.contribution{background-color: rgb(44 47 49);padding: 175px 0 375px;position: relative;}
.contribution img.bg-img{position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 2;}
.contribution:after {background-color: var(--black-color);height:100%;position:absolute;content:"";left:0;width: 100%;top: 0;z-index: 2;opacity: .85;}
.contribution .content{position:relative;z-index:3;text-align:center;}
.contribution .content .media-counts{display:flex;justify-content:center;gap: 40px;}
.contribution .content .media-count{display:flex;flex-direction:column;color:#fff;gap:15px;font-size: 24px;flex: 1;border-bottom: 2px solid;padding-bottom: 40px;}
.contribution .content .media-count img{height: 170px;object-fit:contain;width: max-content;margin: 0 auto 25px;background: rgb(255 255 255 / 10%);padding: 30px;border-radius: 15px;aspect-ratio: 1/1;}
.contribution .content h4{color:#fff;font-size: 40px;margin-bottom: 120px;}
.contribution .content .media-count span{font-weight:600;font-size: 28px;}
.tecnic-detail h5 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    color: var(--red-color);
}
.tecnic-detail-flex{
    padding: 70px 4vw;
    border-radius: 20px;
    background: #F8F8F8;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 90px;
    margin-bottom: 90px;
}
.tecnic-detail-flex .w-60{
   width: 60%;
}
.tecnic-detail-flex .w-40{
   width: 40%;
}
.tecnic-detail-flex .dokuman {
    margin-bottom: 15px;
    background: #fff;
    padding: 26px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}
.tecnic-detail-flex .dokuman h6 {
   max-width: 14rem;
   font-size: 18px;
   margin-bottom: 0;
}
.tecnic-detail-flex a:not(.video-thumb) {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 9px;
    padding: 21px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.tecnic-detail-flex .dokuman a span {z-index: 2;}
.tecnic-detail-flex .dokuman a:after {
    content: "";
    background: var(--red-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 15px;
    transition: all .5s;
    transform: scaleX(1);
}
.tecnic-detail-flex .video-wrapper{position: relative;}
.tecnic-detail-flex .video-wrapper  img{border-radius: 15px;cursor: pointer;}
.tecnic-detail-flex .video-wrapper  i{position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);background: var(--red-color);width: 60px;height: 45px;border-radius: 10px;font-size: 50px;display: flex;align-items: center;justify-content: center;color: var(--white-color);cursor: pointer;}
.product-bottom .content{background:#E9E9E9;border-radius: 32px;display: flex;align-items: center;padding: 60px;transform: translateY(-50%);margin-bottom: -7%;justify-content: space-between;position: relative;}
.product-bottom .content h5{
    font-size: 48px;
    max-width: 30rem;
    margin-bottom: 18px;
}
.product-bottom .content p{
    max-width: 32rem;
    font-size: 18px;
    line-height: 26px;
}
.product-bottom .content .favicon{position:absolute;bottom:0;transform:translateY(50%);}
@media(max-width: 1700px) {
    .banner {
        width: calc(100% - 30px);
    }
    .banner>picture img {
        min-height: 400px;
        object-fit: cover;
        object-position: right;
    }
    .blog h4 {
        font-size: 19px;
    }
    .slider .content {
    left: 40px;
}
}
@media(max-width: 1550px) {
    .product-detail-img {
        min-width: 600px;
    }
    .product-detail h1 {
        margin-bottom: 35px;
        max-width: 96%;
        min-height: 100px;
    }
    .main {
    margin: 0 45px;
}
}
@media(max-width: 1500px) {
    :root {
        --container-width: calc(100% - 90px);
        --container-width-2: calc(100% - 60px);
    }
    .site-footer {
        margin: 0 30px 30px;
    }
    .home-product {
        padding-top: 110px;
    }
    .page-news .blog {
        width: calc(100% / 3 - 20px);
    }
    .page-news .blog .blog-img:after {
        height: 47%;
    }
    .blog-detail-flex .left h1 {
        font-size: 36px;
        line-height: 48px;
    }
}
@media(max-width: 1366px) {
    .site-footer .w-50 {
        width: 60%;
    }
    .site-footer .w-50:not(.right) {
        width: 40%;
    }
    .site-footer .footer-slogan {
        font-size: 24px;
        line-height: 32px;
        max-width: 25rem;
    }
    .about-flex h2 {
        font-size: 48px;
        line-height: 60px;
    }
    .site-footer .logo img {
        height: 48px;
    }
    .site-footer .logo {
        align-items: start;
        gap: 4px;
        flex-direction: column;
    }
    .site-footer .logo h6 {
        max-width: 100%;
    }
    .product-detail-img {
        min-width: 600px;
    }
    .banner-product>picture img {
        min-height: 510px;
    }
    .page.product-detail {
        margin-top: 20px;
    }
    .page-news .blog .blog-img:after {
        height: 50%;
    }
    .main {
        height: initial;
        flex-direction: column;
    }
    .main .right {
    flex-direction: row;
}
.main .right .right-item:first-child {
    height: 400px;
    width: 60%;
}
.main .right .right-item:last-child {
    height: 400px;
      width: 40%;
}
.scroll-indicator {
    bottom: 30px;
}
.scroll-text {
    color: #fff;
}
}
@media(max-width: 1300px) {
    .product-box > div {
        width: 160px;
    }
    .page-news .blog .blog-img:after {
        height: 55%;
    }
}
@media(max-width: 1200px) {
    .product-detail-img {
        min-width: 525px;
    }
    .blog-detail-flex {
        margin-bottom: 15px;
        flex-direction: column;
    }
    .blog-detail-flex img {
        width: 100%;
    }
    .blog-detail-flex .left {
        width: 100%;
        max-width: 100%;
        padding: 0 0 0px;
    }
    .blog-detail-flex .left p {
        max-width: 100%;
    }
    .d-1200-block {
        display: block;
    }
    .d-1200-none {
        display: none;
    }
    .blog-detail-flex .left h1 {
        margin-bottom: 48px;
    }
    .blog-detail-flex p {
        font-size: 24px;
        color: #707070;
        line-height: 33px;
        font-weight: 500;
        margin-top: 60px;
    }
}
@media(max-width: 1170px) {
    .product {
        width: 300px;
    }
    .product .product-img {
        margin-bottom: 15px;
    }
    .home-about-left .title2 {
        font-size: 32px;
        line-height: 40px;
    }
    .banner-title {
        width: calc(100% - 410px)
    }
    .product-detail h1 {
        margin-bottom: 30px;
        min-height: 75px;
        font-size: 38px;
    }
    .page-news .blog {
        width: calc(100% / 2 - 15px);
    }
    .page-news .blog .content {
        height: initial;
    }
    .page-news .blog .blog-img:after {
        height: 123px;
        bottom: initial;
        top: calc(100% - 100px);
    }
    header .menu li:first-child {
  display: none;
}
header .menu li {
    margin-left: 21px;
}
}
@media(max-width: 1100px) {
    .genel-form-content .form .form-input {
    width: calc(100% / 2 - 15px);
}
.genel-form-content .form .form-text {
    width: 100%;
    height: 60px;
}
.genel-form-content form {
    max-width: 95%;
}
    .product-detail-img {
        flex-direction: column;
    }
    .product-detail-thumbnail {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 23px;
    }
    .product-detail-img {
        min-width: 430px;
        margin-top: 30px;
    }
.technic-table {
    margin-top: 30px;
}
    .product-detail h1 {
        margin-bottom: 3px;
        min-height: 80px;
        font-size: 36px;
        line-height: 49px;
    }
    .banner-product>picture img {
        min-height: 460px;
    }
    .page.product-detail {
        margin-bottom: 110px;
        margin-top: 20px;
    }
    .product-detail-flex {
   flex-direction: column-reverse;
   gap: 30px;
}
.product-detail-flex .left {
    width:100%;
}
.product-detail-flex .w-50 {
    width:100%;
}
.large-img {
    width: 100%;
    border-radius: 32px;
    height: initial;
    object-fit: cover;
}
}
@media(max-width: 1024px) {
    .about-flex > div {
        width: 100%;
        text-align: left;
    }
    .home-about-left {
        gap: 10px;
        flex-direction: column;
    }
    .d-1024-block {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 40px;
    }
    .d-1024-none {
        display: none;
    }
    .home-banner-content .content {
        left: initial;
        right: 30px;
    }
    .services .service img {
        border-radius: 36px;
        max-width: initial;
        width: 100% ;
    }
    .services .service .content {
        width: 100%;
    }
    .services .service .content p {
        margin-bottom: 15px;
    }
    .services .service .content .btn {
        padding: 16px 0px;
    }
    .product-detail-thumbnail {
        flex-direction: column;
    }
    .product-detail-img {
        flex-direction: row;
    }
    .product-detail-img {
        width: 100%;
        min-width: calc(100vw - 120px);
    }
    .technic-table {
        margin-top: 30px;
    }
    .product-detail-flex .w-50 {
        width: 100%;
    }
    .product-box {
        border: 1px solid #D1D1D1;
        margin-top: 50px;
        width: 100%;
    }
    .product-box > div {
        width: calc(100% / 3);
        max-width: initial;
    }
}
@media(max-width: 991px) {
    .open-menu .menu-wrapper {
        transform: translateX(0);
        opacity: 1;
        visibility: visible
    }
    .menu-wrapper .close-button {
        text-align: right;
        margin-bottom: 0;
        cursor: pointer;
        display: flex;
        justify-content: end;
    }
    .toggle-menu {
        color: #fff;
        background: var(--red-color);
        height: 48px;
        width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }
    .menu-wrapper .menu>ul {
        list-style: none;
        padding: 0;
        margin: 34px 0 0;
        font-size: 18px
    }
    .menu-wrapper .menu>ul>li>a,.menu-wrapper .menu>ul>li>span {
        color: var(--primary-color);
        display: block;
        padding: 10px 0;
        font-weight: 500;
        cursor: pointer
    }
    .menu-wrapper .menu>ul>li>ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none
    }
    .menu-wrapper .icon-home {
        color: var(--secondary-color);
    }
    .menu-wrapper .menu>ul>li>ul>li a {
        padding: 10px 0;
        display: flex;
        color: var(--primary-color);
        font-size: 16px;
        align-items: center;
    }
    .menu-wrapper .menu>ul>li>ul>li a:before {
        content: "\e800";
        font-family: 'ozduman';
        margin-right: 10px;
        font-size: 10px
    }
    header .menu {
        display: none;
    }
    header .logo img {
        height: 70px;
        width: initial;
    }
    .menu-btn {
        cursor: pointer;
        display: flex;
        height: 48px;
        width: 48px;
        background: var(--red-color);
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 5px;
    }
    .site-footer .center .right {
        padding-left: 30px;
    }
   
    .contact-flex {
        flex-direction: column;
        gap: 40px;
    }
    .contact-flex .w-50 {
        width: 100%;
    }
    .product-overlay {
        right: 5%;
    }
}
@media(max-width: 890px) {
    .banner .bottom {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .banner-title {
        width: 100%;
    }
}
@media(max-width: 800px) {
    .home-banner-content .content {
        left: 0;
        justify-content: end;
        height: 100%;
        align-items: center;
        width: 100%;
        padding-bottom: 50px;
        text-align: center;
    }
    .breadcrumb-flex {
        justify-content: start;
        align-items: start;
    }
    .breadcrumb ul {
        justify-content: start;
    }
    .referances-flex .referance {
        width: 45%;
        min-width: initial;
    }
    .referances-flex .referance .firma {
        bottom: 2px;
        font-size: 13px;
    }
   
    .form .w-recaptcha {
        width: 100%;
    }
    .form-group.form-file-group {
        padding: 30px 30px 30px 60px;
    }
    .form-group.form-file-group:before {
        left: 20px;
    }
    .d-800-block {
        display: block;
    }
    .d-800-block p {
        display: block;
        margin-bottom: 50px;
    }
    
    .blog-detail-flex .left h1 {
        text-align: center;
    }
}
@media(max-width: 768px) {
       .about-flex > div {
        flex-direction: column;
    }
    .home-about-flex {
        flex-direction: column;
        padding-top: 70px;
    }
    .home-about-flex > .home-about-text {
        width: 100%;
    }
    .d-768-none {
        display: none;
    }
    .d-768-block {
        display: flex;
    }
    .blog-slider-dots .slick-dots {
        justify-content: center;
        margin: 25px auto 0;
    }
    .product-overlay {
        left: 0;
        top: initial;
        bottom: 50px;
        justify-content: center;
        width: 100%;
        align-items: end;
    }
    .product-detail h1 {
        text-align: center;
    }
    .breadcrumb ul {
        flex-wrap: wrap;
    }
    .page-news .blog {
        width: 100%;
    }
        .main .right {
        flex-direction: column;
    }
        .main .right .right-item:first-child,.main .right .right-item:last-child {
       width: 100%;
       height: 300px;
    }
}
@media(max-width: 600px) {
    :root {
        --container-width: calc(100% - 30px);
        --container-width-2: 100%;
    }
    .main {
        margin: 0 15px;
    }
    .site-footer {
        margin: 0 10px 15px;
        text-align: center;
        border-radius: 36px;
    }
    .banner {
        width: calc(100% - 0px);
    }
    .menu-wrapper {
        padding: 35px 24px 40px 24px;
    }
    .contact-buttons {
        top: 55%;
    }
    .scroll-text d {
        display: none;
    }
    .site-footer .center {
        flex-direction: column;
    }
    .site-footer .center .right {
        padding-left: 0px;
        flex-direction: column-reverse;
        gap: 30px;
        padding-bottom: 0px;
    }
    .site-footer .bottom {
        flex-direction: column-reverse;
    }
    .radiusdijital {
        display: none;
    }
    .site-footer .bottom ul {
        flex-direction: column;
    }
    .site-footer .w-50:not(.right),.site-footer .w-50 {
        width: 100%;
    }
    .site-footer .icon-arrow-up {
        display: none;
    }
    .home-product-top {
        margin-bottom: 45px;
        flex-direction: column;
        gap: 25px;
    }
    .home-product-text1 {
        margin-bottom: 15px;
        font-size: 14px;
    }
    .site-footer .center .right,.site-footer .bottom .right {
        align-items: center;
        border-left: 0px solid rgb(255 255 255 / 25%);
    }
    .site-footer .logo {
        align-items: center;
        margin-bottom: 30px;
    }
    .site-footer .social {
        justify-content: center;
        margin-bottom: 30px;
    }
    .site-footer .footer-slogan {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .contact-info {
        align-items: center;
    }
    .radiusdijital-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }
    .blog {
        max-width: 400px;
        width: calc(100vw - 60px);
        margin-left: 0;
        margin-right: 26px;
    }
    .blog .blog-img:after {
        height: 55%;
    }
    .blog .content {
        padding: 30px 20px;
    }
    .slider .content .text1 {
        font-size: 14px;
        line-height: 20px;
    }
    .slider .content .text2 {
        font-size: 29px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    .slider .content {
        bottom: 14%;
    }
    .home-product-text2 {
        line-height: 49px;
        font-size: 36px;
        text-align: center;
    }
    .home-banner-content h4 {
        font-size: 14px;
        line-height: 19px;
        max-width: 19rem;
    }
    .home-banner-content h5 {
        font-size: 24px;
        line-height: 32px;
        max-width: 19rem;
    }
    .home-banner .btn-contact-blue {
        font-size: 12px;
        font-weight: 400;
        padding: 19px 10px;
    }
    .home-banner .btn-contact-blue i {
        font-size: 19px;
    }
    .home-banner-content {
        border-radius: 36px;
    }
    .home-product {
        border-radius: 0 0 36px 36px;
    }
    .about-flex h2 {
        font-size: 32px;
        line-height: 44px;
    }
    .about-flex p strong {
        font-size: 20px;
        line-height: 27px;
    }
    .about-flex p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .old-page {
        margin-top: 80px;
    }
    .old-page .w-33 {
        padding: 42px 35px;
    }
    .old-page .w-33 > i {
        width: 72px;
        font-size: 72px;
        margin: 0;
    }
    .old-page .w-33 {
        min-width: 100%;
        gap: 30px;
    }
    .page-quality p {
        font-size: 20px;
        line-height: 27px;
    }
    .breadcrumb h1 {
        font-size: 36px;
    }
    .form .form-input {
        width: 100%;
    }
    .contact-maps #map {
        border-radius: 36px;
    }
    .breadcrumb ul li,.breadcrumb ul li a {
        font-size: 11px;
    }
    .product-overlay-center {
        width: calc(100% - 50px);
        min-width: initial;
    }
    .product-overlay h3 {
        font-size: 20px;
    }
    .breadcrumb h1 {
        text-align: center;
    }
    .product-list .product,.category .product {
        width: 100%;
        padding: 15px 0px;
    }
    .banner-product>picture img {
        height: auto;
        min-height: auto;
    }
    .product-detail h1 {
        text-align: center;
        margin-top: 15px;
    }
    .product-detail-img {
        min-width: 100%;
        flex-direction: column;
        border-radius: 36px;
    }
    .product-detail-thumbnail {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    .product-box {
        padding: 21px;
        flex-direction: column;
    }
    .product-box > div {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #D1D1D1;
        margin-bottom: 21px;
        padding-bottom: 20px;
    }
    .product-box > div:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .title {
        margin-bottom: 8px;
    }
    .home-about {
        overflow: hidden;
    }
    .home-product-dots .slick-dots {
        justify-content: center;
    }
    .blog-detail-flex img {
        height: initial;
    }
    .home-about-flex > div {
    width: 100%;
    flex-direction: column;
}
.counter {
    width: 100%;
    min-height: 150px;
}
    .home-about-left .title2 {
        font-size: 24px;
        line-height: 34px;
    }
        .home-about-flex {
        padding-top: 0;
    }
    .counter h4 {
    font-size: 20px;
}
.home-product {
    margin-top: 50px;
}
.banner {
    min-height: 255px;
}
}
