:root{
    --color1:#f1b500;
    --color2:#282828;
    --color3:#d3172e;
    --color4:#202327;
    --color5:#ffffff;
}
*{
    box-sizing: border-box;
    font-family: 'Poppins';
    outline: none !important; 
}
body{
    background-color: #F1F1F1;
}
.maxWidth{
    max-width: 1530px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
   background:#ccc;  
}
::-webkit-scrollbar-thumb {
    background: var(--color1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
     border-radius: 10px;
}

.wpml-ls-statics-footer,.wpml-ls, .wpml-ls-legacy-list-horizontal, .otgs-development-site-front-end{
    display: none!important;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background:var(--color1);
    z-index: 999;
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:white;
    animation: spin 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:before, #loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:white;
}
#loader:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mobile-sticky{
    width: 100%; 
    position: fixed;
    z-index: 741;
    background-color:var(--color1);
    top: 0px !important;
    animation: slideDown 0.35s ease-out;
}
.mobil-hamburger-menu-btn{
    position: absolute;
    right: 10px;
    top: 30px;
    font-size: 30px;
    > i{
        color: var(--color1) !important;
    }
}
.offcanvas{
    z-index:99999;
    background-color:var(--color1) !important;
}
.btnClose{
    background-color: transparent !important;
    padding: 2rem;
    border: none !important;
    font-size: 30px;
    margin-left: 80%;
    margin-bottom: 1rem;
    margin-top: 1rem;
    >i {
        color: white !important;
        font-size: 30px;
    }
}
.mobil-menu{
    background-color:white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.offcanvas-social-media > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding-top: 0rem;
    margin-left: -2rem;
}
.offcanvas-social-media > ul > li{
    padding-right: 2rem;
}
.offcanvas-social-media > ul > li > a > i{
    color: var(--color1) !important;
    font-size: 20px;
}
.offcanvas-header{
   padding:0rem !important;
}
.offcanvas-body {
    scrollbar-color:#f0f0f0  #f0f0f0;
    scrollbar-width: thin;
}
.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}
.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--color2); 
    border-radius: 10px; 
}
.offcanvas-body::-webkit-scrollbar-track {
    background-color: #f0f0f0; 
}
.offcanvas-site-logo > a > img{
    filter: brightness(0) invert(1);
}
.accordion {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border-radius: 4px;
    list-style-type: none;
    margin-left: -4rem;
    > li {
        padding-bottom: .5rem;
    }
    > .menu-item {
       padding-bottom: 1rem;
    }
    > .menu-item > a{
        color: white !important;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 18px;
    }
}
.accordion-submenu{
    display: none;
    margin-left: .5rem;
    margin-top: 1rem;
    list-style-type: none;
    >li{
        padding-bottom: 1rem;
    }
    > li > a{
    font-size: 16px;
    color: white !important;
    padding: 7px 15px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 400;
    }
}
.accordion .link {
   cursor: pointer;
   display: block;
   padding: 0px 15px 15px 42px;
   color:white !important;
   font-size: 16px;
   font-weight: 600;
   position: relative;
   transition: all 0.4s ease;
   text-decoration: none;
   text-transform: uppercase;
}
.accordion li:last-child .link {
   border-bottom: 0;
}
.accordion li i {
   position: absolute;
   top: 16px;
   left: 12px;
   font-size: 18px;
   color: #595959;
   transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
    right: -70px;
    left: auto;
    font-size: 18px;
    top: 5px;
    background-color: white !important;
    color: var(--color1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
    top: -20px;
}
.accordion li.open .link {
   color: white;
}
.accordion li.open i {
    color: var(--color1);
}
.accordion li.open i.fa-chevron-down {
   transform: rotate(180deg);
}
.mobil-web-site-logo > a > img{
    width:150px;
    object-fit: cover;
}
.language-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    > li {
        > a{
            
            > img{
                width: 25px;
            }
        }
    }
}
#language-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -1.4rem;
    > li{
        padding-right: .5rem;
        > a{
            color: white;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
        }
    }
}
.site-navigation{
  background: url('../images/banner/header-bg.jpg');
  background-position: 50% 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: 666;
  box-shadow: 13px 12px 19px 0px rgba(0,0,0,0.1);
  left: 30px;
  right: 30px;
  position: absolute;
  top: 30px;
  border: 1px solid #f1f0f0;
  border-radius: 10px;
}
.stickyHeader{
  position: fixed;
  left:0px;
  right: 0px;
  top: 0px;
  background-color: white;
  z-index: 666;
  margin-top: 0rem;
  border-radius: 0px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  border-bottom: 2px solid #ccc;
  animation: slideDown 0.35s ease-out;
}
@keyframes slideDown{
    0% {
    transform: translateY(-100%);
}
100% {
    transform: translateY(0);
}
}
.site-navigation-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content:center;
    list-style-type: none;
    margin-top: 2.7rem;
    > li {
        padding-right: 3rem;
        >a {
            color: var(--color2);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            padding: 58px 0px;
             &::after{
        content: "";
        display: block;
        height: 5px;
        background:var(--color1);
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 40%;
    }
        }
    }
}
.web-site-logo{
    padding-top: .3rem;
    padding-bottom: .3rem;
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    > a > img{
        width:175px;
        object-fit: cover;
    }
}
.language-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    margin-top: 1.5rem;
    > li {
        padding-right: .5rem;
         >a {
            color: white;
            font-size:16px;
            font-weight: 600;
            text-decoration: none;
             > img{
                width: 23px;
             }
        }
    }
}
.sub-menu{
    display: none;
    position: absolute;
    margin-top: 2.8rem;
    z-index: 333;
    min-width: 325px;
    background-color:var(--color1);
    animation: downOut 300ms ease-in-out forwards;
    list-style-type: none;
    padding-left: 0rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.sub-menu > li{
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: 4px solid white; 
}
.sub-menu > li:hover{
    color:white;
    >a {
        color: white !important; 
        text-decoration: none !important;
        display: block;
        font-size: 16px;
        font-weight: 400;
    }
}
.sub-menu > li > a{
    color: white !important;
    text-decoration: none !important;
}
.site-navigation li:hover > .sub-menu {
    display: block;
}
.children-sub-menu{
    display: none;
    position: absolute;
    z-index: 333;
    min-width: 325px;
    background-color:#9c1006bc;
    animation: downOut 300ms ease-in-out forwards;
    list-style-type: none;
    padding-left: 0rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    left: 325px;
    top: 0px;
}
.children-sub-menu > li{
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: 4px solid white; 
}
.children-sub-menu > li:hover{
    background-color: var(--color4);
    color:white;
    >a {
        background-color: white;
        color: var(--color1) !important; 
        text-decoration: none !important;
        display: block;
        font-size: 16px;
        font-weight: 600;
    }
}
.children-sub-menu > li > a{
    color: white !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 400;
}
.site-navigation li > .sub-menu > li:hover > .children-sub-menu{
    display: block;
}
.scrollup {
    width:55px;
    height: 55px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color:var(--color1);
    border: 1px solid transparent;
    border-radius: 10px;
    z-index: 882;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    }
    @keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    } 
.scrollup > i {
    color:white !important;
}
.site-navigation-lang-menu > ul{
    list-style-type:  none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 2.5rem;
}
.site-navigation-lang-menu > ul > li {
    padding-right: .7rem;
}
.site-navigation-lang-menu > ul > li > a > img{
    width: 25px;
}
/**********************************************************************************************************************************************/
.creative-parallax--slider {
    position: relative;
}
.creative-parallax--slider .f-slider-layer {
    position: relative;
}
.f-slider-layer{
    width: 100%;
}
.creative-parallax--slider .swiper-slide.swiper-slide-active:before {
    content: "";
    width: 475px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 3%;
    transform: translateX(-50%) skew(-20deg, 0deg);
    z-index: 1;
    opacity: .4;
    /*background-color:rgba(255, 255, 255, 0.486);*/
    animation-name: fadeInTwo;
    animation-duration: 2.3s;
    animation-delay: 0s;
}
.creative-parallax--slider .f-slider-layer img{
    width: 100%;
    height: 100vh;
    vertical-align: middle;
}
.creative-parallax--slider .f-slider-layer:before {
    content: "";
    background: #0000005b;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    display: none;
}
.creative-parallax--slider .f-slider-layer:after{
    background-color:var(--color3);
    content: "";
    width: 280px;
    height: 540px;
    position: absolute;
    top: 60%;
    right: 1.5%;
    transform: translate(-50%, -50%) skew(-20deg, 0deg);
    z-index: 1; 
    display: none;
}
.creative-parallax--slider .swiper-slide-active .f-slider-layer:after{
    animation-name: fadeInThree;
    animation-duration: 2.3s;
    animation-delay: 0s;
}
.creative-parallax--slider .f-slider-layer .f-slider-one-data{
    position: absolute;
    top: 37%;
    width: 40%;
    z-index: 9;
    transform: translateX(14%);
    text-align: initial;
}
.creative-parallax--slider .f-slider-one-data .h1{
    font-size: 70px;
    line-height: 70px;
    color: white;
    margin-bottom: 10px;
    margin-top: 0px;
    opacity: 0;  
    font-weight: 900;
    text-align: left !important;
    position: relative;
    right: 0px !important;
    > span{
        color: var(--color1);
        right: 0px !important;
    }
}
.creative-parallax--slider .swiper-slide-active .f-slider-one-data .h1{
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 1s;
}
.f-slider-layer .f-slider-one-data p{
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 55px;
    width: 100%;
    font-weight: 400;
    opacity: 0;
    padding-top: 2rem;
    left: 20px;
    position: absolute;

}
 .swiper-slide-active .f-slider-layer  .f-slider-one-data p{
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 1.5s;
}
.f-slider-layer .slide-btn{
    text-decoration: none;
    background-color: white;
    padding-left: 2rem;
    padding-right: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
    font-family:inherit;
    color: white;
    display: inline-flex;
    position: relative;
    font-weight: 400;
    transition: .3s ease-in-out;
    opacity: 0;  
    border-radius: 5px; 
    display: none;
}
 .swiper-slide-active .f-slider-layer .slide-btn{
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 2s;
    border-radius: 10px; 
}
.f-slider-layer .slide-btn:hover{
    background-color:var(--color1);
    color: #fff;
}
.f-slider-layer .slide-btn:after{
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: -2px;
    right: -32px;
    background: transparent;
    border-left: 0 solid transparent;
    border-right: 30px solid transparent;
}
.f-slider-layer .slide-btn i{
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .5s ease-in-out;
}
.f-slider-layer .slide-btn:hover i{
    color: var(--color2);
    width: 45px;
}
.f-slider-layer .slide-btn i:after{
    content: "";
    background: var(--color2);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: skew(-24deg, 0deg);
    transition: .5s ease-in-out;
}
.f-slider-layer .slide-btn:hover i:after{
    background-color: white;
}
.swiper-nav {
    position: absolute;
    bottom: 32%;
    right: 0%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.swiper-nav button{
    width: 60px;
    height: 80px;
    background: transparent;
    color: #fff;
    border: 0;
    position: relative;
    z-index: 0;
    transition: .3s ease-in-out;
    cursor: pointer;
}
.swiper-nav button:first-child{
    margin-right: 10px;
}
.swiper-nav button:before{
    content: "";
    width: 100%;
    height: 100%;
    background:white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 2px solid transparent !important;
    transform: skew(-23deg, 0deg);
    border-radius: 10px;
}
.swiper-nav-prev > i{
    color: var(--color1);
}
.swiper-nav-next > i {
     color: var(--color1); 
}
@keyframes fadeInThree {
    0% {
        opacity: 0;
    }
    40% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInTwo {
    0% {
        opacity: 0;
        transform: translateX(-50%) skew(-20deg, 0deg);
    }
    40% {
        opacity: 0;
        transform: translateX(-30%) skew(-20deg, 0deg);
    }
    100% {
        opacity: .4;
        transform: translateX(-50%) skew(-20deg, 0deg);
    }
}
@media (max-width: 1366px) {
    .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 60%;
        left: 5%;
        top: 50%;
    }
    .creative-parallax--slider .swiper-slide.swiper-slide-active:before{
        width: 265px;
    }
    .creative-parallax--slider .f-slider-layer:after {
        width: 185px;
        height: 75%;
        right: 6.5%;
        top: 50%;
    }
    .creative-parallax--slider .f-slider-one-data .h1 {
        font-size: 50px;
        line-height: 60px;
    }
}
.slider-mobil-img {
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .4;
    }
}
.slider-mobil-img > img{
    height:100%;
    width: 100%;
    object-fit: cover;
}
#owl-mobil-slider > .owl-nav{
    display: none;
}
#owl-mobil-slider > .owl-dots{
    position: relative;
    top: -175px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slider-content-title, .slider-content-text {
  opacity: 0; /* Başlangıçta görünmesin */
  animation-duration: .6s;
  animation-fill-mode: both;
}
.slider-animate .slider-content-title {
  animation-name: fadeInUp;
  animation-delay: 1s;
}
.slider-animate .slider-content-text  {
  animation-name: fadeInUp;
  animation-delay: 1s;
}
#owl-mobil-slider > .owl-nav > .owl-prev{
    width: 30px;
    height: 30px;
    background: transparent;
    color: var(--color1);
    border: 0;
    position: relative;
    z-index: 0;
    transition: .3s ease-in-out;
    cursor: pointer;
    &::before{
     content: "";
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 2px solid transparent !important;
    transform: skew(-23deg, 0deg);
    border-radius: 10px;
    }
}
#owl-mobil-slider > .owl-nav > .owl-next{
    width: 30px;
    height: 30px;
    background: transparent;
    color: var(--color1);
    border: 0;
    position: relative;
    z-index: 0;
    transition: .3s ease-in-out;
    cursor: pointer;
    &::before{
     content: "";
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 2px solid transparent !important;
    transform: skew(-23deg, 0deg);
    border-radius: 10px;
    }
}
/***************************************************************************/
.urun-gruplari{
    position: relative;
    z-index: 44;
    &::before{
        content: "";
        position: absolute;
        background: url('../images/banner/urunler.png');
        background-size: cover !important;
        background-position:center  !important;
        background-repeat: no-repeat !important;
        opacity: .1;
        width: 100%;
        height: 100%;
    }
}
.urun-gruplari-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    z-index: 55;
    position: relative;
}
.urun-gruplari-btn {
    padding-bottom: 2rem;
    > a{
        background-color: white;
        color: white;
        font-size: 16px;
        font-weight: 400;
        padding-left: 3rem;
        padding-right:3rem;
        text-decoration: none;
        padding-top: .6rem;
        padding-bottom: .6rem;
        border-radius:30px;
        border: 1px solid var(--color1);
        color: var(--color1);
    }
}
.urun-gruplari-title > h3{
    color: var(--color2);
    font-size: 30px;
    font-weight: 600;
    padding-top: .7rem;
}
#owl-references{
    margin-top: 1rem;
}
#owl-references > .owl-dots{
    display: none !important;
}
#owl-references > .owl-nav{
    display: block;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    position: relative;
    top:-325px;
}
#owl-references > .owl-nav > .owl-prev{
    background-color: white;
    border: 1px solid #f0eeee;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    > i {
        color: var(--color1);
        font-size: 18px;
    }
}
#owl-references > .owl-nav > .owl-next{
    background-color: white;
    border: 1px solid #f0eeee;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    > i {
        color: var(--color1);
        font-size: 18px;
    }
}
.product-item{
    background-color: var(--color1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}
.product-item-title > h3{
    color: white;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
} 
.owl-item > #item:nth-child(2)  {
    display: none !important;
}
#product-item-1{
  background-color: #3a60b7;
}
#product-item-2{
    background-color: var(--color1);
}
#product-item-3{
    background-color: #ff8025;
}
#product-item-4{
    background-color:#962f6c;
}
#product-item{
    background-color:#440098;
}
.product-item-img{
    overflow: hidden;
}
.product-item-img > img{
    height: 450px;
    width: 100%;
    object-fit: contain ;
    transition: transform .5s;
    transform: scale(1);
    &:hover{
        transform: scale(1.05);
    }
}
.urunler{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/*********************************************************************************************************/
.yararlar{
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    &:after {
      content: '';
      display: block;
      width: 200%;
      background: linear-gradient(90deg, black 50%, transparent 50%);
      background-size: 10% 1px;
      background-position: -50px;
      background-repeat: repeat-x;
      position: absolute;
      left: -10%;
      top: 40%;
      animation: line-slide 60s forwards infinite linear;
      z-index: 1;
    }
    &.swiper--bottom {
      &:after {
        animation-direction: reverse;
      }
    }
}
.swiper-wrapper{
    -webkit-transition-timing-function:linear!important;    transition-timing-function:linear!important; 
    position: relative;
}
.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    overflow: hidden;
    padding: 0;
    z-index: 1;
    text-shadow: 1px 1px 1px black;
    color: var(--color1);
    transition: .3s ease;
    &:hover{
         color: var(--color1);
    }
}
.swiper-slide span {
    color: var(--color1);
    position: relative;
    top: 15px;
    right: 13px;
    transition: .3s ease;
    font-size: 70px;
    &:hover{
        color: var(--color1);
    }
}
@keyframes line-slide {
    0% {
      background-position: -5% 0;
    }
    100% {
      background-position: 100% 0;
    }
}
/***********************************************************************************************************/
.kurumsal{
    padding-bottom: 5rem;
    position: relative;
    background: url('../images/banner/section-bg.png');
    background-position: left !important;
    background-size: cover !important;
    background-repeat:  no-repeat;
}
.who-we-are-one-leftbox{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    height: 100%;
    position: relative;
    background-image: url("../images/kurumsal/kurumsal.jpg");
}
.who-we-are-one-leftbox .fid-style-area {
    position: absolute;
    right: 0;
    width: auto;
    bottom: 0;
    max-width: 100%;
}
.pbminfotech-ele-fid-style-2 {
    position: relative;
}
.pbminfotech-ele-fid-style-2 .pbmit-fld-contents {
    border-radius: 30px;
    padding: 30px 75px 55px 50px;
    background-color:var(--color1);
}
.pbmit-bottom-left-corner {
    bottom: 0%;
    left: -30px;
    transform: none;
}
.pbmit-sticky-corner {
    width: 30px;
    height: 30px;
    position: absolute;
    transform: rotate(-90deg);
}
.pbmit-top-right-corner {
    top: -30px;
    right: 0%;
    transform: none;
}
.pbmit-sticky-corner {
    width: 30px;
    height: 30px;
    position: absolute;
    transform: rotate(-90deg);
}
.counter{
    display: flex;
    flex-direction: row;
}
.counter > .counting{
    font-size: 70px;
    font-weight: 600;
    color: white; 
}
.counter > span{
    color: white;
    font-size: 70px;
    font-weight: 600;
    position: relative;
    left: 10px;
    top: -5px;
 }
.kurumsal-content{
    padding-left: 2rem;
}
.kurumsal-content-btn{
    margin-bottom: 1.5rem;
}
.kurumsal-content-btn > a{
    background-color: white;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-top: .6rem;
    padding-bottom: .6rem;
    border-radius: 30px;
    color: var(--color1);
    border: 1px solid var(--color1);
    font-size: 14px;
    font-weight: 400;
    &:hover{
        background-color: white !important;
        color: var(--color1) !important;
         border: 1px solid var(--color1);
    }
}
.kurumsal-content-title > h1{
    color: var(--color1);
    font-size: 45px;
    font-weight: 900;
    padding-bottom: 1rem;
    text-shadow: 1px 1px 1px white;
}
.kurumsal-content-text > p {
    color: var(--color2);
    font-size: 14px;
    font-weight: 400;
}
.pbmit-fld-wrap{
    padding-left: 1rem;
    padding-top: 1rem;
}
.pbmit-fld-wrap > h4{
    color: white;
    font-size: 70px;
    font-weight: 700;
}
.pbmit-fld-wrap > hr{
    background-color: white !important;
    color: white !important;
    height: 2px;
}
.pbmit-fld-wrap > p{
    color: white !important;
    font-size: 20px;
    font-weight: 600;
    padding-top: .5rem;
}
.kurumsal > .container-fluid  > .row{
    position: relative;
    z-index: 444;
    padding-top: 5rem;
}
/*****************************************************************************************************************************/
.urun-tanitimi{
    padding-bottom: 0rem;
    position: relative;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    
    &::before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        background: url('../images/kurumsal/kurumsal-bg.jpg');
        background-repeat: no-repeat;
        background-position: 50% 50% !important;
        background-size: cover;
        opacity: .2;
        border-radius: 20px;

    }

}
.urun-tanitimi-area{
    text-align: center;
    padding-top: 4rem;
    z-index: 444;
    position: relative;
    > .title > h3{
        color: var(--color1);
        font-size: 50px;
        font-weight: 900;
        padding-bottom: 1rem;
        text-shadow: 1px 1px 1px white;
        z-index: 444;
        position: relative;
    }
    > .text > p {
        color: var(--color2);
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }
}
.urun-tanitimi-box{
    background-color: #fff0dd;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    height: 145px;
    box-shadow: 0px 10px 15px -3px white;
    border: 1px solid transparent;
    z-index: 22;
    position: relative;
}
.urun-tanitimi-box > .title > h3{
    color: var(--color2);
    font-weight: 900;
    font-size: 18px;
    padding-bottom: .4rem;
}
.urun-tanitimi-box > .text > p{
    color: var(--color2);
    font-size: 14px;
    font-weight: 400;
}
.urun-tanitimi-img {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.urun-tanitimi-img > img {
  animation: slideDown 3s ease-in-out infinite;
}
@keyframes slideDown {
  0% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}
/*************************************************************************************************************/
.gallery{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.section-gallery-title > h3{
    text-align: center;
    color: var(--color1);
    font-size: 50px;
    font-weight: 900;
    padding-bottom: 1rem;
}
.gallery-list{
    list-style-type: none;
    padding-top: 1rem;
    > li {
        padding-top: .7rem;
    }
}
.gallery-list-img{
    overflow: hidden;
    width: 100%;
}
.gallery-list > li > a > .gallery-list-img > img{
    transform: scale(1);
    transition: transform .5s;
    border-radius: 20px;
}
.gallery-list > li > a > .gallery-list-img >  img:hover{
    transform: scale(1.05);
}
.gallery-list-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 3rem;
    >a {
        border: 1px solid var(--color2);
        border: 1px solid var(--color2);
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: .5rem;
        padding-bottom:.5rem;
        color: var(--color2);
        font-size: 18px;
        font-weight: 400;
        text-transform: none !important;
        text-decoration: none;
        &:hover{
            background-color: #333333;
            color: white;
            transition: .5s all;
        }
    }
}
.row > .col-lg-4:nth-child(2) > .gallery-list  > li > a .gallery-list-img  > img{
        height: 695px;
    width: 100%;
    object-fit: cover;
}
/*************************************************************************************************************/
.tarifler{
    padding-top:0rem;
    padding-bottom: 0rem;
    margin-top: -3rem;
}
.tarifler-box{
    position: relative;
    margin-bottom: 1rem;
    padding-top: 1rem;
}
.tarifler-box-img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        background-color: #000000;
        opacity: .5;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
}
.tarifler-box-img > img{
    height: 425px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.tarifler-box-body {
    position: absolute;
    top: 100px;
    left: 50px;
    padding: 1rem;
}
.tarifler-box-body > .title > h3{
    color: white;
    font-size: 30px;
    font-weight: 600;
}
.tarifler-box-body > .text > p {
    padding-top: 1rem;
    color: white;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}
.btn-link {
    margin-top: 2rem;
    text-decoration: none !important;
    > a{
        background-color: var(--color1);
        color: white;
        text-decoration: none;
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: .7rem;
        padding-bottom: .7rem;
        font-size: 14px;
        font-weight: 400;
        border-radius: 10px;
    }
}
/*************************************************************************************************************/
.banner{
    height:450px;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important; 
    background-size: cover  !important;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .5;
    }
}
.banner-content >h1{
    padding-top: 15rem;
    color: white;
    font-size: 50px;
    font-weight: bold;
    position: relative;
    z-index: 212;
    text-align: center;
}
.page-content{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.page-content-description > p{
    color: var(--color2);
    font-size: 14px;
    font-weight: 400;
}
.page-content-img{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 4rem;
    > img{
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}
.contact{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.contact-adres{
    background-color: var(--color1);
    height: 98%;
    padding: 3rem;
    border-radius: 10px;
}
.contact-adres-menu-title > h3{
    color: white;
    font-size: 45px;
    font-weight: 600;
}
.contact-adres-menu-title > h4{
    color:white;
    font-size: 20px;
    font-weight: 400;
    padding-top: 1rem;
}
.contact-adres-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 2rem;
}
.contact-adres-menu >  li {
    padding-top: 2rem;
}
.contact-adres-menu > li > a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.contact-adres-menu > li > a > i {
    padding-right: 1rem;
    font-size: 25px;
}
.contact-form-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.contact-form-text > p {
    font-size: 14px;
    color: var(--color2);
    font-weight: 400;
    padding-top: 1rem;
}
.socail-media-adres-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: -2rem;
    margin-top: 3rem;
    list-style-type: none;
    > li{
        padding-right: 1rem;
        >a {
         color: white;
          font-size:25px;
        }
    }
}

.form-group{
    margin-bottom: 1rem;
}
.form-label{
    color: var(--color2);
    font-size: 14px;
    font-weight: 400;
}
.form-control{
    height:50px;
    border: 1px solid #ccc !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="checkbox"]:focus,
input[type="file"]:focus,
.uneditable-input:focus {   
  border-color:var(--color1);
  box-shadow: 0 1px 1px var(--color1) inset, 0 0 8px var(--color1) !important;
  outline: 0 none;
}
.form-send{
    border: none;
    background-color: var(--color1);
    color: white;
    width: 170px;
    height: 40px;
    margin-top: 4rem !important;
    transition: .3s ease;
    border-radius: 10px;
        font-size: 14px;
    font-weight: 400;
    &:hover{
      background-color: var(--color1);
    }
}
.form-check-input:checked{
    background-color: var(--color1) !important;
    border-color: var(--color1) !important;
    font-size: 16px;
}
.form-check-label{
    padding-top: .1rem;
}
.form-check-label > span{
    padding-top: .5rem;
    font-size: 16px;
    color: var(--color2);
    > a{
        font-size: 16px;
        color: var(--color2);
        text-decoration: none;
    }
}
textarea{
    height: 100px !important;
}
.contact-map{
    padding-bottom: 3rem; 
}
iframe{
     border-radius: 30px;
}
.tarifler-page{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.kurumsal-img > img{
    border-radius: 20px;
}
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    border-radius: 8px;
    margin-top: 1rem !important;
}
.pagination li {
    margin: 0;
    padding: .2rem;
}
.pagination a {
    display: block;
    padding: 10px 16px;
    margin: 0 2px;
    color: var(--color1);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
}
.pagination a:hover {
    background-color: var(--color1);
    color: white;
}
.pagination .active a {
    background-color: var(--color1);
    border-color: var(--color1) !important;
    color: white;
    pointer-events: none;
}
.pagination .disabled a {
    color: #ccc;
    pointer-events: none;
}
/***************************************************************************************************************************/
.urun{
    border-radius: 30px;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #F9F9F9;
}
.product-thumbs{
    border-radius: 30px;
    padding: 1rem !important;
}
.product-thumbs .swiper-slide img {
    object-fit: contain;
    cursor: pointer;
    height: 200px;
    width: 100%;
    border: 1px solid #e0dddd;
    border-radius: 15px;
}
.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
      font-size: 20px;
      color: #000;
      font-weight: bold;
}
.swiper-button-next,
.swiper-button-prev {
  color: #333;
  background-color: rgba(255, 255, 255, 0.8); 
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #000;
  color: #fff;
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}
.swiper-button-next, .swiper-button-prev{
    color: var(--color1) !important;
}
.product-slider{
    overflow: hidden !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}
.swiper-slide{
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
}
.swiper-button-next{
    padding: 1.7rem !important;
    background-color: var(--color1) !important;
    color: white !important;
}
.product-slider .swiper-button-next:after, .product-slider .swiper-button-prev:after{
    color: white !important;
}
.swiper-button-prev{
    padding: 1.7rem !important;
    background-color: var(--color1) !important;
    color: white !important;
}
.product-slider .swiper-button-prev:after, .product-slider .swiper-button-prev:after{
    color: white !important;
}
.urun-content{
    padding-top: 5rem;
    padding-left: 3rem;
}
.urun-content-title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 900;
}
.urun-content-text{
    padding-top: 2rem;
}
.urun-content-text > p{
    color: var(--color2);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}
.urun-content-btn{
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    > a:nth-child(1){
        background-color: var(--color1);
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        color: white;
        font-size: 16px;
        margin-right: 1rem;
        transition: .3s ease-in-out;
        border-radius: 30px;
    }
    >a:nth-child(2){
        background-color: var(--color2);
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-radius: 30px;
        color: white;
        font-size: 16px; 
    }
}
.section-teknik-ozellik-title{
    margin-top: 3rem;
    > h3{
        color: var(--color1);
        font-size: 35px;
        font-weight: 600;
    }
}
.table{
    margin-top: 2rem;
    background-color: transparent !important;
    z-index: 44;
    position: relative;
}
tbody > tr{
    margin-bottom: 1rem !important;
}
tbody > tr > td{
    padding: 1rem !important;
    font-size: 14px;
    color: var(--color2);
    font-weight: 400;
}
.first-img {
    height: 600px !important;
    width: 100%;
    object-fit: contain;
    background-color: white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

/**************************************************************************************************************/
footer{
    background-color: #440098;
    border-radius: 30px;
    padding-top: 0rem;
    padding-bottom:1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 2rem;
}
.footer-web-site-logo{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.footer-web-site-logo > a > img{
    width: 150px;
    object-fit: cover;
    margin-top: -1rem;
}
.footer-top{
    border-top: 1px solid white;
    padding-top: 2.5rem;
}
.footer-middle{
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.footer-menu-title > h3{
    color: white;
    font-size: 25px;
    font-weight: 600;
}
.footer-menu-list > ul {
    margin-left: -2rem;
    margin-top: 1rem;
    list-style-type: none;
}
.footer-menu-list > ul > li {
    padding-top: 1rem;
}
.footer-menu-list > ul > li >a {
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration:  none;
}
.footer-contact-item > span{
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding-top: .5rem;
}
.footer-contact-item > p {
    color: white;
    font-size: 16px;
    font-weight: 400;
    > span{
        font-weight: 600;
    }
}
.socail-media > ul {
    display: flex;
    list-style-type: none;
    flex-direction: row;
    justify-content: center;
    padding-top: .5rem;
    margin-left: 3rem;
    transition: .3s ease-in-out;
    > li {
        padding-right: 2rem;
    }
}
.socail-media > ul > li >a{
    color: white;
    font-size: 20px;  
}
.bayi-button {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.bayi-button > a{
    border: 1px solid white;
    border-radius: 30px;
    background-color: transparent;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-top: .7rem;
    padding-bottom: .7rem;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration:  none;
}
.contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}
.footer-coprigyt > p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 2rem;
}
.footer-coprigyt-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.footer-bottom{
    margin-bottom: 1rem;
}