.logolar {
  
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}
.logo-band {
  overflow: hidden;
  background: #fff;

}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.logo-container {
  display: flex;
  width: max-content;
}

.logo-container::after {
  content: "";
  display: flex;
  /* logoları otomatik tekrar ettirmek için JS yerine CSS ile klon */
}

.logo-track img {
  height: 60px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
  margin-left: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
}


.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Footer Container */
.footer-container {
  background-color: #eaeefa7d;
  color: #fff;
  padding: 60px 20px 20px;
}


.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.logo-column {
  flex: 1 1 150px;
  text-align: left;
}

.footer-logo {
  max-width: 175px;
  margin-bottom: 10px;
}
.footer-about {
    font-size: 12px;
    color: #4e4e4e;
    letter-spacing: 1px;
    line-height: 16px;
}
.footer-heading {
    font-size: 18px;
    margin-bottom: 7px;
    font-weight: 600;
    color: #201e42;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: ridge 1px #d5d5d533;
    padding-bottom: 7px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #5f6372;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 1px;
    font-size: 14px;
}
.footer-links a:hover {
  color: #3e3e3e;
}

.footer-social {
  text-align: center;
  margin: 20px 0;
}

.footer-icon {
  margin: 0 10px;
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}

.footer-icon:hover {
  color: #f39c12;
}

.footer-bottom {
    text-align: center;
    font-size: 11px;
    color: #888;
    border-top: solid 1px #d3d3d34a;
    padding-top: 40px;
    letter-spacing: 2px;
    padding-bottom: 20px;
}

.footer-bottom p {
  margin: 0;
}

ul {list-style: inside;margin-top: 20px;}

.ic-list .btn {
  margin-top: 30px;
  color: white;
  background-color: #325ff4;
  font-size: 1.1em;
  padding-left: 40px;
  padding-right: 40px;
  letter-spacing: 2px;
  font-weight: 600;
}

.ekran {
  width: 90%;
  height: 60vh;
  background-color: transparent;
  border-radius: 10px 0px 0px 10px;
  opacity: 0.99;
  background-image: url(img/ekran.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.insanlar {
    width: 90%;
    height: 60vh;
    background-color: transparent;
    border-radius: 7px 0px 0px 7px;
    opacity: 0.99;
    background-image: url('img/para.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border: solid 12px white;
}


div#ilkmavi {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.blogcard {
  box-sizing: border-box;
  display: flex;
  max-width: 320px;
  background-color: rgb(255 239 177);
  transition: all .15scubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 7px;
  cursor: pointer;
  margin-left: 10px;

}
.blogcard:hover {
  background-color: rgb(255, 223, 97);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.081);
}

.date-time-container {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding: 0.5rem;
}

.date-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 1rem;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 1);
}

.separator {
  width: 1px;
  flex: 1 1 0%;
  background-color: rgba(17, 24, 39, 0.1);
}

.content {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  justify-content: space-between;
}

.infos {
  border-left: 1px solid rgba(17, 24, 39, 0.1);
  padding: 1rem;
}

.title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18.72px;
  color: rgba(17, 24, 39, 1);
}

.description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(78 78 78);
}

.blogaction {
  display: block;
  background-color: rgb(255 208 18);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 1);
  transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
}

.blogaction:hover {
  background-color: rgba(250, 204, 21, 1);
}
.blogscon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 30px;
}

.blogcontent {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.blogbaslik {
  width: 100%;
  text-align: center;
  margin-top: 120px;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: #bdbdbd;
}

.reklambanner {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.altfooterust {
  width: 100%;
  height: 120px;
  background-color: #f5f7fd;
}

.reklamic {
  width: 90%;
  min-height: 500px;
  margin-bottom: -100px;
  z-index: 2;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  /* background-image: url(img/altbanner.png); */
  background-size: cover;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 77px 77px, linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 77px 77px, linear-gradient(to bottom, #4154ef, #26429d);
  background-repeat: repeat;
}
.reklamleft {
  width: 50%;
}

.reklamright {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reklamscreenshot {
  width: 100%;
  max-height: 300px;
  height: 30vh;
  background-color: white;
  border-radius: 10px;
  border: solid 10px #b9c8f8;
}

.rbaslik {
  font-size: 3rem;
  color: white;
  letter-spacing: 2px;
  font-weight: 600;
}

.rp {
  padding-top: 30px;
  color: #ffffffc9;
  font-size: 1.3em;
  letter-spacing: 1px;
}
.rsinirlayici {
  display: flex;
  max-width: 1400px;
  align-items: center;
  justify-content: space-around;
}

.ozellikcontainer {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  gap: 100px; /* min 100px boşluk */
  background: white;
  align-items: stretch;
}

.feature-image, .feature-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-image {
  aspect-ratio: 1 / 1;
  background-color: #ffffff00;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}
.feature-title {
  font-size: 2.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-description {
  font-size: 1.4em;
  color: #000000c2;
  line-height: 1.7em;
  min-height: 140px;
  font-weight: 400;
  letter-spacing: 1px;
 }
@media (max-width: 900px) {
  .ozellikcontainer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .feature-image {
    width: 100%;
  }
}

.paddingekle {
  display: flex;
  width: 100%;
  gap: 100px;
  background-color: #f2f2f2;
  padding: 60px;
  border-radius: 14px;
}

.ozh {
  text-align: center;
  margin: 0 auto;
  font-size: 2.9em;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
  font-size: 2.6em;
  letter-spacing: 4px;
  padding-top: 120px;
  color: #000000;
  max-width: 700px;
  font-weight: 600;
}

.ana-kutu {
  max-width: 1400px;
  margin: 0px auto;
  padding: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}

.sol-kutu, .sag-kutu {
  flex: 1;
  min-width: 0;
  padding: 40px;
  background-color: #f2f2f2;
  margin-top: 100px;
  border-radius: 14px;
}

.baslik {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  font-size: 2em;
  color: #000000;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 25px;
}
.gnlp {
  font-size: 1.4em;
  color: #000000e3;
  line-height: 1.7em;
  min-height: 140px;
  font-weight: 500;
}
.foto {
  
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;


}

@media (max-width: 900px) {
  .ana-kutu {
    flex-direction: column;
    gap: 40px;
  }
}


.ic-list .features {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 40px;
}

.ic-list .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ic-list .features li + * {
  margin-top: 0.75rem;
}

.ic-list .features .icon {
  background-color:#718ff8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: static;
}

.ic-list .features .icon svg {
  width: 14px;
  height: 14px;
}

.ic-list .features + * {
  margin-top: 1.25rem;
}


.qbutton {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 18px;
  background-color: #006aff;
  border: 6px solid #c0dfff;
  color: white;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  height: 55px;
  margin-top: -5px;
}
.qtext {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 1px;
}
.qsvg {
  padding-top: 5px;
  height: 100%;
  width: fit-content;
}
.qsvg svg {
  width: 50px;
  height: 30px;
}
.qbutton:hover {
  border: 6px solid #b1d8ff;
  background-color: #1b7aff;
}
.qbutton:active {
  border: 5px solid #c0dfff;
}
.qbutton:hover .qsvg svg {
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}





.rh3::after {
  content: '';
  margin-top: -5px;
  height: 3px;
  width: 25%;

  display: block;
}

.rmain {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rcard {
    width: 98%;
    position: relative;
    background-color: rgb(16 16 16);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 1.5rem;
    padding: 1rem;
    max-width: 1000px;
}

.rcard:after {
  content: "";
  height: 70px;
  width: 1px;
  position: absolute;
  left: -1px;
  top: 65%;
  transition: top, opacity;
  transition-duration: 600ms;
  transition-timing-function: ease;
  background: linear-gradient(transparent, mediumslateblue,transparent);
  box-shadow: 0 0 30px rgb(78, 134, 255);
  opacity: 0;
}

.rcard:after {
  top: 65%;
  opacity: 0;
}

.rcard:hover:after {
  top: 25%;
  opacity: 1;
}

.rcard-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px, 
    transparent 1px
  );
  background-position: 50% 50%;
  background-size: 1.1rem 1.1rem;
  padding: 2.3rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.rcard-content .rh1,.rh3,.rp {
  text-align: center;
}

.rcard-content .rh1 {
  color: rgb(250 249 246);
  font-size: 2.6rem;
}

.rcard-content  .rh3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.rem;
}

.card-content  .rp {
  color: rgb(255 255 255 / 75%);
  line-height: 1.3rem;
}

@media(max-width: 700px) {
  .rcard {
    width: calc(100% - 2rem);
    margin: 0rem 1rem;
    padding: 0.75rem;
    border-radius: 1rem;
  }
}

@media(max-width: 600px) {
  .rcard-content {
    padding: 3rem;
  }

  .rcard-content  .rh1 {
    font-size: 2.2rem;
  }
}



.container-card-charts {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(to top, rgba(255, 255, 255), rgba(255, 255, 255, 0.1));
    border-radius: 32px;
    padding: 1.6px;
    box-shadow: 0 0px 20px 0px rgb(0 0 0 / 15%);

}

.container-card-charts::before {
    position: absolute;
    content: "";
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #3F51B5;
    z-index: -10;
    filter: blur(70px);
}
.card-charts {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #325ff4, #325ff4);
    border-radius: 32px;
    display: flex
;
    flex-direction: column;
    overflow: hidden;
}
.charts-lines {
  position: relative;
  width: 100%;
  height: 100%;
}
.charts-lines i {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
}
.lines span {
  width: 1.5px;
  height: 100%;
  margin: 0 18px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.025) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tags-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.tags-card .gradio {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 600;
    cursor: pointer;
}
.tags-card .gradio:hover {
  color: #ffffff;
}
.tags-card .gradio input {
  display: none;
}

.tags-card .gradio .name {
  width: 100%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 1;
}

.tags-card .gradio input:checked + .name {
    color: #000000;
    transform: scale(1.1);
}

.tags-card .gradio input:checked + .name::before {
    position: absolute;
    background-color: white;
    content: "";
    inset: 1px;
    z-index: -1;
    border-radius: 12px;
}

.main-texts {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  font-weight: 500;
}
.main-texts .title {
    color: #ffffff;
}
.main-texts .change {
color: #9eff2c;
}
.charts-lines path {
  opacity: 0;
}
.card-charts svg {
  transition: transform 0.5s ease;
}
.card-charts:hover svg {
  transform: scale(1.5);
}
.icon-week path {
  animation: draw 8s ease infinite;
}
.icon-month path {
  animation: draw 8s 3s ease infinite;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0.8;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1500;
    opacity: 0.8;
  }
}


mark {
    background-color: #FFC107;
    padding-left: 5px;
    padding-right: 5px;
}

h2.grafikic {
    font-size: 2.3em;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.grafikyanic p {
    line-height: 23px;
    font-size: 18px;
    letter-spacing: 1px;
}

.icerikcon2 {
    width: 90%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.icerikleft .icerikright {
padding: 1em;
max-width: 400px;
}







:root {
  --color-text: hsl(218, 19%, 45%);
  --color-text-muted: hsl(234, 10%, 40%);
  --color-purple: rgb(90, 126, 205);
}


 .ssscon {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}


.accordion {
  width: 100%;
  padding: 1.2rem 0;
  border-radius: 1rem;
  background: white;
/*   box-shadow: 0 0 5rem lightgrey; */
}
.accordion__item {
    margin-top: 17px;
}
.accordion__heading {
    margin-bottom: 1rem;
    padding: 0 1.4rem;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 2em;
}

.accordion__item:not(:last-child) {
    border-bottom: 1px solid #c4c6d34d;
}

.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: white;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
}
.accordion__btn:hover {
  color: var(--color-purple);
  background: hsl(248, 53%, 97%);
}

.accordion__item--active .accordion__btn {
    color: rgb(50 95 244);
    border-bottom: 2px solid rgb(50 95 244);
    background: hsl(248, 53%, 97%);
}
i.fa-regular.fa-circle-check {
    margin-right: 10px;
}

.accordion__icon {
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  opacity: 0.9;
}
.accordion__item--active .accordion__icon {
  transform: rotate(135deg);
}

.accordion__content {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}
.accordion__content p {
    padding: 1rem 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 25px;
}

.accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}





.sbutton {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 17px;

  transform-origin: center;

  padding: 1rem 2rem;
  background-color: transparent;

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion);
}

.sbutton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: var(--black-700);

  border-radius: var(--border_radius);
box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%), 0px 4px 10px -4px hsla(0 0% 0% / calc(1 - 0)), 0 0 0 calc(var(--active, 0) * 0.375rem) #ffe699;

  transition: all var(--transtion);
  z-index: 0;
}

.sbutton::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #FFC107;
    background-image: radial-gradient(at 51% 89%, #FFEB3B 0px, transparent 50%), radial-gradient(at 100% 100%, #FFC107 0px, transparent 50%), radial-gradient(at 22% 91%, #FF5722 0px, transparent 50%);
    background-position: top;
    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
}

.sbutton:is(:hover, :focus-visible) {
  --active: 1;
}
.sbutton:active {
  transform: scale(1);
}

.sbutton .dots_border {
    --size_border: calc(100% + 2px);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--size_border);
    height: var(--size_border);
    background-color: #2f2f2f;
    border-radius: var(--border_radius);
    z-index: -10;
}

.sbutton .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 100%;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.sbutton .sparkle {
  position: relative;
  z-index: 10;

  width: 1.75rem;
}

.sbutton .sparkle .path {
  fill: currentColor;
  stroke: currentColor;

  transform-origin: center;

  color: hsl(0, 0%, 100%);
}

.sbutton:is(:hover, :focus) .sparkle .path {
  animation: path 1s linear 0.5s infinite;
}

.sbutton .sparkle .path:nth-child(1) {
  --scale_path_1: 1.1;
}
.sbutton .sparkle .path:nth-child(2) {
  --scale_path_2: 1.1;
}
.sbutton .sparkle .path:nth-child(3) {
  --scale_path_3: 1.1;
}

@keyframes path {
  0%,
  34%,
  71%,
  100% {
    transform: scale(1);
  }
  17% {
    transform: scale(var(--scale_path_1, 1));
  }
  49% {
    transform: scale(var(--scale_path_2, 1));
  }
  83% {
    transform: scale(var(--scale_path_3, 1));
  }
}

.sbutton .text_button {
    position: relative;
    z-index: 10;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}







.cursor {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #325ff5;
  position: absolute;
  z-index: 99999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-f {
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.4202 42.4202C38.8403 46 33.3594 46 23.5 46C13.6406 46 8.15966 46 4.57983 42.4202C1 38.8403 1 33.3594 1 23.5C1 13.6406 1 8.15966 4.57983 4.57983C8.15966 1 13.6406 1 23.5 1C33.3594 1 38.8403 1 42.4202 4.57983C46 8.15966 46 13.6406 46 23.5C46 33.3594 46 38.8403 42.4202 42.4202Z' stroke='black'/%3E%3C/svg%3E%0A");
  background-size: cover;
  mix-blend-mode: difference;
  pointer-events: none;

  opacity: 0.4;
}







.footsosyal a {
    color: #000000;
    padding-right: 7px;
        text-decoration: none;
}
.footsosyal a:hover {
    color: #006aff;
    padding-right: 7px;
}

.footsosyal {
    margin-top: 15px;
    opacity: 0.8;
}