.orta .baslik{
    background-color:#48b6d8;
    border-left: 20px solid #585858;
    padding: 20px 50px 20px 20px;
    margin-left: -20px;
    color:#ffffff;
    font-size:40px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 2px 2px 4px #b4b4b4;
    text-shadow:3px 3px 6px #abe8fa;
    text-transform: uppercase;
    max-width: 800px;
    width: fit-content;
    transition: 0.3s;
}
.orta .baslik:hover{
    border-left:30px solid #585858;
    background:linear-gradient(-150deg, #ffffff,#585858);
    box-shadow: 4px 4px 16px #b4b4b4;
}
.orta .urun img{
    width: 0;
    height: 0;
    display: flex;
    margin: 40px auto;
    border-radius: 5px;
    transition:0.3s ease-out;
    animation: urun-resim 0.8s ease-out forwards;
}
.orta .urun img:nth-child(1){
    animation-delay: 0.5s;
}
.orta .urun img:nth-child(2){
    animation-delay: 1s;
}
.orta .urun img:nth-child(3){
    animation-delay: 1.5s;
}
.orta .urun img:nth-child(4){
    animation-delay: 2s;
}
@keyframes urun-resim{
    0%{
        width: 0;
        height: 0;
        opacity: 0;
    }
    100%{
        width: 800px;
        height: 380px;
        opacity: 1;
    }
}
.orta .urun img:hover{
    box-shadow: 0 10px 20px gray;
}
.orta .urun-aciklamasi{
    font-family: 'Times New Roman', Times, serif;
    width: 80%;
    padding: 40px;
    margin: 30px auto 0 auto;
    text-align: center;
    text-transform: capitalize;
    font-size: 20px;
}
.orta .urun-sistem{
    width: 80%;
    margin: 30px auto;
    text-align: center;
}
.orta .urun-sistem .urun-baslik{
    color:#000000;
    font-weight: bold;
    font-size:34px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: block;
}
/*
.orta .urun-sistem .urun-baslik::before{
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    background-color:#3fcaf5;
    margin-top:40px;
    transition: 0.5s ease;
}
.orta .urun-sistem .urun-baslik:hover::before{
    width: 725px;
}
.orta .urun-sistem .urun-baslik::after{
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    background-color:#3fcaf5;
    margin-top:0;
    transition: 0.5s ease;
}
.orta .urun-sistem .urun-baslik:hover::after{
    width: 725px;
    margin-left: -725px;
}
*/
.orta .urun-sistem .gereniksimler ul {
    width: 100%;
    margin: 10px auto;
    padding: 0;
    list-style-type: none;
}
.orta .urun-sistem .gereniksimler ul li{
    margin-bottom: 10px; 
}
.orta .urun-sistem .gereniksimler ul li:hover{
    font-weight: bold;
    cursor: pointer;
}
.orta .urun-sistem .gereniksimler ul li:hover::before{
    content: '';
    position: absolute;
    margin:5px 0 0 -13px;
    border-radius: 100%;
    background-color:#000000;
    width: 7px;
    height: 7px;
}
.orta  .urun-sistem .indirme .indirme-baslik{
    color:#000000;
    font-weight: bold;
    font-size:34px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin:50px auto 20px auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.orta .urun-sistem .indirme a img{
    width: 200px;
    height: 50px;
    margin-top:20px;
    transition: 0.2s;
}
.orta .urun-sistem .indirme a img:hover{
    transform: scale(1.2);
}
.orta .kurulum iframe{
    width: 850px;
    height: 500px;
    display: flex;
    margin: 50px auto;
}
@media only screen and (max-width:1000px){
    .orta .baslik{
        border-left: 10px solid #585858;
        font-size:34px;
        max-width: 500px;
    }
    .orta .baslik:hover{
        border-left:20px solid #585858;
    }
    @keyframes urun-resim{
        0%{

        }
        100%{
            width: 500px;
            height: 240px;
        }
    }
    .orta .kurulum iframe{
        width: 500px;
        height: 240px;
    }
}
@media only screen and (max-width:650px){
    .orta .baslik{
        font-size:24px;
        max-width: 400px;
    }
    @keyframes urun-resim{
        0%{

        }
        100%{
            width: 350px;
            height: 200px;
        }
    }
    .orta .urun img:hover{
        box-shadow: none;
    }
    .orta .kurulum iframe{
        width: 350px;
        height: 200px;
    }
}
@media only screen and (max-width:500px){
    .orta .baslik{
        font-size:20px;
        max-width: 320px;
    }
    @keyframes urun-resim{
        0%{

        }
        100%{
            width: 280px;
            height: 150px;
        }
    }
    .orta .urun img:hover{
        box-shadow: none;
    }
    .orta .kurulum iframe{
        width: 280px;
        height: 150px;
    }
}
@media only screen and (max-width:400px){
    .orta .urun img:hover{
        box-shadow: none;
    }
    .orta .baslik{
        margin-top:20px;
    }
    .orta .urun-aciklamasi{
        padding: 20px 10% ;
        width: 80%;
        text-align: center;
        margin: 0 ;
        font-size: 18px;
    }
}