@charset "UTF-8";
:root .test {
  background-color: blueviolet;
}
:root .test2 {
  background-color: rgb(132, 112, 152);
}
:root {
  --main-width:70%;
  --main-margin-1: 1vw;
  --main-margin-2: 2vw;
  --maincolor: #ff6d00;
  --maincolor2: #2D2D2D;
  --fc-white: rgb(255, 255, 255);
  --carpan:0.4px;
  --fill-1:rgb(255, 255, 255);
}
:root ::-moz-selection {
  background-color: var(--maincolor);
  color: var(--fc-white);
}
:root ::selection {
  background-color: var(--maincolor);
  color: var(--fc-white);
}

section {
  width: var(--main-width);
  margin-top: var(--main-margin-1);
  display: flex;
}

footer {
  margin-top: var(--main-margin-2);
}

img {
  border-radius: 15px 0 0 0;
  transition: filter 0.25s;
}
img:hover {
  filter: brightness(1.5);
}

a {
  color: rgb(86, 2, 176);
}

h1, h2, h3, h4, h5, p {
  margin-bottom: 1vw;
}

h1 {
  font-weight: 800;
  font-size: calc(3.5em + 0.5vw);
  color: rgb(45, 45, 45);
  line-height: 1.1;
  margin-top: 1vw;
}

h2, .ozet {
  font-weight: 700;
  font-size: calc(1em + 0.5vw);
  line-height: 1.2;
  margin-bottom: 1vw;
}

h3, p {
  font-weight: 300;
  font-size: calc(0.7em + 0.5vw);
  font-style: normal;
  line-height: 1.5;
}
h3 a, p a {
  color: #fff;
}
h3 img, p img {
  width: 100%;
  aspect-ratio: 3/2;
  margin: 1vw 0;
}

h4 {
  font-weight: 300;
  font-size: calc(0.8em + 0.5vw);
  font-style: normal;
  line-height: 1.2;
}

h5 {
  font-weight: 200;
  font-size: calc(0.5em + 0.5vw);
  font-style: normal;
  line-height: 1;
  color: rgb(53, 53, 53);
}

p a {
  color: var(--maincolor);
}
p a:hover {
  text-decoration: underline;
}
p strong {
  font-weight: 600;
}
p iframe {
  display: flex;
  width: 100%;
  aspect-ratio: 16/9;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.none {
  display: none;
}

.wrap {
  flex-wrap: wrap;
}

.center {
  align-items: center;
  justify-content: center;
}

.center-h {
  align-items: center;
}

.center-h-r {
  align-items: right;
}

.center-h-l {
  align-items: left;
}

.center-w {
  justify-content: center;
}

.center-w-r {
  justify-content: right;
}

.center-w-l {
  justify-content: left;
}

.center-w-bw {
  justify-content: space-between;
}

.center-w-sa {
  justify-content: space-around;
}

.of-hidden {
  overflow: hidden;
}

.of-x-hidden {
  overflow-x: hidden;
}

.margin-1 {
  margin: 0.5vw 0;
}

.margin-2 {
  margin: 0 0.5vw;
}

.margin-3 {
  margin-right: 0.5vw;
}

.mg-t-1 {
  margin-top: 1vw;
}

.mg-t-2 {
  margin-top: 0.5vw;
}

.mg-l-1 {
  margin-left: 0.5vw;
}

.mg-b-1 {
  margin-bottom: 1vw;
}

.pd-r-1 {
  padding-right: 1vw;
}

.pd-l-1 {
  padding-left: 1vw;
}

.padding-1 {
  padding: 3px;
}

.gap-1 {
  gap: 5px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.opacity-0 {
  opacity: 0;
}

.transition-1 {
  transition: opacity 1s;
}

.right-0 {
  right: 0;
}

.full {
  width: 100%;
  height: 100%;
}

.w100-vw {
  width: 100vw;
}

.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w5 {
  width: 5%;
}

.h100 {
  height: 100%;
}

.h90 {
  height: 90%;
}

.h80 {
  height: 80%;
}

.h70 {
  height: 70%;
}

.h60 {
  height: 60%;
}

.h50 {
  height: 50%;
}

.h40 {
  height: 40%;
}

.h30 {
  height: 30%;
}

.h20 {
  height: 20%;
}

.h10 {
  height: 10%;
}

.h5 {
  height: 5%;
}

.hauto {
  height: auto;
}

.h-1 {
  height: 4vw;
}

.h-2 {
  height: 3rem;
}

.h-3 {
  height: 48.7%;
}

.main-w {
  width: var(--main-width);
}

.w-1 {
  width: calc(33.3333333333% - 10px);
}

.w-2 {
  width: calc(25% - 10px);
}

.w-3 {
  width: calc(50% - 5px);
}

.w-4 {
  width: calc(50% - 5px);
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.fs-1 {
  font-size: calc(1em + 0.5vw);
}

.fs-2 {
  font-size: calc(1.6em + 0.5vw);
}

.fs-3 {
  font-size: calc(0.85em + 0.3vw);
}

.fs-4 {
  font-size: calc(0.75em + 0.3vw);
  line-height: calc(0.85em + 0.3vw);
}

.fs-5 {
  font-size: calc(3em + 0.5vw);
}

.aspect-16 {
  aspect-ratio: 16/9;
}

.aspect-9 {
  aspect-ratio: 9/16;
}

.aspect-3 {
  aspect-ratio: 3/2;
}

.aspect-4 {
  aspect-ratio: 100/28;
}

.bg-main {
  background-color: var(--maincolor);
}

.trans {
  background-color: transparent;
}

.fc-1 {
  color: var(--fc-white);
}

.fc-2 {
  color: var(--maincolor);
}

.fc-3 {
  color: #000;
  font-weight: 300;
}
.fc-3 a {
  color: #000;
}

.border-0 {
  border: none;
}

.border-1 {
  border: 0.5px solid rgb(255, 255, 255);
}

.radius {
  border-radius: 5px 0 0 0;
}

.pointer {
  cursor: pointer;
}

.fill-1 {
  fill: var(--fill-1);
}

.hover-under-1:hover {
  -webkit-text-decoration: underline solid 1px var(--maincolor);
          text-decoration: underline solid 1px var(--maincolor);
}

.hover-under-2:hover {
  filter: brightness(-0.5);
}

.opacity-1 {
  opacity: 0.5;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

*::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: #DFE9EB;
}

*::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: var(--maincolor);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #62A34B;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #62A34B;
}

.slink {
  color: var(--maincolor);
  font-weight: 800;
  text-shadow: 2px -1px 2px rgba(74, 32, 20, 0.35);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  padding: 0 5%;
  width: 100%;
  height: 40%;
  transition: filter 0.5s;
}
.slink:hover {
  filter: brightness(2);
}

.icreklam {
  display: flex !important;
  position: relative;
  width: 100% !important;
  aspect-ratio: 16/5 !important;
}
.icreklam img {
  width: 100% !important;
  height: 100% !important;
}

.manset a {
  opacity: 0;
}

.sidebar a {
  margin-left: auto;
  margin-bottom: 1vw;
}

.tags div a {
  color: #fff;
}
.tags div a:hover {
  text-decoration: underline;
}

.baslik {
  margin-top: 2vw;
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 600;
  border-bottom: 2px solid var(--maincolor2);
}
.baslik a {
  color: var(--maincolor2);
}
.baslik span {
  width: 0.5em;
  margin-right: 0.5em;
  background-color: var(--maincolor2);
}

@media (max-width: 1024px) {
  .fs-3 {
    font-size: 1.5vw;
  }
  .fs-2 {
    font-size: 2.5vw;
  }
  .fs-1 {
    font-size: 1.5vw;
  }
}
@media (max-width: 767px) {
  body {
    padding: 0 4%;
  }
  section {
    width: 95%;
  }
  .w-1, .w-2, .w-3, .w-4 {
    width: 100%;
    margin-bottom: 7vw;
  }
  .fs-3, .fs-2, .fs-1 {
    font-size: 6vw;
  }
  .h-1 {
    height: 9vw;
  }
  .social, .search {
    display: none;
  }
  .logom, .manset, .header-container {
    width: 100%;
    margin: 3vw 0;
  }
  header {
    margin-bottom: 2vw;
  }
  .logo {
    width: 30%;
    padding: 2vw;
  }
  .w-3 a {
    width: 100%;
  }
  .content-info, .main-content, .sidebar {
    width: 100%;
  }
  .content {
    display: flex;
    flex-direction: column;
  }
  .tags {
    margin-bottom: 1.5vw;
  }
  .header-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.video-item {
  content-visibility: auto; /* Tarayıcıya sadece ekrana girince işlemesini söyler */
  transition: opacity 0.3s ease;
}

.video-item:hover {
  opacity: 0.9;
}/*# sourceMappingURL=tokens.css.map */