
.main .main-content{position:absolute;margin-top:25%;text-align:center;width:60%;margin-left:20%}
.main-content p{color:#000;font-size:12px;line-height:1.6;margin-bottom:50px;font-weight:300;font-family: "Inter", sans-serif;}


.header.fixed{backdrop-filter:blur(16px);background-color:rgba(241,242,244,.8);position:fixed;top:0;left:0;padding:10px 0;border-bottom:1px solid #dfe3e7;z-index:9}

.logos:hover {
  filter: grayscale(0);
}


* {
  transition: all 0.3s ease-out;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

h3 {
  color: #262626;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666666;

  &.small {
    font-size: 14px;
  }
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 48px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #e33335;
  border-radius: 0 1px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.section2 {
  width: calc(min(70rem, 90%));
  margin-inline: auto;
  color: #111;

  h2 {
    letter-spacing: 0.025em;
    font-size: 1.6rem;
    line-height: 1.1;
    font-optical-sizing: auto;
    font-style: normal;
  }

  p {
    font-size: 10px;
    color: #000000;
    margin-top: 0.8em;
    margin-left: 0.3em;
    margin-right: 3.8em;
  }

  a {
    display: inline-block;
    text-decoration: none;
  }

  .guzellik-container {
    margin-top: 4em;
    display: grid;
    gap: 2rem;

   




    

    .card-inner {
      position: relative;
      width: inherit;
      height: 12rem;
      background: var(--clr);
      border-bottom-right-radius: 0;

      .box {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 1.6rem;
        overflow: hidden;

        .imgBox {
          position: absolute;
          inset: 0;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1rem;

           
          }
        }

        .guzellik-icon {
          position: absolute;
          bottom: -0.375rem;
          right: 0;
          width: 100%;
          height: 3rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          background: #fff;


          h3 {
            margin-left: 0.3em;
            font-size: 0.9rem;
            color: #030000;
            font-weight: 400;

          }

          input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
          }

          .checkmark {
            position: absolute;
            top: 0.938rem;
            right: 1.25rem;
            height: 1.063rem;
            width: 1.063rem;
            background-color: transparent;
            border: 0.063rem solid #c8c8c8;
            border-radius: 0.438rem;

            &::after {
              content: "";
              position: absolute;
              display: none;
              left: 0.375rem;
              top: 0.188rem;
              width: 0.188rem;
              height: 0.438rem;
              border: solid white;
              border-width: 0 0.125rem 0.125rem 0;
              -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
              transform: rotate(45deg);
            }
          }

          input:checked ~ .checkmark {
            background-color: #111;
          }

          input:checked ~ .checkmark:after {
            display: block;
          }
        }
      }
    }
  }
}

.logo {
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: brightness(0) saturate(100%);
}
.container-insta {
  width: 100%;
  margin: auto;
    margin-right: auto;
  margin-right: 140px;
  clear: both;
}

@media (min-width: 768px) {
  .container-insta {
    max-width: 77%; /* Masaüstünde %70 genişlik */
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


