table{
    width: 75% !important;
}
tbody{
    width: 75% !important;
}
.TableParagraph{
    text-align: center;
}
.f-images {
    width: 220px !important;
    height: 220px !important;
}
.post_083_image > img{
    object-fit: contain !important;
}
.f-images img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
.m-p-g__thumbs{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
td p{
    font-size: 12px !important;
    padding: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
td span{
    font-size: 12px !important;
    padding: 0 !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-right: 5px !important;
    padding-left: 5px !important;
}
td div{
    font-size: 12px !important;
    padding: 0 !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-right: 5px !important;
    padding-left: 5px !important;
}
.left{
        transition-duration: 1000ms !important;
}

.right{
    transition-duration: 1000ms !important;
}

@media(max-width:800px){
 table{
    width: 100% !important;
} }

ul {
    list-style: none;
}
/*------------------------------------*\
    MATERIAL PHOTO GALLERY
\*------------------------------------*/
.m-p-g {
    max-width: 100%;
    margin: 0 auto;
  }
  .m-p-g__thumbs-img {
    margin: 0;
    float: left;
    vertical-align: bottom;
    cursor: pointer;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
    -webkit-tap-highlight-color: transparent;
    will-change: opacity, transform;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .m-p-g__thumbs-img.active {
    z-index: 50;
  }
  .m-p-g__thumbs-img.layout-completed {
    opacity: 1;
  }
  .m-p-g__thumbs-img.hide {
    opacity: 0;
  }
  .m-p-g__thumbs-img:hover {
    -webkit-filter: brightness(110%);
            filter: brightness(110%);
  }
  .m-p-g__fullscreen {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    visibility: hidden;
    -webkit-transition: background 0.25s ease-out, visibility 0.01s 0.5s linear;
    transition: background 0.25s ease-out, visibility 0.01s 0.5s linear;
    will-change: background, visibility;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .m-p-g__fullscreen.active {
    -webkit-transition: background .25s ease-out, visibility .01s 0s linear;
    transition: background .25s ease-out, visibility .01s 0s linear;
    visibility: visible;
    background: rgba(0, 0, 0, 0.95);
  }
  .m-p-g__fullscreen-img {
    pointer-events: none;
    position: absolute;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    top: 50%;
    left: 50%;
    max-height: 100vh;
    max-width: 100%;
    visibility: hidden;
    will-change: visibility;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }
  .m-p-g__fullscreen-img.active {
    visibility: visible;
    opacity: 1 !important;
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease-out;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .m-p-g__fullscreen-img.almost-active {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
  }
  .m-p-g__controls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: 20vh;
    background: -webkit-linear-gradient(bottom, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
    background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .m-p-g__controls.active {
    opacity: 1;
    visibility: visible;
  }
  .m-p-g__controls-close, .m-p-g__controls-arrow {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background: none;
  }
  .m-p-g__controls-close:focus, .m-p-g__controls-arrow:focus {
    outline: none;
  }
  .m-p-g__controls-arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 20%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
  }
  .m-p-g__controls-arrow:hover {
    opacity: 1;
  }
  .m-p-g__controls-arrow--prev {
    left: 0;
    padding-left: 3vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .m-p-g__controls-arrow--next {
    right: 0;
    padding-right: 3vw;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .m-p-g__controls-close {
    position: absolute;
    top: 3vh;
    left: 3vw;
    z-index: 5;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .m-p-g__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
  }
  .m-p-g__btn:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  .m-p-g__alertBox {
    position: fixed;
    z-index: 999;
    max-width: 700px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
    color: grey;
  }
  .m-p-g__alertBox h2 {
    color: red;
  }
  


  
 
  
  .demo-btn {
    display: inline-block;
    margin: 0 2.5px 4vh 2.5px;
    text-decoration: none;
    color: grey;
    padding: 15px;
    line-height: 1;
    min-width: 140px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 6px;
  }
  
  .demo-btn:hover {
    background: rgba(0, 0, 0, 0.12);
  }
  
  @media (max-width: 640px) {
    .demo-btn {
      min-width: 0;
      font-size: 14px;
    }
  }
  







body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}
.alt-sayfa{
    width: 100%;
background-color: white;
    height: auto;
    border-top: 1px solid #2a72ba;
}
.wrapper {
    max-width: 1200px;
    margin: auto;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    gap: 20px;
}

.logo img {
    width: 220px;
    height: 70px;
}

header {
    padding-top: 10px;
    padding-bottom: 10px;
}

header .wrapper {
    display: flex;
    height: 100%;
    justify-content: space-between;
}

.menu ul li a {
    text-decoration: none;
    color: #000406;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.menu ul li a:hover {

    color: #2a72ba;
}


.menu ul li:hover ul {
    margin-top: 0;
    transition: .4s;
    z-index: 9999999999;
}



.menu ul li ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 150px;
    z-index: 9999999999999;
    padding-left: 0px;
    background-color: #25b3d7;
    width: 190px;
    gap: 0px;
    z-index: -9999999999;
}

.menu ul li ul li:hover {
    background-color: #ffffff;
    cursor: pointer;
}

.menu ul li ul li:hover a {
    color: #2a72ba;
}

.menu ul li ul li {
    padding: 10px;
}

.menu ul li ul li a {
    color: #ffffff;
    font-size: 15px;
}





.dil a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.dil a:hover {
    text-decoration: none;
    color: #ffffff;
}

.dil {
    cursor: pointer;
    background-color: #25b3d7;
    padding: 3px 25px 3px 25px;
    border-radius: 30px;
}

.kurumsal {
    width: 100%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.kurumsal-title {
    font-size: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #25b3d7;
}

.kurumsal .wrapper p {
    display: flex;
    max-width: 550px;
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    color: #414d50;
    font-size: 18px;
    text-align: center;
    justify-content: center;
}

.kurumsal .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.kurumsal-menu {
    width: 1000px;
}

.kurumsal-menu ul {
    margin-top: 50px;
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.kurumsal-menu ul li a {
    text-decoration: none;
    cursor: pointer;
    color: #414d50;
    font-size: 18px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

/* .kurumsal-menu ul li:hover {
    transform: rotate(360deg);
    transition: 1s;
} */

/* .kurumsal-menu ul li a:hover {
    background-color: #25b3d7;
    border-radius: 30px;
    color: #ffffff;
} */

.ikili-urun {
    width: 100%;
    height: auto;
}

.urun1 {
    width: 50%;
    height: 355px;
    background-image: url("img/urun1.jpg");
    background-size: 100% 100%;
}

.urun2 {
    width: 600px;
    height: 355px;
    background-size: 100% 100%;
    background-image: url("img/urun2.jpg");
}

.ikili-urun .wrapper {
    display: flex;
}
.wrappers{
    max-width: 1200px;
    margin: auto;
    display: flex;
}
.opak {
    background-color: #000406;
    opacity: .2;
    position: absolute;
    width: 600px;
    height: 355px;
}

.urun-title {
    font-size: 28px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-bottom: 40px;

}

.detay {
    background-color: #25b3d7;

    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 150px;

}

.text {
    padding-top: 200px;
    padding-left: 30px;
}

.detay a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16PX;
}

.detay:hover a {
    color: #25b3d7;
    font-family: 'Roboto', sans-serif;
    font-size: 16PX;
    text-decoration: none;
}

.detay:hover {
    background-color: #ffffff;
}

.kurumsal-alt .wrapper {
    display: flex;
}

.kurumsal-alt {
    width: 100%;
}

.vizyon {
    width: 50%;
    height: 355px;
    background-image: url("img/vizyonmisyon.jpg");
    background-size: 100% 100%;
}

.misyon {
    width: 600px;
    height: 355px;
    background-size: 100% 100%;
    background-color: #25b3d7;
}








.detay-vizyon {
    background-color: #ffffff;
    margin-top: 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 150px;

}

.detay-vizyon a {
    color: #25b3d7;
    font-family: 'Roboto', sans-serif;
    font-size: 16PX;
}

.detay-vizyon:hover a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16PX;
    text-decoration: none;
}

.detay-vizyon:hover {
    background-color: #2a72ba;
}

.vizyon-title {
    font-size: 28px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    height: 85px;
    padding-left: 30px;
    margin-bottom: 30px;
    border-left: 3px solid #ffffff;

}

.misyon p {
    font-size: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.text-vizyon {
    padding-left: 50px;
    padding-top: 50px;
    padding-right: 20px;
}

.kurumsal-vizyon {
    width: 400px;
    height: 270px;
    background-color: #2a72ba;
}

.hizmet {
    width: 400px;
    height: 270px;
    ;
    background-color: #2a72ba;
    background-image: url("img/İletişim-Arkaplan.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.referans {
    width: 400px;
    height: 270px;
    background-color: #a1adb0;
}

.vizyon-baslik {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.vizyon-yazi p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400 !important;
    font-family: 'Roboto', sans-serif;
}

.vizyon-yazi {
    padding-left: 20px;
    margin-top: 155px;
}
.d{
    float: left;
    padding-right: 10px;

}
.d a{
    color: #ffffff;
}
.d a:hover{
text-decoration: none;
color: #ffffff;
}
footer {
    background-color: #2a72ba;
    width: 100%;
    padding-top: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.footer1 {
    width: auto;
}

.footer2 {
    width: auto;
}

.footer3 {
    width: auto;
}

.footer4 {
    width: 300px;
}

.f-logo img {
    width: 250px;
    height: 70px;
}

.footer4 p {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin-top: 30px;
}

.footer-title {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
}

.footer1 ul {
    padding: 0;
    margin-top: 30px;
}

.footer1 ul li a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

a {
    cursor: pointer;
}

.footer1 ul li a:hover {
    color: #25b3d7;
    text-decoration: none;
}

.footer-title:hover {
    color: #25b3d7;
    cursor: pointer;
}

.footer2 ul li a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.footer2 ul li a:hover {
    color: #25b3d7;
    text-decoration: none;
}

.footer3 ul li a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.footer3 ul li a:hover {
    color: #25b3d7;
    text-decoration: none;
}

.footer2 ul {
    padding: 0;
    margin-top: 30px;
}

.footer3 ul {
    padding: 0;
    margin-top: 30px;
}

.f-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    padding-top: 50px;
    padding-bottom: 10px;
}

.f-menu ul li a {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px
}

.f-menu ul li a:hover {
    color: #25b3d7;
    text-decoration: none;
}
ul{
    list-style: none;
}
.footer-alt {
    width: 100%;
    height: auto;
    background-color: #000406;
}

.footer-alt-yazi {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px
}

.footer-alt .wrapper {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.neturk-logo img {
    width: 100px;
    height: 40px;
}


#kapa{
    color: #2a72ba;
}
        .sidenav {
          height: 0;
          width: 100%; /*Genişliği javascriptle değiştir*/
          position: absolute;
          z-index: 9999999999;
          top: 100px;
          color: #15505F;
          left: 0;
          background-color: #2a72ba;
          overflow-x: hidden; /*Yatay kaydırmayı devre dışı bırak */
          transition: 0.5s;/* Sidenav'da kaymaya 0,5 saniye geçiş efekti */
          padding-top: 0; /*İçeriği üstten 60 piksel yerleştirin */
        }
        .sidenav ul{padding: 0;
        margin: 0px;}


.sidenav ul li ul{
    display: none;
}
.sidenav ul li:hover ul{
    display: block;
    transition: 1s;
}
.sidenav ul li ul li a{
 background-color: #ffffff;
 color: #2a72ba;
}

        #ac{
           text-decoration: none;
           color: #2a72ba;
        display: none;
        font-size: 44px;
        font-weight: 400 !important;
        }
        .sidenav a {
          padding: 10px 10px 10px 10px;
          text-decoration: none;
          font-size: 14px;
          color: #f2f2f2;
          display: block;
          font-weight: 400;
            font-family: 'Lato', sans-serif !important;
          text-align: center;
          transition: 0.3s;
          border-bottom: 1px solid #ffffff;
        }
        /*Menüler üzerine gelince  renklerini değiştirin */
        
        .sidenav a:hover {
          color: #f1f1f1; 
        }
        /*Kapat düğmesini konumlandırın ve stillendirin (sağ üst köşe) */
        
        .sidenav .closebtn {
          position: absolute;
          top: 0;
          right: 25px;
          font-size: 36px;
          margin-left: 50px;
        }
        /* Yüksekliğin 450 pikselden az olduğu daha küçük ekranlarda, 
        sidenav stilini değiştirin 
        (daha az dolgu ve daha küçük bir yazı tipi boyutu) */
        
        @media screen and (max-height: 450px) {
          .sidenav {padding-top: 15px;}
          .sidenav a {font-size: 18px;}
        }






@media(max-width:650px){
    .gallery_item:hover img {
        transform: scale(1.0);
    }
    .logo img {
        margin-top:8px}
    header{
        height: 100px;
    }
    .mobil-menu ul{
        width: 95%;
     
    } 
    .mobil-menu{
display: flex;
justify-content: center;

    }
    .vizyon-yazi p{
        font-size: 13px;
        padding-right: 13px;
    }
}




.gizle{
    display: none;
}


.sol-menu{
    margin-top: 30px;
}
.sol-menu1 ul{
    list-style: none;
    padding: 0;
    padding-bottom: 20px;
    margin-top: 10px;
}
.sol-menu-title{
    font-size: 16px;
    font-weight: 500;

}
.sol-menu1 ul li{
    width: 220px;
padding: 5px 0px;
    border-bottom: 1px solid #a1adb0;
}

.sol-menu1 ul li a{
        font-size: 11px;
 
        padding: 5px 0px;
    color: #a1adb0;
    text-decoration: none;
}

.sol-menu1 ul li a:hover{
    color: #2a72ba;
padding-left: 10px;
    transition: .5s;
}

.alt-sayfa-icerik{
    width: 100%;
   margin-top: 30px;
    height: auto;
    background-color: white;
}
.post_083_content > h5 > a{
    text-align: center !important;
}
.alt-sayfa .wrapper{
    display: flex;
    gap: 40px;
}
.urun-takip{

    margin-bottom: 10px;
    width: 100%;
    font-size: 18px;
    height: 30px;
font-weight: 500;
color: #2a72ba;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.alt-sayfa-icerik .wrapper{
    display: flex;
    gap: 0;
    padding: 15px;
    padding-top: 0 !important;
    flex-direction: column;
}

.a a{
    color:#2a72ba !important;
}








@media(max-width:1200px){
    footer{
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-alt{
        padding-left: 20px;
        padding-right: 20px;
    }
    .ikili-urun .wrapper {
        display: flex;
        justify-content: center;
    }
header .wrapper{
    padding-left: 20px;
    padding-right: 20px;
}
.urun1{
    width: 45%;
}
.urun2{
    width: 45%;
}
.opak {
    width: 540px;
}

}
@media(max-width:450px){
    .gallery_item {
        height: 150px;
    }
    .gallery_wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .mobil-menu{
  margin-right: -8px;
        width: 95%;
    }


}





@media(max-width:1150px){
.opak {
    width: 518px;
}
.ikili-urun .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.ikili-urun .wrappers {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;

}
.urun2 {
width: 518px;
}
.urun1 {
    width: 518px;
    }
    .vizyon {
        width: 600px;}
        .kurumsal-vizyon {
          
            margin-top: 30px;
}

}



@media(max-width:1000px){
    .sol-menu{
        display: none;
    }
    .gizle{
        display: block;
    }
  .menu{
    display: none;
  }
    .mobil-genel{
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
  .kurumsal-menu {
    width: auto;
    max-width: 1000px !important;
  }

    }
    @media(max-width:1100px){
        .gallery_item {
            width: 100%;
        }
        .gallery_wrapper {
            grid-template-columns: repeat(3, 1fr);
        }

        footer .wrapper{
            flex-direction: column;
        }
        .footer1 ul {
            padding: 0;
            margin-top: 5px;
            margin-bottom: 30px;

    }
    .footer4 p {
        padding: 0;
     margin-top: 5px;
        margin-bottom: 30px;

}
    .footer2 ul {
        padding: 0;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .footer3 ul {
        padding: 0;
        margin-top: 5px;
        margin-bottom: 30px;
    }










}



@media(max-width:700px){

.gallery_wrapper {
    grid-template-columns: repeat(2, 1fr);
}
.gallery_item{
    width: 100%;
}
}



    @media(max-width:650px){
    
        .kurumsal-vizyon{
            margin-top: 0;
        }
        .vizyon {
            height: 270px !important;
        }
        .mobil-menu ul li ul {
            width: 100%;
        }

        .f-menu ul{
            flex-direction: column;
            gap: 0;
        }

        .footer-alt .wrapper{
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        .kurumsal-menu ul {
            padding-left: 0;
        }
        .post_083_image > img{
            height: 250px !important;
        }


    }
    
    @media(max-width:800px){

        .kurumsal-menu ul {
            padding-left: 0;
            max-width: 650px;
        }
        .kurumsal-menu ul li a {
            font-size: 14px;
            padding: 10px;
        }


    }
        
    @media(max-width:600px){
        td p{
            font-size: 14px;
        }
        .post_083_image{
            height: auto !important;
        }
        .post_083_image img{
            height: auto !important;
        }
       
        #fw_al_009 > .carousel-inner > .item > img, #fw_al_009 > .carousel-inner > .item > a > img{
            height: 520px !important;
        }
        #fw_al_009 {
            overflow: hidden;
            max-height: 520px !important;
            position: relative;
          }
        .kurumsal-vizyon{
            width: 100%;
        }
.hizmet{
    width: 100%;

}
.referans{
    width: 100%;
}
.misyon{
    width: 100%;
}
.vizyon{
    width: 100%;
}
.urun1{width: 100%;}
.urun2{ width: 100%;}
.opak{
    width: 100%;
}

.kurumsal {
    margin-bottom: 30px;
    margin-top: 30px;
}
.kurumsal .wrapper p{
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}
.urun-title{
    font-size: 24px;
}
.text-vizyon {
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
}

    }
    @media(max-width:550px){


        .kurumsal-menu ul{
            flex-direction: column;
            gap: 20px;
            text-align: center;
            margin-top: 10px;
        }
    }