.mobileHeader {
    padding: 20px 15px;
    z-index: 16;
    transition: 0.1s 0.2s ease box-shadow, 0.1s ease background;
    background-color: #6d6e71;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.mobileHeader .btnPoisition {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

body.mobileMenuActive .button-toggle:before {
    opacity: 1;
    transition: 0.2s 0.2s ease all;
}

body.mobileMenuActive .button-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(-4px, 4px);
}

body.mobileMenuActive .button-toggle span {
    width: 25px;
}

body.mobileMenuActive .button-toggle span {
    background: #666666;
}

body.mobileMenuActive .button-toggle span:nth-child(2) {
    transform: translateX(-50px);
    opacity: 0;
}

body.mobileMenuActive .button-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(-4px, -4px);
}

.button-toggle {
    cursor: pointer;
    background: 0 0;
    box-shadow: none;
    border: none;
    transition: all .3s;
    height: 40px;
    position: absolute;
    z-index: 30;
    outline: unset !important;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    width: 40px;
    right: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-toggle:before {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    background: white;
    border-radius: 100%;
    left: -10px;
    top: -9px;
    opacity: 0;
    transition: unset;
}

.button-toggle span:nth-child(1) {
    transform: translateY(-13px);
}

.button-toggle span {
    display: block;
    width: 48px;
    height: 6px;
    background: #fff;
    border-radius: 10px;
    margin: 0;
    position: absolute;
    top: 19px;
    left: 13px;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.20);
    transition: all .3s;
}

.button-toggle span:nth-child(3) {
    transform: translateY(13px);
}

.mobileHeader .logo {
    display: block;
    position: relative;
    height: 70px;
}

.mobileHeader .logo img {
    opacity: 1;
    transition: 0.3s ease all;
    height: 100%;
}

.button-toggle {
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}

.mobileHeader .logo .img {
    background-image: url(../img/logo.svg);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    transition: 0.3s ease all;
}

body.mobileMenuActive .mobileMenu {
    opacity: 1;
    pointer-events: auto;
}

.mobileMenu {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    overflow: hidden;
    height: 100vh;
    transition: 0.3s ease opacity;
    z-index: 15;
    background: #6d6e71;
    pointer-events: none;
    opacity: 0;
}

.mobileMenu .menucontainer {
    opacity: 0;
    transition: 0.3s 0.3s ease all;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.mobileMenu .menuContent2 {
    position: absolute;
    right: -100%;
    top: 0px;
    bottom: 0px;
    transition: 0.3s ease right;
    padding-top: 130px;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}

.mobileMenu .menuContent2 .back {
    -webkit-mask: url(../img/left-arrow.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    width: 40px;
    height: 30px;
    background: #fff;
    margin-bottom: 0px;
    margin-top: 5px;
}

.mobileMenu .menuContent2 .title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 40px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.mobileMenu .menuContent2 .head {
    padding-left: 30px;
}

.mobileMenu .menuContent2 .content {
    border-top: 2px solid #3c3c3b0d;
}

.mobileMenu .menuContent2 .navbar-nav {
    padding: 10px 0px;
}

.mobileMenu .menuContent2.active {
    right: 0%;
}

.mobileMenu .navbar-nav > li.submenu .submenuarea {
    display: none;
}

body.mobileMenuActive .mobileMenu .menucontainer {
    opacity: 1;
}

.mobileMenu .menuContent1.active {
    left: 0%;
}

.mobileMenu .menuContent1 {
    position: absolute;
    left: -100%;
    top: 0px;
    bottom: 0px;
    transition: 0.3s ease left;
    padding-top: 130px;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.mobileMenu .navbar-nav {
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10vh;
    padding-left: 30px;
}



.mobileMenu .navbar-nav > li > a {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
    display: block;
    padding: 0px;
    padding-left: 0;
}
.mobileMenu .navbar-nav > li.subMenu > a{
    pointer-events: none;
}

.mobileMenu .navbar-nav > li.subMenu .dropdown{
    transform: scaleY(0);
    transition: .3s ease all;
    transform-origin: top;
    min-height: 0;
    max-height: 0;
}

.mobileMenu .navbar-nav > li.subMenu:hover .dropdown{
    transform: scaleY(1);
    min-height: 70px;
    max-height: 300px;
}

.mobileMenu .navbar-nav > li.subMenu .dropdown .subMenu{
    padding: 10px 30px;
}

.mobileMenu .navbar-nav > li.subMenu .dropdown .subMenu li a{
    color: #fff;
    position: relative;
}

.mobileMenu .navbar-nav > li.subMenu .dropdown .subMenu li a:before{
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 100%;

}


.mobileMenu {
    display: none;
}

.mobileHeader {
    display: none;
}

.mobile-show {
    display: none;
}
.mobile-hidden {
    display: block;
}
li.submenu a span i {
    display: none;
}

@media only screen and (max-width: 768px){
    .mobile-show {
        display: block !important;
    }
    .mobile-hidden {
        display: none !important;
    }
    .mobileHeader {
        display: block;
        border-bottom: 1px solid #ffffff29;
    }
    .mobileMenu {
        display: block;
    }

    .mobileMenu li.home a svg{
        display: none;
    }

    body.mobileMenuActive {
        max-height: 100vh;
        max-width: 100vw;
        overflow: hidden;
    }
    header, .header-menu {
        display: none;
    }
    .menuContent1 .dilLi {
        width: 100%;
        display: block;
        padding: 0 30px;
    }
    .menuContent1 .dilLi .diller {
        display: flex;
        align-items: center;
    }
    .menuContent1 .dilLi .diller .selected {
        margin-right: 10px;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        line-height: 77px;
        display: block;
        padding: 0px;
        text-decoration: underline;
    }
    .menuContent1 .dilLi .diller .list {}
    .menuContent1 .dilLi .diller .list a {
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        line-height: 77px;
        display: block;
        padding: 0px;
    }
    body {
        padding-top: 110px;
    }
    section.slider .swiper-slide > img{
        height: 100vw;
        object-position: top center;
    }
    section.slider .swiper-slide .inner{
        padding-top: 0;
    }
    section.slider .swiper-slide .inner .text h4{
        font-size: 28px;
    }
    section.slider .swiper-slide .inner .text h4 b{
        font-size: 30px;
    }
    section.corporate .brands{
        margin-top: -20px;
    }
    section.corporate:before{
        top: -50px;
    }
    section.slider .swiper-slide .inner .text{
        height: 100%;
        padding-top: 30px;
        justify-content: flex-start;
    }
    section.slider .swiper-slide .inner .img{
        text-align: right;
    }
    section.slider .swiper-slide .inner .text a{
        margin-top: 0;
        width: 210px;
        padding: 12px 15px;
    }
    section.corporate .brands .col:nth-child(2n) .brand{
        border-right: 0;
    }

    section.corporate .brands .brand{
        border-bottom: 1px solid #2e292a;
    }

    section.corporate .text{
        padding-left: 0;
    }
    section.news .right{
        transform: translateY(-90px);
        position: relative;
    }
    section.news .right .arrow{
        top: 90px;
    }
    section.videos .owl-videos .item:after{
        width: 70px;
        height: 70px;
        left: 88%;
        top: 25%;
    }
    .owl-catalog{
        padding-top: 60px;
    }
    section.videos .owl-catalog .item .catalog .img:after{
        top: 44px;
    }
    section.videos .owl-catalog .item .catalog .img{
        padding-top: 30px;
        margin-bottom: -30px;
    }
    footer .contact-banner .items{
        flex-direction: column;
        padding-left: 15px;
    }
    footer .contact-banner{
        padding: 40px 20px 30px;
    }
    footer .contact-banner .items .item{
        margin-bottom: 10px;
        justify-content: flex-start;
        width: 100%;
    }
    footer .contact-banner .socials{
        margin-top: 15px;
    }
    section.videos .owl-catalog .item .catalog h4{
        margin-bottom: 10px;
    }
    footer .footer-logo{
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }
    footer .footer-menu{
        text-align: center;
        margin: 10px 0;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .footer-copyright{
        height: auto;
    }
    .footer-copyright p{
        padding: 10px 0;
    }
    .footer-copyright p b{
        display: block;
    }
    .footer-copyright a{
        margin-bottom: 5px;
    }

    .page-header{
        height: 60vw;
    }
    main.page-content aside.sidebar{
        margin-left: 5px;
    }

    main.page-content .inner{
        padding: 50px 10px;
        text-align: justify;
    }
    main.page-content .inner h4{
        font-weight: 500;
        font-size: 31px;
        margin-bottom: 10px;
    }
    .page-images .page-image{
        margin-bottom: 20px;
    }

    .product-detail .page-images a{
        display: block;
    }

    .product-detail .page-images a img{
        width: 100%;
    }

    .contact-items .row-cols-xl-3 .col{
        flex: 1 1 100%;
    }

    body.iletisim .contact-info .contact-items .item .icon-container{
        width: 40px;
        height: 40px;
    }
    body.iletisim .contact-info .contact-items .item .icon-container .icon{
        max-height: 16px;
    }

    body.iletisim .contact-info .contact-items .item p{
        max-width: calc(100% - 55px);
    }
    body.iletisim .contact-info .map-container{
        margin-top: 40px;
    }
    body.iletisim .contact-form form button{
        margin-top: 20px;
    }
    body.iletisim .page-content{
        padding-bottom: 50px;
    }

    .product-slider .gallery-thumbs{
        display: none;
    }

    .product-detail{
        padding-bottom: 0;
    }

    .product-text .item-feature .item span:first-child{
        width: 60%;
    }
    .product-text .item-feature .item span:last-child{
        width: 40%;
        text-align: right;
    }

}

@media only screen and (max-width: 320px){
    section.slider .swiper-slide .inner .text h4 span{
        font-size: 33px;
    }
    section.slider .swiper-slide .inner .text h4{
        font-size: 22px;
    }
    section.slider .swiper-slide > img{
        height: 400px;
    }
    section.news .left h4{
        font-size: 33px;
        line-height: 36px;
    }
    section.news{
        margin-top: 20px;
    }
    section.videos .owl-videos .item .bg{
        padding-bottom: 60%;
    }
    section.videos .owl-videos .item .text p{
        font-size: 13px;
    }
    section.videos .owl-videos .item .text{
        left: 12px;
    }
    section.videos .owl-videos .item:after{
        left: 85%;
    }
    main.page-content aside.sidebar ul li{
        padding: 0 5px;
    }
    main.page-content aside.sidebar h4{
        padding: 12px 12px 0;
        height: 60px;
    }

    body.iletisim .contact-info .firm-title{
        font-size: 20px;
    }

    body.iletisim .contact-info{
        margin-bottom: 50px;
    }
    .product-title h4{
        font-size: 22px;
    }
    body.iletisim .contact-form{
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    section.slider .swiper-slide .inner .text h4{
        font-size: 36px;
    }
    section.slider .swiper-slide .inner .text h4 b{
        font-size: 42px;
    }
    section.slider .swiper-slide > img{
        height: 570px;
    }
    section.corporate .image-container a{
        font-size: 35px;
        width: 300px;
        height: 95px;
    }
    section.corporate .text h4{
        font-size: 55px;
    }
    section.corporate .text span{
        font-size: 17px;
    }
    section.corporate .text p{
        font-size: 20px;
    }
    section.news .container .row .d-flex{
        flex-direction: column-reverse;
        justify-content: center;
    }
    section.news .left{
        width: 100%;
        justify-content: space-between;
    }
    section.news .right{
        transform: unset;
        width: 100%;
    }
    section.news .right .arrow{
        top: unset;
    }

    section.news .container .row .d-flex>.right{
        margin-bottom: 10px;
    }
    section.videos .owl-videos .item:after{
        left: unset;
        top: 7px;
        transform: unset;
        right: 6px;
    }
    section.videos .owl-catalog .item .catalog .img img{
        width: auto;
        height: 460px;
        margin: 0 auto;
    }
    section.videos .owl-catalog .item .catalog .img:after{
        width: 350px;
        height: 350px;
        background-size: contain;
    }
    footer .contact-banner .items .item p{
        font-size: 19px;
    }
    footer .footer-inner .footer-logo img{
        max-width: 40%;
    }
    .page-header{
        height: 40vw;
        background-size: 180%;
    }
    .product-slider .gallery-top .swiper-slide{
        background-size: cover;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px){
    header a.logo img{
        height: 75%;
    }
    section.slider {
        margin-top: 128px;
    }
    section.slider .swiper-slide .inner{
        padding-top: 0;
    }
    section.slider .swiper-slide .inner .text{
        margin-top: -125px;
    }
    section.slider .swiper-slide .inner .img{
        width: 80%;
    }
    section.videos .owl-videos .item:after{
        top: 45%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 100px;
        height: 100px;
    }
    section.videos .owl-catalog .item .catalog .img:after{
        width: 250px;
        height: 180px;
        background-size: cover;
        top: 35px;
    }
    section.videos .owl-catalog .item .catalog .img img{
        height: 270px;
    }
}