:root {
  --first-font: "Mont";
}

body {
  font-family: var(--first-font);
  font-weight: 600;
  font-size: 16px;
  overflow-x: hidden;
  background: linear-gradient(270deg, #f9f8fa 0%, #eae9ed 50%, #f9f8fa 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pr-75 {
  padding-right: 75px !important;
}

.f-size-30 {
  font-size: 30px !important;
}

.top-25 {
  top: 25px !important;
}

.top-60 {
  top: 60px !important;
}

header {
  padding: 20px 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff40;

  #hi {
    display: none;
  }

  .logo {
    img {
      height: 56px;
    }
  }

  nav {
    a {
      margin: 0 16px;
      font-weight: 600;
      font-size: 16px;
      line-height: 100%;
      color: #f3f2f5;
      text-transform: uppercase;
    }
  }

  .langs {
    a {
      font-weight: 600;
      font-size: 16px;
      line-height: 100%;
      color: #f3f2f5;
      text-transform: uppercase;
    }
  }
}

.in-header {
  position: relative;
  background: #f9f8fa;

  nav {
    a {
      margin: 0 16px;
      font-weight: 600;
      font-size: 16px;
      line-height: 100%;
      color: #6b6473;
      text-transform: uppercase;
    }
  }

  .langs {
    a {
      font-weight: 600;
      font-size: 16px;
      line-height: 100%;
      color: #6b6473;
      text-transform: uppercase;
    }
  }
}

.home-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;

  video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    background: #00000066;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .content {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;

    .title {
      font-family: var(--first-font);
      font-weight: 400;
      font-size: 55px;
      line-height: 70px;
      margin-bottom: 30px;
    }
  }

  .slide-shape {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translate(0, -50%);
  }
}

.home-about {
  padding: 100px 0;

  .about-box {
    display: flex;

    .left,
    .middle,
    .right {
      width: 100%;
    }

    .left {
      overflow: hidden;
      border-top-left-radius: 32px;
      border-bottom-left-radius: 32px;
    }

    .middle {
      background: linear-gradient(230.84deg, #eae9ed -0.93%, #d8d5dd 100%);
      border-radius: 32px;
      padding: 32px;
      box-shadow:
        0px 17px 38px 0px #0000000d,
        0px 69px 69px 0px #0000000a,
        0px 155px 93px 0px #00000008,
        0px 275px 110px 0px #00000003,
        0px 430px 121px 0px #00000000;
      position: relative;
      overflow: hidden;

      .bg {
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        width: 100%;
        opacity: 0.2;
        transform: rotateY(180deg);
      }

      .mini-title {
        font-weight: 500;
        font-size: 16px;
        color: #928a9d;
        line-height: 140%;
        margin-bottom: 4px;
        position: relative;
      }

      .title {
        font-weight: 600;
        font-size: 32px;
        color: #0a4b9e;
        margin-bottom: 32px;
        line-height: 140%;
        position: relative;
      }

      .desc {
        font-family: Mont;
        font-size: 16px;
        color: #6b6473;
        line-height: 180%;
        position: relative;
      }

      a {
        background: linear-gradient(
          90deg,
          #42903a 0%,
          #55b84a 45%,
          #0a4b9e 55%,
          #0455c9 100%
        );
        background-size: 220% 100%;
        background-position: 100% 50%;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 16px;
        margin-top: 0;
        width: fit-content;
        float: right;
        transition: background-position 0.5s ease-in-out;

        span {
          font-weight: 500;
          font-size: 12px;
          line-height: 140%;
          letter-spacing: 0%;
          vertical-align: middle;
          text-transform: uppercase;
          color: #fff;
          text-align: left;

          span {
            font-weight: 800;
            font-size: 20px;
            line-height: 140%;
            letter-spacing: 0%;
            vertical-align: middle;
            text-transform: uppercase;
          }
        }

        img {
          margin-left: 60px;
        }

        &:hover {
          background-position: 0% 50%;
        }
      }

      .a-img {
        height: 250px;
        object-fit: cover;
        border-radius: 20px;
        position: relative;
        z-index: 2;
      }

      .b-amblem {
        position: absolute;
        top: -50px;
        right: 15%;
        height: 120%;
      }
    }
  }
}

.home-tabs {
  padding: 50px 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;

  .tab-link {
    padding: 32px 48px 32px 120px;
    cursor: pointer;

    span {
      font-weight: 500;
      font-size: 20px;
      line-height: 130%;
      letter-spacing: 0%;
      color: #ffffff80;
      display: block;
      margin-top: 30px;
      transition: all 0.3s ease;
    }

    img {
      opacity: 0.5;
      transition: all 0.3s ease;
    }
  }

  .tab-link.active {
    background: #ffffff1a;
    backdrop-filter: blur(16px);
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;

    img {
      opacity: 1;
    }

    span {
      color: #fff;
    }
  }

  .tab-cont {
    padding: 32px 120px 32px 64px;
    display: none;

    .title {
      font-weight: 700;
      font-size: 40px;
      line-height: normal;
      letter-spacing: 0%;
      color: #f9f8fa;
      margin-bottom: 64px;
    }

    .desc {
      font-weight: 400;
      font-size: 16px;
      line-height: 180%;
      letter-spacing: 0%;
      color: #f9f8fa;
    }
  }

  .tab-cont.active {
    display: block;
  }
}

.home-services {
  padding: 100px 0;
  cursor: pointer;

  .mini-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #928a9d;
  }

  .title {
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0a4b9e;
    margin-top: 10px;
  }

  .service-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #928a9d;
  }

  .services-slider {
    margin: 50px -250px 0px -250px;

    .box {
      border-radius: 25px;
      overflow: hidden;
      margin: 0 15px;
      display: block;
      opacity: 1;
      transition: all 0.5s ease;
      /* cursor: none; */

      .cont {
        background: linear-gradient(
          180deg,
          rgba(13, 50, 104, 0.8) 0%,
          rgba(12, 53, 113, 0.8) 36.29%,
          rgba(8, 71, 161, 0.8) 78.08%,
          rgba(4, 85, 201, 0.8) 100.46%
        );
        box-shadow:
          0px 14px 31px 0px #0000000d,
          0px 56px 56px 0px #0000000a,
          0px 126px 76px 0px #00000008,
          0px 224px 90px 0px #00000003,
          0px 351px 98px 0px #00000000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px;

        .s-mini-title {
          font-weight: 500;
          font-size: 12px;
          line-height: 140%;
          letter-spacing: 0%;
          color: #dbdbdb;
        }

        .s-title {
          font-weight: 700;
          font-size: 26px;
          line-height: 140%;
          letter-spacing: 0%;
          color: #fff;
        }

        .s-btn {
          transition: all 0.3s ease;
        }
      }
    }

    .box:hover {
      .s-btn {
        transform: rotate(45deg);
      }
    }

    .slick-center .box {
      opacity: 1;
    }

    video {
      width: 100%;
      height: 400px;
      object-fit: cover;
      margin-bottom: -10px;
    }
  }

  .swipe-btn {
    width: 180px;
    position: absolute;
    pointer-events: none;
    z-index: 999;
    display: none;
    transition: transform 0.1s ease-out;
  }
}

.home-references {
  background: #f9f8fa;
  padding: 30px 0;

  .r-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    margin: 0 30px;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(1);
    }
  }
}

footer {
  position: relative;
  padding: 100px 0;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 100%;
    background: linear-gradient(270deg, #55ba47 0%, #0d3268 100%);
  }

  .menu-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #3a8a2f;
  }

  .foot-menu {
    padding: 0;
    margin: 0;
    list-style: none;

    a {
      font-weight: 500;
      font-size: 14px;
      line-height: 140%;
      letter-spacing: 0%;
      margin: 15px 0;
      display: block;
      color: #6b6473;
    }
  }

  hr {
    margin: 50px 0;
  }

  .foot-copy {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #6b6473;
  }

  .foot-social {
    margin: 0 7.5px;
  }
}

.page-title {
  background: #103869;
  background: linear-gradient(
    90deg,
    rgba(16, 56, 105, 1) 20%,
    rgba(55, 127, 44, 1) 100%
  );
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  overflow: hidden;

  .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #ffffff;
    text-align: left;
    position: relative;
    z-index: 2;
  }

  .bread-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .overlay {
    background: #103869;
    background: linear-gradient(
      90deg,
      rgba(16, 56, 105, 1) 20%,
      rgba(55, 127, 44, 0) 100%
    );
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    left: 0;
  }
}

.page-navigation {
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #d8d5dd;

  a {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    padding: 30px 15px;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: -1px;

    &.active,
    &:hover {
      color: #3a8a2f;
      border-bottom: 1px solid #3a8a2f;
    }
  }
}

.in-content {
  padding: 100px 0;

  img {
    width: 100%;
  }

  p {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
    color: #6b6473;
  }

  .img-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .mini-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #928a9d;
    margin-bottom: 10px;
  }

  .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0a4b9e;
    margin-bottom: 50px;
  }

  .signature {
    width: 150px;
    margin-top: 30px;
  }

  video {
    width: 100%;
    pointer-events: none;
    object-fit: cover;
  }
}

.prin-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;

  .box {
    box-shadow:
      0px 13px 29px 0px #00000005,
      0px 53px 53px 0px #00000005,
      0px 120px 72px 0px #00000003,
      0px 214px 86px 0px #00000000,
      0px 334px 94px 0px #00000000;
    padding: 48px 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    background: url("../img/ilke-bg.png") no-repeat;
    background-size: 100%;
    background-position: center;

    img {
      margin-right: 30px;
      height: 80px;
      width: 80px;
      object-fit: contain;
    }

    .mini-title {
      font-weight: 600;
      font-size: 14px;
      color: #6b6473;
    }

    .title {
      font-weight: 600;
      font-size: 18px;
      color: #3a363f;
      line-height: 28px;
      margin-bottom: 0;
    }
  }
}

.certificates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  .box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0px 9.14px 20.24px 0px #0000000d,
      0px 36.57px 36.57px 0px #0000000a,
      0px 82.29px 49.63px 0px #00000008,
      0px 146.29px 58.78px 0px #00000003,
      0px 229.22px 64px 0px #00000000;
    height: fit-content;

    .desc {
      padding: 22px 20px;
      background: linear-gradient(
        180deg,
        rgba(13, 50, 104, 0.8) 0%,
        rgba(12, 53, 113, 0.8) 36.29%,
        rgba(8, 71, 161, 0.8) 78.08%,
        rgba(4, 85, 201, 0.8) 100.46%
      );
      display: flex;
      align-items: center;

      .title {
        font-weight: 600;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
        color: #fff;
        margin-bottom: 0px;
      }

      p {
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0%;
        color: #fff;
      }

      img {
        width: 40px;
        margin-left: 30px;
      }
    }

    .cert-img {
      height: 350px;
      object-fit: contain;
      background: #fff;
    }
  }
}

.odullerimiz {
  grid-template-columns: repeat(3, 1fr);
}

.incelme-wrap {
  background: linear-gradient(230.84deg, #eae9ed -0.93%, #d8d5dd 100%);
  box-shadow:
    0px 14px 31px 0px #0000000d,
    0px 56px 56px 0px #0000000a,
    0px 126px 76px 0px #00000008,
    0px 224px 90px 0px #00000003,
    0px 351px 98px 0px #00000000;
  border-radius: 32px;
  padding: 50px 100px;
  margin-top: 100px;
  position: relative;

  .incelme-slider {
    .i-slide {
      display: flex;
      align-items: center;

      .mini-title {
        font-weight: 600;
        font-size: 32px;
        color: #0a4b9e;
        margin-bottom: 30px;
      }

      img {
        width: 40%;
        padding: 0 30px;
      }

      p {
        font-weight: 300;
        font-size: 14px;
        color: #6b6473;
      }
    }
  }

  .i-prev,
  .i-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
  }

  .i-prev {
    left: 30px;
    transform: translate(0, -50%) rotateY(180deg);
  }

  .i-next {
    right: 30px;
  }
}

.sekillendirebilirlik {
  display: flex;
  align-items: center;
  background: linear-gradient(230.84deg, #eae9ed -0.93%, #d8d5dd 100%);
  padding: 50px 100px;
  border-radius: 32px;

  .mini-title {
    font-weight: 600;
    font-size: 32px;
    color: #0a4b9e;
    margin-bottom: 30px;
  }

  img {
    width: 40%;
    padding: 0 30px;
  }

  p {
    font-weight: 300;
    font-size: 14px;
    color: #6b6473;
  }
}

.urun-devreye-alma {
  .big-title {
    font-weight: 600;
    font-size: 48px;
    color: #3a363f;
    margin-bottom: 100px;

    span {
      color: #55ba47;
    }
  }

  .boxes {
    position: relative;
    min-height: 65vw;

    .box {
      position: absolute;
      width: 30vw;
      z-index: 2;

      .icon {
        background: #55ba47;
        width: 88px;
        display: block;
        height: 88px;
        padding: 20px;
        border-radius: 50%;
        box-shadow:
          0px 2px 5px 0px #55ba473b,
          0px 10px 10px 0px #55ba4733,
          0px 22px 13px 0px #55ba471f,
          0px 39px 15px 0px #55ba4708,
          0px 61px 17px 0px #55ba4700;
        margin-bottom: 50px;
      }

      .title {
        font-weight: 600;
        font-size: 24px;
        color: #3a363f;
        margin-bottom: 30px;
      }

      .desc {
        font-weight: 400;
        font-size: 14px;
        color: #928a9d;
      }

      .num {
        background: linear-gradient(180deg, #d8d5dd 0%, #f1f0f3 126.67%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        font-size: 128px;
        letter-spacing: 0%;
        position: absolute;
        right: -100px;
        top: 120px;
        line-height: 128px;
      }

      &:first-of-type {
        left: 6vw;
        top: 4vw;
      }

      &:nth-child(2) {
        right: 13vw;
        top: 0vw;
      }

      &:nth-child(3) {
        top: 32vw;
        right: 12vw;
      }

      &:nth-child(4) {
        top: 39vw;
        left: 6vw;
      }
    }
  }

  .bg-shape {
    position: absolute;
    top: 0;
    left: 8vw;
    width: 85vw;
  }
}

.cnc-dik-isleme {
  .box {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(180deg, #d8d5dd 0%, #eae9ed 100%);
    box-shadow:
      0px 9.14px 20.24px 0px #0000000d,
      0px 36.57px 36.57px 0px #0000000a,
      0px 82.29px 49.63px 0px #00000008,
      0px 146.29px 58.78px 0px #00000003,
      0px 229.22px 64px 0px #00000000;
    height: 100%;

    .mini-title {
      font-weight: 600;
      font-size: 24px;
      color: #3a363f;
      padding: 30px 30px 15px 30px;
      margin-bottom: 0;
    }

    .desc {
      padding: 0 30px 30px 30px;
      font-weight: 600;
      font-size: 14px;
      color: #6b6473;

      p {
        margin-bottom: 0;
      }
    }
  }
}

.contact-page {
  label {
    font-weight: 500;
    font-size: 14px;
    color: #6b6473;
    display: block;
  }

  .p-btns {
    position: absolute;
    left: 0;
    top: -65px;
    width: 93%;
    text-align: right;

    a {
      display: inline-block;
      font-weight: 700;
      font-size: 16px;
      color: #0e3268;
      border-radius: 10px;
      padding: 15px 30px;
      border: 1px solid #0e3268;
      margin-right: 10px;
      line-height: normal;
      transition: all 0.3s ease;

      &:first-of-type {
        margin-left: 50px;
      }

      &:hover,
      &.active {
        color: #ffffff;
        background: #0e3268;
      }
    }
  }

  input,
  textarea,
  select {
    background: #0000000d;
    border-radius: 8px;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 30px;

    &:focus {
      outline: 0;
      box-shadow: none;
    }
  }

  textarea {
    height: 200px;
  }

  button {
    background: #0a4b9e;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    padding: 15px 32px;
  }

  .cont-box {
    background: linear-gradient(
      180deg,
      rgba(13, 50, 104, 0.8) 0%,
      rgba(12, 53, 113, 0.8) 36.29%,
      rgba(8, 71, 161, 0.8) 78.08%,
      rgba(4, 85, 201, 0.8) 100.46%
    );
    box-shadow:
      0px 17px 37px 0px #0000000d,
      0px 67px 67px 0px #0000000a,
      0px 150px 90px 0px #00000008,
      0px 268px 107px 0px #00000003,
      0px 418px 117px 0px #00000000;
    padding: 24px;
    border-radius: 15px;

    .top {
      display: flex;
      align-items: center;
      justify-content: space-between;

      .title {
        font-weight: 600;
        font-size: 24px;
        color: #fff;
        margin-bottom: 0;
      }

      .c-btn {
        transition: all 0.3s ease;
      }

      .c-btn img {
        height: 26px;
      }
    }

    .cont-collapse {
      display: none;
      margin-top: 50px;

      .content {
        .icon {
          width: 60px;
          height: 60px;
          margin-bottom: 30px;
          background: #0183ff;
          border-radius: 50%;
          padding: 15px;
          box-shadow:
            0px 1.45px 3.64px 0px #0283ff3b,
            0px 7.27px 7.27px 0px #0283ff33,
            0px 16px 9.45px 0px #0283ff1f,
            0px 28.36px 10.91px 0px #0283ff08,
            0px 44.36px 12.36px 0px #0283ff00;
        }

        .icon-group {
          display: flex;
          align-items: center;
          margin-top: 50px;

          .icon {
            margin-right: 15px;
          }
        }

        .cont-title {
          font-weight: 600;
          font-size: 20px;
          color: #006afa;
          margin-bottom: 15px;
        }

        .desc p {
          font-weight: 500;
          font-size: 14px;
          color: #fff;
        }
      }
    }

    &.active {
      .cont-collapse {
        display: block;
      }

      .c-btn {
        transform: rotate(180deg);
      }
    }
  }

  iframe {
    border-radius: 15px;
  }
}

.ref-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  .box {
    background: #eeeeee;
    padding: 60px;
    display: flex;
    align-items: center;
  }
}

.history {
  padding: 100px 0;

  /* .his-list {
        width: 100%;
        display: block;
        float: left;

        .history-box {
            position: relative;
            padding: 0 22px 0 80px;
            border-right: 1px solid #C1BDC8;
            text-align: right;
            width: 50%;
            float: left;

            .title {
                font-weight: 700;
                font-size: 28px;
                color: #3A8A2F;
                margin-bottom: 10px;
                position: relative;

                &::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: -30px;
                    transform: translate(0, -50%);
                    width: 15px;
                    height: 15px;
                    background: #0e3268;
                    border-radius: 50%;
                }
            }
        }

        &:nth-of-type(even) {

            .history-box {
                padding: 0 80px 0 22px;
                border-left: 1px solid #C1BDC8;
                border-right: 0;
                text-align: left;
                float: right;
                width: calc(50% + 1px);

                .title {
                    color: #0e3268;

                    &::after {
                        top: 50%;
                        left: -30px;
                        right: auto;
                        background: #3a8a2f;
                    }
                }
            }
        }
    } */
  .s-big {
    img {
      border-radius: 20px;
      position: relative;
    }

    .desc-wrap {
      padding-left: 75px;
      border-left: 1px solid #d8d5dd;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;

      .title {
        font-weight: 600;
        font-size: 40px;
        color: #3a8a2f;
        line-height: 52px;
      }

      .desc {
        font-weight: 600;
        font-size: 14px;
        color: #6b6473;
      }

      .date {
        font-size: 30px;
        font-weight: bold;
        color: #0e3167;
        line-height: 30px;
        margin-bottom: 30px;
        margin-left: 0;
        background: #d8d5dd;
        padding: 20px 40px;
        width: fit-content;
        margin-left: -30%;
        padding-left: 30%;
        border-radius: 40px;
      }
    }
  }

  .his-since {
    margin-bottom: 100px;
    border-bottom: 1px solid #3a8a2f;

    .s-since {
      padding-bottom: 30px;
      font-weight: 600;
      font-size: 18px;
      color: #3a8a2f;
      text-align: center;
      position: relative;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;

      &::after {
        content: "";
        position: absolute;
        height: 10px;
        width: 1px;
        background: #3a8a2f;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        transition: all 0.3s ease;
      }

      &::before {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #3a8a2f;
        bottom: 20px;
        opacity: 0;
        transition: all 0.3s ease;
      }

      &.slick-current {
        font-size: 30px;

        &::after {
          height: 20px;
        }

        &::before {
          opacity: 1;
        }
      }
    }
  }
}

.map-wrapper {
  width: 100%;
  height: 100vh;
  /* border: 1px solid #ddd; */
  overflow: hidden;
  /* pan sırasında dışarı taşmasın */
  touch-action: none;
  /* mobilde pinch/drag çatışmasını azaltır */

  svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* .city {
        fill: #CCCCCC;
        fill-opacity: 1;
        stroke: white;
        stroke-opacity: 1;
        stroke-width: 0.5;
        transition: all .3s ease-out;
        cursor: pointer;
    }

    .city:hover {
        fill: #a9a9a9;
    }

    .show-city-name {
        position: absolute;
        padding: 5px 25px;
        opacity: 1;
        font-weight: 600;
        font-size: 17px;
        border: 1px solid #FFFFFF;
        background: #70C464;
        color: #fff;
    }

    .show-city-name.active {
        opacity: 1;
        visibility: visible
    }

    #svg-turkey-map {
        transform: scale(3) translateX(-90px) translateY(-30px);
    } */
}

.map-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.map-btn {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
}

.map-btn:active {
  transform: translateY(1px);
}

.products {
  padding: 100px 0;
  position: relative;
  background: #e1e1e1;
  /* 
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 50%;
        background: linear-gradient(150.06deg, #0D3268 0%, #0C3571 33.12%, #0847A1 70.99%, #0455C9 100%);
    } */

  .product-img {
    position: relative;
    z-index: 2;
    pointer-events: none;

    .first-img {
      transition: all 0.3s ease;
    }

    .hov-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: all 0.3s ease;
      /* -webkit-filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px 1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px -1px 0 white);

            filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px 1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px -1px 0 white); */

      &.active {
        opacity: 1;
      }
    }
  }

  .product-name {
    padding: 0 50px;

    a {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      font-family: var(--first-font);
      font-weight: 600;
      font-size: 24px;
      color: #0e3268;
      border-bottom: 1px solid #bfbdc1;
      padding: 15px 0;
      transition: all 0.3s ease;

      svg {
        transition: all 0.3s ease;
      }

      &:hover {
        svg {
          transform: rotate(45deg);

          circle {
            fill: #509d6f;
            stroke: #509d6f;
          }

          path {
            stroke: #fff;
          }
        }
      }
    }
  }

  .s-product {
    display: none;

    &.active {
      display: block;
    }
  }

  .p-btns {
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;

    a {
      display: inline-block;
      font-weight: 700;
      font-size: 16px;
      color: #0e3268;
      border-radius: 10px;
      padding: 15px 30px;
      border: 1px solid #0e3268;
      margin-right: 10px;
      line-height: normal;
      transition: all 0.3s ease;

      &:first-of-type {
        margin-left: 50px;
      }

      &:hover,
      &.active {
        color: #ffffff;
        background: #0e3268;
      }
    }
  }
}

.map-wrapper {
  position: relative;

  .map-info {
    position: absolute;
    top: 50%;
    right: 50px;
    width: 40%;
    transform: translate(0, -50%);
    background: linear-gradient(
      180deg,
      rgba(13, 50, 104, 0.8) 0%,
      rgba(12, 53, 113, 0.8) 36.29%,
      rgba(8, 71, 161, 0.8) 78.08%,
      rgba(4, 85, 201, 0.8) 100.46%
    );
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    display: none;
    box-shadow:
      0px 13px 29px 0px #00000005,
      0px 53px 53px 0px #00000005,
      0px 120px 72px 0px #00000003,
      0px 214px 86px 0px #00000000,
      0px 334px 94px 0px #00000000;

    .title {
      display: flex;
      align-items: center;
      justify-content: space-between;

      #country-name {
        font-family: var(--first-font);
        font-weight: 600;
        font-size: 24px;
        color: #fff;
      }
    }

    .m-title {
      font-weight: 500;
      font-size: 20px;
      color: #fff;
      margin-bottom: 15px;
    }

    .m-info {
      margin-bottom: 30px;
      font-weight: 500;
      font-size: 14px;
      color: #fff;
    }

    a {
      display: block;
      font-weight: 400;
      font-size: 14px;
      color: #fff;
    }

    #info-close {
      cursor: pointer;
    }
  }

  .map-info-2 {
    position: absolute;
    top: 50%;
    right: 50px;
    width: 40%;
    transform: translate(0, -50%);
    background: linear-gradient(
      180deg,
      rgba(13, 50, 104, 0.8) 0%,
      rgba(12, 53, 113, 0.8) 36.29%,
      rgba(8, 71, 161, 0.8) 78.08%,
      rgba(4, 85, 201, 0.8) 100.46%
    );
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    display: none;
    box-shadow:
      0px 13px 29px 0px #00000005,
      0px 53px 53px 0px #00000005,
      0px 120px 72px 0px #00000003,
      0px 214px 86px 0px #00000000,
      0px 334px 94px 0px #00000000;

    .title {
      display: flex;
      align-items: center;
      justify-content: space-between;

      #country-name {
        font-family: var(--first-font);
        font-weight: 600;
        font-size: 24px;
        color: #fff;
      }
    }

    .m-title {
      font-weight: 500;
      font-size: 20px;
      color: #fff;
      margin-bottom: 15px;
    }

    .m-info {
      margin-bottom: 30px;
      font-weight: 500;
      font-size: 14px;
      color: #fff;
    }

    a {
      display: block;
      font-weight: 400;
      font-size: 14px;
      color: #fff;
    }

    #info-close {
      cursor: pointer;
    }
  }
}

.tech-video {
  position: relative;

  video {
    width: 60%;
    object-fit: contain;
  }

  .info {
    background: #0e3268c7;
    position: absolute;
    top: 50%;
    right: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transform: translate(0, -50%);
    width: 50%;
    border-radius: 12px;
    backdrop-filter: blur(30px);
    height: 240px;

    p {
      font-weight: 600;
      font-size: 16px;
      text-align: left;
      color: #fff;

      &:last-of-type {
        margin-bottom: 0;
      }
    }

    ul {
      margin: 0;
      padding: 0;
      color: #fff;
      list-style: none;

      li {
        margin: 10px 0;
      }
    }
  }
}

.in-skills {
  position: relative;

  .title {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #55ba47;
    margin-bottom: 30px;
  }

  .desc {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
  }

  video,
  .skill-media {
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .media-wrap {
    position: relative;

    .skill-prev,
    .skill-next {
      width: 50px;
      position: absolute;
      cursor: pointer;
    }

    .skill-prev {
      left: -10%;
      top: 50%;
      transform: translate(0, -50%) rotateY(180deg);
    }

    .skill-next {
      right: -10%;
      top: 50%;
      transform: translate(0, -50%);
    }
  }
}

.misyon-wrap {
  position: relative;

  .info {
    position: absolute;
    top: 190px;
    background: linear-gradient(
      180deg,
      rgba(13, 50, 104, 0.8) 0%,
      rgba(12, 53, 113, 0.8) 36.29%,
      rgba(8, 71, 161, 0.8) 78.08%,
      rgba(4, 85, 201, 0.8) 100.46%
    );
    box-shadow:
      0px 13px 29px 0px #00000005,
      0px 53px 53px 0px #00000005,
      0px 120px 72px 0px #00000003,
      0px 214px 86px 0px #00000000,
      0px 334px 94px 0px #00000000;
    padding: 40px;
    border-radius: 32px;
    width: 30%;
    left: 50px;
    height: 274px;

    .title {
      font-weight: 600;
      font-size: 48px;
      color: #fff;
      margin-bottom: 15px;
    }

    .mini-title {
      font-weight: 500;
      font-size: 18px;
      color: #ffffff80;
    }

    .desc {
      font-weight: 400;
      font-size: 16px;
      color: #fff;
    }
  }
}

.vizyon-wrap {
  position: relative;
  margin-top: 200px;
  margin-bottom: 100px;

  .info {
    position: absolute;
    top: 85%;
    background: linear-gradient(
      180deg,
      rgba(13, 50, 104, 0.8) 0%,
      rgba(12, 53, 113, 0.8) 36.29%,
      rgba(8, 71, 161, 0.8) 78.08%,
      rgba(4, 85, 201, 0.8) 100.46%
    );
    box-shadow:
      0px 13px 29px 0px #00000005,
      0px 53px 53px 0px #00000005,
      0px 120px 72px 0px #00000003,
      0px 214px 86px 0px #00000000,
      0px 334px 94px 0px #00000000;
    padding: 40px;
    border-radius: 32px;
    width: 30%;
    right: 50px;
    transform: translate(0, -50%);

    .title {
      font-weight: 600;
      font-size: 48px;
      color: #fff;
      margin-bottom: 15px;
    }

    .mini-title {
      font-weight: 500;
      font-size: 18px;
      color: #ffffff80;
    }

    .desc p {
      font-weight: 400;
      font-size: 16px;
      color: #fff;
    }
  }
}

.radar-center {
  fill: #ffcc00;
  stroke: #fff;
  stroke-width: 2;
}

.radar-wave {
  fill: none;
  stroke: rgba(255, 204, 0, 0.8);
  stroke-width: 2;
  animation: radar 2.2s infinite ease-out;
  transform-origin: center;
}

.wave-2 {
  animation-delay: 1.1s;
}

@keyframes radar {
  0% {
    r: 4;
    opacity: 0.9;
  }

  70% {
    opacity: 0.4;
  }

  100% {
    r: 22;
    opacity: 0;
  }
}

.degerler {
  background: url(../img/degerler-bg-2.png) no-repeat;
  background-size: cover;
  background-position: center;
  font-family: var(--first-font);
  font-weight: 700;
  font-size: 25px;
  color: #204a99;

  ul {
    li {
      margin: 15px 0;
    }
  }
}

.politika {
  background: url(../img/politika-bg.png) no-repeat;
  background-size: cover;
  background-position: center right;
  font-family: var(--first-font);
  font-weight: 700;
  font-size: 15px;
  color: #fff;

  ul {
    li {
      margin: 15px 0;
    }
  }
}

.ikBaslik {
  margin-bottom: 30px;
  margin-top: 30px;
  font-weight: bold;
  color: #0e3268;
}

.notification-page {
  label {
    font-weight: 500;
    font-size: 14px;
    color: #6b6473;
    display: block;
  }

  input,
  textarea,
  select {
    background: #0000000d;
    border-radius: 8px;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 30px;

    &:focus {
      outline: 0;
      box-shadow: none;
    }
  }

  textarea {
    height: 200px;
  }

  button {
    background: #0a4b9e;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    padding: 15px 32px;
  }

  .cont-box {
    background: linear-gradient(
      180deg,
      rgba(13, 50, 104, 0.8) 0%,
      rgba(12, 53, 113, 0.8) 36.29%,
      rgba(8, 71, 161, 0.8) 78.08%,
      rgba(4, 85, 201, 0.8) 100.46%
    );
    box-shadow:
      0px 17px 37px 0px #0000000d,
      0px 67px 67px 0px #0000000a,
      0px 150px 90px 0px #00000008,
      0px 268px 107px 0px #00000003,
      0px 418px 117px 0px #00000000;
    padding: 24px;
    border-radius: 15px;

    .top {
      display: flex;
      align-items: center;
      justify-content: space-between;

      .title {
        font-weight: 600;
        font-size: 24px;
        color: #fff;
        margin-bottom: 0;
      }

      .c-btn {
        transition: all 0.3s ease;
      }

      .c-btn img {
        height: 26px;
      }
    }

    .cont-collapse {
      display: none;
      margin-top: 50px;

      .content {
        .icon {
          width: 60px;
          height: 60px;
          margin-bottom: 30px;
          background: #0183ff;
          border-radius: 50%;
          padding: 15px;
          box-shadow:
            0px 1.45px 3.64px 0px #0283ff3b,
            0px 7.27px 7.27px 0px #0283ff33,
            0px 16px 9.45px 0px #0283ff1f,
            0px 28.36px 10.91px 0px #0283ff08,
            0px 44.36px 12.36px 0px #0283ff00;
        }

        .icon-group {
          display: flex;
          align-items: center;
          margin-top: 50px;

          .icon {
            margin-right: 15px;
          }
        }

        .cont-title {
          font-weight: 600;
          font-size: 20px;
          color: #006afa;
          margin-bottom: 15px;
        }

        .desc p {
          font-weight: 500;
          font-size: 14px;
          color: #fff;
        }
      }
    }

    &.active {
      .cont-collapse {
        display: block;
      }

      .c-btn {
        transform: rotate(180deg);
      }
    }
  }

  p {
    font-weight: 500;

    line-height: 120%;
    letter-spacing: 0%;
    color: #6b6473;
  }

  label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    padding-bottom: 10px;

    small {
      float: right;
      padding-right: 10px;
      font-size: 11px;
      margin-top: 3px;
    }
  }

  small {
    font-size: 11px;
    margin-top: 3px;
  }

  iframe {
    border-radius: 15px;
  }
}

.yetenek-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid #2e7750;
  border-radius: 25px;
  margin-top: 50px;
  margin-bottom: 50px;

  .yetenek-img {
    width: 80%;
    margin: -50px auto 30px auto;
  }

  .title {
    font-weight: 600;
    font-size: 22px;
    color: #204a99;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: left;
    padding: 0px 40px;
  }

  p {
    font-weight: 400;
    font-size: 14px;
    color: #6b6473;
    padding: 20px 40px;
    margin-bottom: 0;
    /* Bootstrap alt marginini sıfırla */
    flex-grow: 1;
  }
}

.ik-page {
  .ik-container-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    /* Metin ve resim arasındaki boşluk */
    background: linear-gradient(135deg, #e0e6ef 0%, #e5e3e9 100%);
    border-radius: 40px;
    padding: 70px 50px 50px 50px;
    max-width: 1100px;
    margin: 0 auto 75px auto;
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.05),
      0 15px 25px rgba(0, 0, 0, 0.03);

    .ik-image-box {
      position: absolute;
      top: 50px;
      right: -100px;
      width: 380px;
      height: 430px;
      object-fit: contain;
      overflow: hidden;
    }

    .performans {
      top: 20px !important;
    }

    .ik-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ik-content {
      width: 60%;

      h2 {
        font-weight: 600;
        font-size: 24px;
        color: #204a99;
        margin-bottom: 30px;
      }

      li {
        font-weight: bold;
        font-size: 14px;
        color: #6b6473;
        font-weight: 500;
        list-style: disc;
        margin-bottom: 5px;

        a {
          color: #204a99;
          text-decoration: none;
        }
      }

      .kesfet {
        background: linear-gradient(
          90deg,
          #42903a 0%,
          #55b84a 45%,
          #0a4b9e 55%,
          #0455c9 100%
        );
        background-size: 220% 100%;
        background-position: 100% 50%;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 16px;
        margin-top: 20px;
        margin-left: 24px;
        width: 45%;
        max-width: 400px;
        box-sizing: border-box;
        height: 75px;
        text-decoration: none;
        transition: background-position 0.5s ease-in-out;

        span {
          font-weight: 500;
          font-size: 14px;
          line-height: 120%;
          letter-spacing: 0%;
          color: #fff;
          text-align: left;

          span {
            font-weight: 800;
            font-size: 16px;
            line-height: 120%;
            text-transform: uppercase;
            display: block;
            margin-top: 2px;
          }
        }

        img {
          display: block;
          height: 18px;
          width: auto;
        }

        &:hover {
          background-position: 0% 50%;
        }
      }

      .ik-icon {
        width: 60px;
        height: 60px;
        position: absolute;

        bottom: 50px;
        left: 50px;

        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;

        img {
          width: 100%;
          width: 100%;
          object-fit: contain;
        }
      }

      .ik-icon-2 {
        width: 90px;
        height: 00px;
        position: absolute;

        bottom: 50px;
        right: 50px;

        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;

        img {
          width: 100%;
          width: 100%;
          object-fit: contain;
        }
      }
    }
  
    .alt-slogan {
      position: absolute;
      bottom: 70px;
      left: 170px;
      letter-spacing: 6px;
      white-space: nowrap;

      h3 {
        text-transform: uppercase;
        color: #204a99;
      }
    }
  }

  .slogan-bant {
    width: 100%;
    height: 300px;
    text-align: center;
    background: url("../img/ik-slogan-bant.png") center center no-repeat;
    background-size: cover;
    margin-top: 30px;
    margin-bottom: 100px;

    h2 {
      color: #fff;
      font-size: 42px;
      font-weight: bold;
      line-height: 300px;
    }
  }

  .ik-box-3 {
    position: relative;
    margin: 75px 0;
    padding: 0;

    .main-img {
      width: 90%;
    }

    .ik-box-3-content {
      width: 380px;
      /* height: 66%; */
      position: absolute;
      right: -11%;
      top: 17%;
      background-color: #3a8a2f;
      border-radius: 30px;
      padding: 50px 30px 50px 30px;

      h3 {
        font-weight: 600;
        font-size: 24px;
        color: #fff;
        margin-bottom: 30px;
      }

      ul {
        margin: 0;
        padding: 0 30px;

        li {
          font-weight: bold;
          font-size: 14px;
          color: #fff;
          font-weight: 500;
          list-style: disc;
          margin-bottom: 5px;

          a {
            color: #fff;
            text-decoration: none;
          }
        }
      }

      .ik-icon-3 {
        width: 60px;
        height: 60px;
        position: absolute;
        bottom: 10px;
        right: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;

        img {
          width: 100%;
          width: 100%;
          object-fit: contain;
        }
      }
    }
  }

   .box-3 {
      padding: 100px 50px 100px 50px;
    }
}

.politics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  align-items: stretch;

  .box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0px 9.14px 20.24px 0px #0000000d,
      0px 36.57px 36.57px 0px #0000000a,
      0px 82.29px 49.63px 0px #00000008,
      0px 146.29px 58.78px 0px #00000003,
      0px 229.22px 64px 0px #00000000;

    height: 100%;
    display: flex;
    flex-direction: column;

    .cert-img {
      height: 350px;
      object-fit: cover;
      background: #fff;
      width: 100%;
    }

    .desc {
      padding: 15px 20px;
      background: linear-gradient(
        180deg,
        rgba(13, 50, 104, 0.8) 0%,
        rgba(12, 53, 113, 0.8) 36.29%,
        rgba(8, 71, 161, 0.8) 78.08%,
        rgba(4, 85, 201, 0.8) 100.46%
      );
      display: flex;
      align-items: center;
      flex-grow: 1;

      .title {
        font-weight: 600;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0%;
        color: #fff;
        margin-bottom: 0px;
      }

      p {
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0%;
        color: #fff;
      }

      img {
        width: 40px;
        margin-left: 30px;
      }
    }
  }
}
@media (max-width: 969px) {
  header {
    padding: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff40;

    nav {
      display: none;
      width: 100%;
      background: rgba(0, 0, 0, 0.92);
      position: absolute;
      height: 100vh;
      left: 0;
      bottom: 0;
      top: 0;
      padding: 40% 0;
      text-align: center;

      a {
        font-weight: 550;
        font-size: 22px;
        color: #fff !important;
        text-transform: uppercase;
        margin-left: 0px;
        width: 100%;
        transition: color 0.3s ease;
        display: block;
        padding: 20px 0%;
        text-align: center;
      }
    }
  }

  #hi,
  .menu {
    display: block;
  }

  .map-wrapper {
    .map-info {
      position: absolute;
      top: 50%;
      right: 0px;
      width: 100%;
      transform: translate(0, -50%);
      background: linear-gradient(
        180deg,
        rgba(13, 50, 104, 0.8) 0%,
        rgba(12, 53, 113, 0.8) 36.29%,
        rgba(8, 71, 161, 0.8) 78.08%,
        rgba(4, 85, 201, 0.8) 100.46%
      );
      backdrop-filter: blur(5px);
      border-radius: 15px;
      padding: 30px;
      display: none;
      box-shadow:
        0px 13px 29px 0px #00000005,
        0px 53px 53px 0px #00000005,
        0px 120px 72px 0px #00000003,
        0px 214px 86px 0px #00000000,
        0px 334px 94px 0px #00000000;

      #info-close {
        cursor: pointer;

        img {
          height: 30px;
          object-fit: cover;
        }
      }
    }
  }

  .menu {
    position: absolute;
    top: 55%;
    right: 0%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.5s ease;
    height: 50px;

    &:hover .bar {
      box-shadow: 1px 1px 7px 1px RGBa(0, 0, 0, 0.3);
    }

    .bar {
      width: 40px;
      height: 5px;
      background: #084bae;
      border-radius: 2px;
      transition: 0.4s ease;

      &:not(:first-child) {
        margin-top: 10px;
      }
    }
  }

  #hi {
    position: absolute;
    left: -999px;
    top: -999px;
  }

  body:has(#hi:checked) nav {
    display: block;
    transition: all 0.5s;
  }

  #hi:checked + .menu {
    transform: translate(-50%, -50%) rotatey(180deg);

    .bar {
      transform: rotatey(180deg) rotatex(360deg);

      &:first-child {
        transform: rotate(-45deg);
        margin-top: 20px;
      }

      &:nth-child(2) {
        opacity: 0;
      }

      &:nth-child(3) {
        margin-top: -20px;
        transform: rotate(45deg);
      }
    }
  }

  .home-slider {
    .content {
      position: absolute;
      bottom: 115px;
      left: 20px;
      right: 0;
      color: #fff;
      z-index: 2;
    }
  }

  .home-about {
    padding: 70px 0;

    .about-box {
      .middle {
        .a-img {
          height: 250px;
          object-fit: cover;
          border-radius: 20px;
          position: relative;
          z-index: 2;
          margin-bottom: 20px;
        }
      }
    }
  }

  .home-tabs {
    padding: 50px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    .tab-link {
      padding: 32px 30px 32px 30px;
      cursor: pointer;
    }

    .tab-cont {
      padding: 32px 30px 32px 30px;

      .title {
        font-weight: 700;
        font-size: 28px;
        line-height: normal;
        letter-spacing: 0%;
        color: #f9f8fa;
        margin-bottom: 64px;
      }
    }
  }

  .home-services {
    padding: 70px 0;
    cursor: pointer;

    .services-slider {
      margin: 50px 0px;
    }
  }

  .home-references {
    background: #f9f8fa;
    padding: 50px 0;
  }

  footer {
    position: relative;
    padding: 70px 0;
    align-items: center;
    text-align: center;

    .menu-title {
      font-size: 22px;
    }

    .foot-menu {
      margin-bottom: 40px;
    }

    .text-end {
      padding-top: 20px;
      text-align: center !important;
      font-size: 16px;
    }
  }

  .history {
    .s-big {
      img {
        border-radius: 20px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        position: relative;
      }

      .desc-wrap {
        padding: 20px !important;
        border: 1px solid #d8d5dd;
        border-top: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;

        .title {
          font-weight: 600;
          font-size: 34px;
          color: #3a8a2f;
          line-height: 42px;
        }
      }
    }
  }

  .in-content {
    padding: 70px 0;

    img {
      height: 250px;
      object-fit: cover;
    }

    .misyon-wrap {
      .info {
        position: absolute;
        top: 90px;
        background: linear-gradient(
          180deg,
          rgba(13, 50, 104, 0.8) 0%,
          rgba(12, 53, 113, 0.8) 36.29%,
          rgba(8, 71, 161, 0.8) 78.08%,
          rgba(4, 85, 201, 0.8) 100.46%
        );
        box-shadow:
          0px 13px 29px 0px #00000005,
          0px 53px 53px 0px #00000005,
          0px 120px 72px 0px #00000003,
          0px 214px 86px 0px #00000000,
          0px 334px 94px 0px #00000000;
        padding: 40px;
        border-radius: 32px;
        width: 90%;
        left: 25px;
        height: 274px;
      }
    }

    .vizyon-wrap {
      .info {
        position: absolute;
        top: 225px;
        background: linear-gradient(
          180deg,
          rgba(13, 50, 104, 0.8) 0%,
          rgba(12, 53, 113, 0.8) 36.29%,
          rgba(8, 71, 161, 0.8) 78.08%,
          rgba(4, 85, 201, 0.8) 100.46%
        );
        box-shadow:
          0px 13px 29px 0px #00000005,
          0px 53px 53px 0px #00000005,
          0px 120px 72px 0px #00000003,
          0px 214px 86px 0px #00000000,
          0px 334px 94px 0px #00000000;
        padding: 40px;
        border-radius: 32px;
        width: 90%;
        left: 25px;
        height: 274px;
      }
    }
  }

  .politics {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    align-items: stretch;

    .box {
      .cert-img {
        height: 420px;
        object-fit: contain;
        background: #fff;
        width: 100%;
      }
    }
  }

  .certificates {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;

    .box {
      .cert-img {
        height: 420px;
        object-fit: contain;
        background: #fff;
      }
    }
  }

  .odullerimiz {
    .box {
      background-color: #fff;

      img {
        height: 420px;
        object-fit: contain;
      }
    }
  }

  .sm-mb-100 {
    margin-bottom: 100px;
  }

  .ref-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;

    .box {
      img {
        height: 250px;
        object-fit: contain;
      }
    }
  }

  .ik-page {
    padding: 70px 0 70px 0;

    .ik-container-box {
      position: relative;
      display: block;
      align-items: center;
      gap: 40px;
      background: linear-gradient(135deg, #e0e6ef 0%, #e5e3e9 100%);
      border-radius: 40px;
      padding: 50px 30px 50px 30px;
      max-width: 1100px;
      margin: 0 auto 75px auto;
      box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.05),
        0 15px 25px rgba(0, 0, 0, 0.03);

      .ik-content {
        width: 100%;

        .kesfet {
          width: 80%;
        }

        .ik-image-box {
          position: relative;
          top: 30px;
          right: 0;
          width: 100%;
          height: 327px;
          object-fit: contain;
          overflow: hidden;
        }

        .top-60 {
          top: 0 !important;
        }
      }
    }
    .box-3 {
      
      padding: 100px 50px 100px 50px;
    }

    .slogan-bant {
      width: 100%;
      height: 200px;
      text-align: center;
      background: url(../img/ik-slogan-bant.png) center center no-repeat;
      background-size: cover;
      margin-top: 30px;
      margin-bottom: 100px;

      h2 {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        line-height: 200px;
      }
    }
  }

  .contact-page {
    .cont-box {
      margin-bottom: 50px;
    }

    .p-btns {
      position: absolute;
      left: 0;
      top: -115px;
      width: 100%;
      text-align: right;

      a {
        &:first-of-type {
          margin-bottom: 20px;
        }
      }
    }

    #iletisim-form {
      margin-top: 70px;
    }

    #etik {
      margin-top: 70px;
    }
  }

  .tech-video {
    video {
      width: 100%;
      object-fit: contain;
    }

    .info {
      background: #0e3268c7;
      position: relative;
      bottom: 0%;
      right: 0%;
      display: table;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      padding: 40px;
      transform: translate(0, -50%);
      width: 96%;
      border-radius: 12px;
      backdrop-filter: blur(30px);
      height: 300px;
      margin: 145px auto 0 auto;
    }
  }

  .products {
    .p-btns {
      position: absolute;
      left: 0;
      top: 25px;
      width: 100%;
    }

    .product-img {
      position: relative;
      z-index: 2;
      pointer-events: none;
      margin-top: 40px;
    }

    .product-name {
      a {
        font-size: 18px;
        padding: 10px 0;
      }
    }
  }

  .degerler {
    background: url(../img/degerler-bg-2.png) no-repeat;
    background-size: cover;
    background-position: center;
    font-family: var(--first-font);
    font-weight: 700;
    font-size: 20px;
    color: #204a99;

    ul {
      margin-bottom: 40px;
    }
  }
}
