@charset "UTF-8";

* {
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

img {
  border: 0; 
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  transition: 0.2s ease all;
}

table {
  border-collapse: collapse;
}

address,
em {
  font-style: normal;
}

html {
  height: 100%;
  font-size: 625%;
}

body {
  height: 100%;
  position: relative;
  font-family: sans-serif;
  font-size: 0.16rem;
  color: #000;
}

body::before {
  content: "";
  height: 18px;
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 2;
  background: #ededed;
  box-sizing: border-box;
}

body::after {
  content: "";
  height: 18px;
  width: 100%;
  left: 0;
  bottom: 0;
  position: fixed;
  z-index: 2;
  background: #ededed;
  box-sizing: border-box;
}

.line--left {
  height: 100%;
  width: 18px;
  left: 0;
  top: 0;
  position: fixed;
  background: #ededed;
  box-sizing: border-box;
}

.line--right {
  height: 100%;
  width: 18px;
  right: 0;
  top: 0;
  position: fixed;
  background: #ededed;
  box-sizing: border-box;
}

.line--center {
  height: 100%;
  width: 1px;
  left: 50%;
  top: 0;
  position: fixed;
  z-index: -1;
  background: #ededed;
  box-sizing: border-box;
}

.logo {
  padding: 2.25rem 0.28rem 2rem 0.28rem;
  text-align: center;
}

.team {
  display: flex;
}

.team__item {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
  overflow: hidden;
}

.team__item:hover img {
  transform: scale(0.95);
}

.team__item::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  z-index: -1;
  transform: skew(-45deg);
  transition: 0.3s ease;
}

.team__item:hover::after {
  width: 200%;
  background: #EDEDED;
}

.team__item--meister a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.1rem 0.32rem 0.1rem 0.5rem;
}

.team__item--abyell a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.18rem 0.28rem 0.18rem 0.18rem;
}

.about {
  margin-top: 1.5rem;
}

.about table {
  width: 100%;
}

.about th {
  width: 50%;
  padding: 2em;
  line-height: 1.7;
  text-align: right;
  vertical-align: top;
}

.about td {
  width: 50%;
  padding: 2em;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.footer {
  padding: 2rem 0;
  text-align: center;
}

.footer__logo {
  margin-bottom: 0.3rem;
}

.footer__copyright {
  font-size: 0.12rem;
}




@media screen and (max-width: 768px) {
  html {
    font-size: 525%;
  }
  
  body::before {
    height: 12px;
  }
  
  body::after {
    height: 12px;
  }
  
  .line--left {
    width: 12px;
  }
  
  .line--right {
    width: 12px;
  }
  
  .logo {
    padding: 1.5rem 0.28rem;
  }
  
  .team__item:hover img {
    transform: scale(1);
  }
  
  .team__item::after {
    content: none;
  }
  
  .team__item--meister a {
    padding: 0.1rem 0.22rem 0.1rem 0.4rem;
  }
  
  .team__item--abyell a {
    padding: 0.18rem 0.18rem 0.18rem 0.08rem;
  }
  
  .about {
    margin-top: 1rem;
  }
  
  .about th {
    display: block;
    width: 100%;
    padding: 0 2em;
    text-align: left;
  }
  
  .about td {
    display: block;
    width: 100%;
    padding: 0 2em 1.5em 2em;
  }
  
  .footer {
    padding: 1rem 0;
  }
}