/**********************************/
/********** General CSS ***********/
/**********************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Lato', sans-serif;
    color: #454545;
    font-weight: 300;
    background: #ffffff;
}

a {
    color: #333333;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 15px 0;
    color: #454545;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0 0 25px 0;
    color: #333333;
    font-weight: 400;
    
}

h1 {
    font-weight: 900;
}

img {
    width: 100%;
    height: auto;
}

/**********************************/
/***** Layout & Section Title *****/
/**********************************/
.endis {
    background: repeating-linear-gradient(
        45deg,
        white,
        white 3px,
        rgba(0, 116 ,217, 0.01) 3px,
        rgba(0, 116 ,217, 0.01) 5px
      );
}
.container2 {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
    
}

@media (min-width: 576px) {
    .container2 {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container2 {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container2 {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container2 {
        max-width: 1140px;
    }
}

.row2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    
}


.column2 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .column2 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

   .section-title h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}

@media (min-width: 768px) {
    .column2 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .section-title h1 {
            font-size: 40px;
            letter-spacing: 3px;
        }

    
}

@media (min-width: 992px) {
    .column2 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.section-title {
    width: 100%;
    text-align: center;
    padding: 45px 0 30px 0;
   
}

.section-title h1 {
    color: #353535;
    font-size: 40px;
    letter-spacing: 5px;
    margin-bottom: 5px;
}


.team-5 {
    margin-bottom: 30px;
}

.team-5:hover {
    -webkit-transform: translate(0px, -100px);;
    -ms-transform: translate(0px, -100px);
    -webkit-transition: -webkit-transform .5s; /* Safari */
	transition: transform .5s;
    transform: translate(0px, -50px);
   		filter: contrast(110%);
     	-webkit-box-shadow: 9px 10px 39px -2px rgba(0,0,0,0.3);
		-moz-box-shadow: 9px 10px 39px -2px rgba(0,0,0,0.3);
		box-shadow: 9px 10px 39px -2px rgba(0,0,0,0.3);

}
.team-5:hover .team-content>p
{
    -webkit-transform: translate(0px, -100px);;
    -ms-transform: translate(0px, -100px);
    -webkit-transition: -webkit-transform .5s; /* Safari */
	transition: transform 1.5s;
    transform: scale(1.5);
         
}

.team-5 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
}

.team-5 .team-img img {
    width: 160px;
    height: auto;
    border-radius: 100%;
    border: 20px solid #f3f4fa;
}
.team-5:hover .team-img img {
    width: 220px;
    height: auto;
    transition: transform 1.8s;
    border-radius: 10%;
    border: 20px solid #f3f4fa;
}


.team-5 .team-content {
     /* Tüm Bilgiler Çerçevesi */
    padding: 80px 20px 20px 20px;
    margin-top: -80px;
    text-align: center;
    background: #f3f4fa;
    border-radius: 10px;
}

.team-5 .team-content h2 {
      /* Adı Soyadı */
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 1px;
}

.team-5 .team-content h3 {
     /* Pozisyon */
    background-color: #b91414;
    color:#ffffff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 100;
}

.team-5 .team-content p {
    /* Telefon Numaraları */
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-5 .team-content h4 {
    /* Mail adresleri */
    font-size: 13px;
    font-weight: 200;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0;
}