<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-weight: 400;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

.video-area .video-play-button {
  position: relative;
  z-index: 10;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 44px;
  text-decoration: none;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-area i {
  z-index: 2;
  position: relative;
  color: white;
  font-size: 40px;
}

.video-area .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #202020;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-area .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
}

.video-area .video-play-button:hover:after {
  background-color: #070707;
}

.video-area .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-area .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.video-area .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.video-area .video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-area .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-area .video-overlay-close:hover {
  color: #202020;
}

.video-area .video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.page-title {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.55))), url(../images/img/medya-play.jpg) bottom;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../images/img/medya-play.jpg) bottom;
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 25px;
}

.page-title .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-title .title-box h2 {
  color: #ffffff;
  font-size: 39px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.page-title .title-box ul {
  padding: 0;
}

.page-title .title-box ul li {
  color: #ffffff;
  display: inline-block;
}

.page-title .title-box ul li a {
  text-decoration: none;
  color: #ffffff;
}

.page-title .title-box .color2 {
  color: #cfcfcf !important;
}

@media (min-width: 512) and (max-width: 683px) {
  .down-icon-page {
    padding: 184px 0;
  }
}

/***Medya sayfası css***/
.media_page {
  padding: 45px 0;
}

.media_page .s-plus-text {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bolder;
  color: #202020;
  margin-bottom: 0;
  border-left: 5px solid #3a4559;
  padding-left: 8px;
  display: block;
  text-align: left;
}

.media_page .video {
  padding-bottom: 30px;
}

.media_page .video .video__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.media_page .video .video__inner .video__area {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.media_page .video .video__inner .video__area .block-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.media_page .video .video__inner .video__area .block-title h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bolder;
  color: #202020;
  margin-bottom: 10px;
  border-left: 5px solid #3a4559;
  padding-left: 8px;
  display: block;
  text-align: left;
}

.media_page .video .video__inner .video__area .youtube-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(12, 13, 16, 0.8)), to(rgba(41, 42, 51, 0.47))), url(../images/img/video-bg.png);
  background-image: linear-gradient(rgba(12, 13, 16, 0.8), rgba(41, 42, 51, 0.47)), url(../images/img/video-bg.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-right: 15px;
  margin-bottom: 15px;
  width: 224px;
  height: 165px;
}

.media_page .video .video__inner .video__area .youtube-area .area_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.media_page .video .video__inner .video__area .youtube-area .area_content .popup-youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  text-decoration: none;
  margin-left: 10px;
  margin-bottom: 5px;
}

.media_page .video .video__inner .video__area .youtube-area .area_content .popup-youtube img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 41px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .video__area {
    margin-right: 0 !important;
  }
}

@media (min-width: 540px) and (max-width: 720px) {
  .video__area {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
}

.members {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.members .member {
  margin-right: 20px;
  width: 300px;
  height: 200px;
  border: 2px solid #fff;
  position: relative;
}

.members .member img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.members .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202020;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px 1px #00000042;
          box-shadow: 0 0 2px 1px #00000042;
}

.members .overlay a {
  text-decoration: none;
  font-size: 17px;
  color: #fff;
  margin-top: 5px;
}

.members .member:hover .overlay {
  opacity: .9;
}

.members .member h3 {
  color: #fff;
  font-size: 2rem;
  margin: 0;
}

.members .member .icons {
  color: #fff;
  font-size: 2rem;
  position: absolute;
  left: 24%;
  top: 50%;
  cursor: pointer;
}

@media (max-width: 768px) {
  .members {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .members .member {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=media.css.map */</pre></body></html>