﻿@charset "utf-8";
/* CSS Document */

/* style.css */
.tab{display: flex; justify-content: center; margin-bottom: 32px;}
/* Sekme düğmeleri */
.tab .tablinks {display: flex; justify-content: center; align-items: center; padding: 0 24px; height:170px;font:22px 'Gilroy-Medium';
   /* background-color: #fff;*/
    border: none;
    color: #808080;
 
    cursor: pointer;  
}

/* Aktif sekme düğmesi */
.tab .tablinks.active {

}


.tab .tablinks.active:after
{
	
	    content: '';
    position: absolute;z-index: 5;bottom:-24px;
     width: 38px; height: 16px; background: url("tab-aktive.svg") no-repeat; background-size: 38px 16px;
 
	
}



/* Sekme içerikleri */
.tabcontent {
    display: none;
    padding: 0;
}

/* Aktif sekme içeriği */
.tabcontent.active {
    display: block; 
}


@media (min-width:1281px) 
{
   
} 

@media (min-width:1025px) and (max-width: 1280px) 
{
   
 } 


@media (min-width:801px) and (max-width: 1024px) 
{
   
 } 



@media (min-width: 481px) and (max-width: 800px) 
{
   
 } 






@media (min-width: 0px) and (max-width: 480px) 
{
	.tab .tablinks{flex-direction: column; font-size: 14px;text-align: center;width: 50%; margin-bottom: 32px;}
	.tab-icon{background-size: 118px 62px; width: 118px; height: 62px;margin-right: 0;}
	.tab{flex-wrap: wrap;}
	.tab .tablinks.active:after{bottom: 0;}
 } 



