@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid\ Circular\ B\ Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid\ Circular\ B\ Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid\ Circular\ B\ SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid\ Circular\ B\ Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Euclid Circular B";
  outline: none;
  text-decoration: none;
}
button {
  cursor: pointer;
}
body {
  background: #f5f5f0;
}
.p-lr {
  padding-left: 80px;
  padding-right: 80px;
}
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: .3s ease-in-out;
  .navbar {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    .navbar-inner {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #8f8f8f;
      transition: 0.3s ease-in-out;
      gap: 16px;
      .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        min-width: 100px;
        img {
          width: 100%;
        }
      }
      .navigation-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 540px;
        width: 100%;
        .nav-link {
          position: relative;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #3a3a3a;
          text-wrap: nowrap;
          transition: 0.35s ease-in-out;
          border-bottom: 1px solid transparent;
          &:hover {
            color: #ffde86;
          }
        }
        .nav-link.active {
          color: #070707;
          border-color: #070707;
        }
        .dropMenu {
          display: flex;
          flex-direction: column;
          align-items: start;
          padding: 34px 0;
          .dropMenu-title {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #3a3a3a;
            text-wrap: nowrap;
            transition: 0.35s ease-in-out;
            border: none;
            background: transparent;
            cursor: pointer;
            border-bottom: 1px solid transparent;
            padding: 3.5px 0;
            &:hover {
              color: #ffde86;
            }
          }
          .dropMenu-title.active {
            color: #070707 !important;
            border-color: #070707;
          }
          .dropMenuBox {
            max-width: 1440px;
            width: 100%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 110px;
            opacity: 0;
            visibility: hidden;
            padding-top: 12px;
            transition: 0.35s ease-in-out;
            .dropMenuBox-inner {
              display: flex;
              align-items: start;
              box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
              width: 100%;
              padding: 20px 20px 20px 40px;
              background: #fff;
              border-radius: 20px;
              gap: 20px;
              .box-title {
                font-weight: 600;
                font-size: 32px;
                line-height: 44px;
                color: #070707;
                max-width: 160px;
              }
              .dropMenuBox-links {
                margin-left: auto;
                background: #f5f5f0;
                border-radius: 20px;
                padding: 28px 24px 52px;
                max-width: 752px;
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                column-gap: 24px;
                .drop-link {
                  display: flex;
                  align-items: center;
                  gap: 12px;
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 24px;
                  color: #070707;
                  width: 100%;
                  padding-top: 20px;
                  transition: 0.35s ease-in-out;
                  &:nth-child(odd) {
                    padding-right: 24px;
                    border-right: 1px solid rgba(0, 0, 0, 0.12);
                  }
                  &:first-child {
                    padding-top: 0;
                  }
                  &:nth-child(2) {
                    padding-top: 0;
                  }
                  img {
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                    filter: invert(1) brightness(0);
                    transition: 0.25s ease-in-out;
                  }
                  &:hover {
                    color: #f5c80d;
                    img {
                      filter: none;
                    }
                  }
                }
              }
              .other-links {
                max-width: 230px;
                width: 100%;
                background: #070707;
                display: flex;
                flex-direction: column;
                align-items: start;
                padding: 24px;
                gap: 16px;
                border-radius: 20px;
                .other-links-title {
                  font-weight: 500;
                  font-size: 18px;
                  line-height: 26px;
                  color: #f5f5f0;
                }
                .other-link {
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 24px;
                  color: rgba(245, 245, 240, 0.8);
                  display: flex;
                  align-items: center;
                  gap: 8px;
                  transition: 0.35s ease-in-out;
                  img {
                    opacity: 0;
                    width: 20px;
                    height: 20px;
                    min-width: 20px;
                    transition: 0.25s ease-in-out;
                  }
                  &:hover {
                    color: #ffde86;
                    img {
                      opacity: 1;
                    }
                  }
                }
              }
            }
          }
          &:hover {
            .dropMenu-title {
              color: #ffde86;
            }
            .dropMenuBox {
              top: 100px;
              visibility: visible;
              opacity: 1;
            }
          }
        }
      }
      .trackOrderLink {
        display: flex;
        align-items: center;
        gap: 2px;
        p {
          padding: 12px 24px;
          border-radius: 100px;
          background: #070707;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #f5f5f0;
          text-wrap: nowrap;
        }
        .icon {
          width: 48px;
          min-width: 48px;
          height: 48px;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #070707;
          svg {
            width: 24px;
            height: 24px;
            min-width: 24px;

            .path1,
            .path2 {
              fill: rgba(245, 245, 240, 0.4);
              animation-duration: 3s;
              animation-timing-function: ease-in-out;
              animation-iteration-count: infinite;
            }

            .path2 {
              animation-name: path2Animation;
            }

            .path1 {
              animation-name: path1Animation;
            }
          }
        }
        &:hover {
          p {
            background: #f5c80d;
            color: #070707;
            transition: 0.35s ease-in-out;
          }
          .icon {
            background: #f5c80d;
            transition: 0.35s ease-in-out;
            svg {
              filter: invert(1) brightness(0);
              transition: 0.35s ease-in-out;
              path {
                fill: #070707;
                transition: 0.35s ease-in-out;
                animation: none;
              }
            }
          }
        }
      }
      .hamburger {
        background: #070707;
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 100px;
        display: none;
        align-items: center;
        justify-content: center;
        position: relative;
        border: none;
        cursor: pointer;
        img {
          width: 24px;
          height: 24px;
          position: absolute;
          top: 50%;
          left: 50%;
          transition: 0.3s ease-in-out;
        }
        .closeIcon {
          transform: translate(-50%, -50%) scale(0);
        }
        .hamburgerIcon {
          transform: translate(-50%, -50%) scale(1);
        }
      }
      .hamburger.burgerActive {
        .closeIcon {
          transform: translate(-50%, -50%) scale(1);
        }
        .hamburgerIcon {
          transform: translate(-50%, -50%) scale(0);
        }
      }
    }
    .mobileMenu {
      margin-top: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      padding-bottom: 0;
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      .mobileMenu-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        background: #ffffff;
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        .nav-link {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #070707;
          padding: 14px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.12);
          width: 100%;
          &:first-child {
            padding-top: 0;
          }
          &:last-child {
            padding-bottom: 0;
            border-bottom: none;
          }
        }
        .dropMenu {
          padding: 14px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.12);
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 0;
          transition: 0.2s ease-in-out;
          .dropMenu_main {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            .dropMenu-title {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #070707;
            }
            .downBtn {
              border: none;
              outline: none;
              background: transparent;
              width: 20px;
              height: 20px;
              min-width: 20px;
              position: relative;
              img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                transition: 0.2s ease-in-out;
              }
              .plus {
                transform: scale(1);
              }
              .minus {
                transform: scale(0);
              }
            }
          }
          .subMenu {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 20px;
            max-height: 0;
            overflow: hidden;
            transition: 0.2s ease-in-out;
            .drop-link {
              display: flex;
              align-items: center;
              gap: 12px;
              font-weight: 400;
              font-size: 14px;
              line-height: 20px;
              color: rgba(7, 7, 7, 0.8);
              width: 100%;
              transition: 0.35s ease-in-out;
              img {
                width: 20px;
                height: 20px;
                min-width: 20px;
                filter: invert(1) brightness(0);
                transition: 0.25s ease-in-out;
              }
            }
            .activeDropLink {
              color: #f5c80d;
              img {
                filter: none;
              }
            }
          }
        }
        .activeDownMenu {
          gap: 16px;
          .dropMenu_main {
            .downBtn {
              .plus {
                transform: scale(0);
              }
              .minus {
                transform: scale(1);
              }
            }
          }
          .subMenu {
            max-height: 1000px;
            overflow: auto;
          }
        }
      }
      .trackOrderLink {
        margin-top: 24px;
        display: flex;
        align-items: center;
        gap: 2px;
        width: 100%;
        p {
          padding: 12px 24px;
          border-radius: 100px;
          background: #070707;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #f5f5f0;
          text-wrap: nowrap;
          width: 100%;
          text-align: center;
        }
        .icon {
          width: 48px;
          min-width: 48px;
          height: 48px;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #070707;
          svg {
            width: 24px;
            height: 24px;
            min-width: 24px;

            .path1,
            .path2 {
              fill: rgba(245, 245, 240, 0.4);
              animation-duration: 3s;
              animation-timing-function: ease-in-out;
              animation-iteration-count: infinite;
            }

            .path2 {
              animation-name: path2Animation;
            }

            .path1 {
              animation-name: path1Animation;
            }
          }
        }
        &:hover {
          p {
            background: #f5c80d;
            color: #070707;
            transition: 0.35s ease-in-out;
          }
          .icon {
            background: #f5c80d;
            transition: 0.35s ease-in-out;
            svg {
              filter: invert(1) brightness(0);
              transition: 0.35s ease-in-out;
              path {
                fill: #070707;
                transition: 0.35s ease-in-out;
                animation: none;
              }
            }
          }
        }
      }
      .socials {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        width: 100%;
        .social-item {
          width: 28px;
          height: 28px;
          min-width: 28px;
          img {
            width: 100%;
            height: 100%;
          }
        }
      }
    }
  }
}
.showNav {
  background: #f5f5f0;
  height: 100%;
  .navbar {
    .navbar-inner {
      border-bottom: 1px solid #8f8f8f !important;
      .hamburger{
        .closeIcon {
          transform: translate(-50%, -50%) scale(1);
        }
        .hamburgerIcon {
          transform: translate(-50%, -50%) scale(0);
        }
      }
    }
    .mobileMenu {
      margin-top: 30px;
      transition: 0.3s ease-in-out;
      padding-bottom: 30px;
      max-height: calc(100svh - 109.79px);
      padding-right: 10px;
      overflow: auto;
      visibility: visible;
    }
  }
}

.heroContainer {
  max-width: 1440px;
  width: 100%;
  margin: 170px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .heroTitle {
    font-weight: 700;
    font-size: 56px;
    line-height: 78px;
    text-align: center;
    text-transform: uppercase;
    color: #070707;
  }
  .countries {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 32px;
    .countryItem {
      display: flex;
      align-items: center;
      gap: 4px;
      opacity: 0.2;
      img {
        width: 20px;
        height: 20px;
        min-width: 20px;
      }
      p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #070707;
      }
      &:last-child {
        opacity: 1;
      }
    }
  }
  .trackOrderForm {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 48px 0px rgba(235, 177, 21, 0.08);
    background: #fff;
    border-radius: 100px;
    max-width: 640px;
    width: 100%;
    margin: 60px auto 0;
    padding: 7px 7px 7px 24px;
    input {
      width: 100%;
      border: none;
      outline: none;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      &::placeholder {
        color: #8f8f8f;
      }
    }
    .trackOrderBtn {
      text-wrap: nowrap;
      padding: 12px 24px;
      border-radius: 100px;
      font-weight: 500;
      font-size: 18px;
      line-height: 26px;
      color: #070707;
      background: #f5c80d;
      border: none;
      cursor: pointer;
      transition: 0.35s ease-in-out;
      &:hover {
        color: #fff;
        background: #070707;
      }
    }
  }
}
@keyframes path2Animation {
  0% {
    fill: rgba(245, 245, 240, 0.4);
  }
  30% {
    fill: white;
  }
  66.66% {
    fill: white;
  }
  100% {
    fill: rgba(245, 245, 240, 0.4);
  }
}
@keyframes path1Animation {
  0% {
    fill: rgba(245, 245, 240, 0.4);
  }
  33.33% {
    fill: rgba(245, 245, 240, 0.4);
  }
  66.66% {
    fill: #ffde86;
  }
  80% {
    fill: #ffde86;
  }
  100% {
    fill: rgba(245, 245, 240, 0.4);
  }
}
.homeStatistics-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 70px auto 0;
  .containerImg {
    max-width: 840px;
    width: 100%;
    z-index: 1;
    animation: containerRotate 20s ease-in-out infinite;
    img {
      width: 100%;
    }
  }
  .homeStatistics-main {
    width: 100%;
    background: #070707;
    border-radius: 40px;
    padding: 200px 60px 60px;
    margin-top: -130px;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      max-width: 1100px;
      color: #f5f5f0;
    }
    .desc {
      margin-top: 28px;
      max-width: 1100px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.8);
      }
    }
    .moreLink {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-top: 48px;
      z-index: 2;
      width: max-content;
      p {
        padding: 12px 24px;
        border-radius: 100px;
        background: #f5c80d;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #070707;
        transition: 0.35s ease-in-out;
      }
      .icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5c80d;
        transition: 0.35s ease-in-out;
        svg {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.35s ease-in-out;
        }
      }
      &:hover {
        p {
          background: #fff;
        }
        .icon {
          background: #fff;
          transform: rotate(90deg);
        }
      }
    }
    .homeStatistics {
      margin-top: 100px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      width: 100%;
      .statistics-item {
        display: flex;
        align-items: center;
        gap: 40px;
        width: auto;
        .content {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 8px;
          h3 {
            font-weight: 300;
            font-size: 56px;
            line-height: 78px;
            color: #f5f5f0;
          }
          p {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: rgba(255, 255, 255, 0.5);
          }
        }
        img {
          height: 108px;
        }
        &:last-child {
          img {
            display: none;
          }
        }
      }
    }
  }
}
@keyframes containerRotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.home-advantages-container {
  width: 100%;
  margin-top: 110px;
  padding: 80px 0;
  position: relative;
  .bgImg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .home-advantages {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
    .sectionTitle {
      max-width: 400px;
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      color: #070707;
    }
    .advantages-boxes {
      max-width: 630px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 16px;
      .advantage-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 12px;
        background: #f5f5f0;
        border-radius: 20px;
        padding: 24px;
        transition: 0.35s ease-in-out;
        .box-head {
          display: flex;
          align-items: center;
          gap: 16px;
          .icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            img {
              width: 100%;
              height: 100%;
              transition: 0.35s ease-in-out;
            }
          }
          h3 {
            font-weight: 500;
            font-size: 18px;
            line-height: 26px;
            color: #000000;
            transition: 0.35s ease-in-out;
          }
        }
        .desc {
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgba(0, 0, 0, 0.8);
            transition: 0.35s ease-in-out;
          }
        }
        &:hover {
          background: #070707;
          .box-head {
            .icon {
              img {
                filter: invert(1);
              }
            }
            h3 {
              color: #fff;
            }
          }
          .desc {
            p {
              color: #fff;
            }
          }
        }
      }
    }
  }
}
.shippingCosts-container {
  max-width: 1440px;
  width: 100%;
  margin: 110px auto 0;
  .shippingCosts-main {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    min-height: 660px;
    display: flex;
    align-items: start;
    gap: 40px;
    .shippingCosts-area {
      width: 100%;
      display: flex;
      align-items: start;
      flex-direction: column;
      max-width: 700px;
      .sectionTitle {
        font-weight: 600;
        font-size: 44px;
        line-height: 60px;
        color: #070707;
        text-transform: uppercase;
      }
      .shippingCosts {
        width: 100%;
        margin-top: 48px;
        .shippingCostsTabs {
          display: flex;
          align-items: center;
          background: #f5f5f0;
          padding: 6px;
          border-radius: 100px;
          max-width: 100%;
          width: max-content;
          margin: 0;
          .shippingCostsTab {
            padding: 10px 28px;
            border-radius: 100px;
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            color: #070707;
            border: none;
            background: transparent;
            text-transform: capitalize;
            cursor: pointer;
            width: auto;
          }
          .shippingCostsTab.active {
            background: #f5c80d;
          }
        }
        .shippingCosts-items {
          margin-top: 28px;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 12px;
          .shippingCosts-item {
            width: 100%;
            display: none;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #d2d2dc;
            &:last-child {
              border-bottom: none;
            }
            .price {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #000000;
              text-align: start;
            }
            .weightInterval {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #000000;
              text-align: right;
            }
          }
        }
      }
    }
    .boxAnimation {
      min-width: 250px;
      width: 250px;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      .boxImages {
        width: 100%;
        height: 288px;
        position: relative;
        animation: slideUpDown 6s infinite ease-in-out;
        img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          z-index: 0;
          animation: showBox 18s infinite ease-in-out;
        }
        .box1 {
          animation-delay: 0s;
        }
        .box2 {
          animation-delay: 3s;
        }
        .box3 {
          animation-delay: 6s;
        }
        .box4 {
          animation-delay: 9s;
        }
        .box5 {
          animation-delay: 12s;
        }
        .box6 {
          animation-delay: 15s;
        }
      }
      .boxAnimation_shadow {
        max-width: 200px;
        width: 100%;
        animation: boxShadowAnimatin 6s infinite ease-in-out;
        svg {
          width: 100%;
        }
      }
    }
  }
}
@keyframes slideUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes boxShadowAnimatin {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showBox {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.serviceCard {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  .card-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    .cartTitle {
      font-weight: 500;
      font-size: 18px;
      line-height: 26px;
      color: #070707;
    }
    .icon {
      background: #f5f5f0;
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
        filter: invert(0) brightness(0);
      }
    }
  }
  .short_desc {
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: rgba(0, 0, 0, 0.8);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      overflow: hidden;
      -webkit-box-orient: vertical;
      height: 48px;
    }
  }
  .cardImg {
    margin-top: 40px;
    width: 100%;
    height: 252px;
    border-radius: 12px;
    img {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      object-fit: cover;
      filter: grayscale(100%);
    }
  }
  &:hover {
    .card-head {
      .icon {
        background: #070707;
        transition: 0.35s ease-in-out;
        img {
          filter: none;
          transition: 0.35s ease-in-out;
        }
      }
    }
    .short_desc {
      p {
        -webkit-line-clamp: 5;
        height: 120px;
        transition: 0.35s ease-in-out;
      }
    }
    .cardImg {
      height: 180px;
      transition: 0.35s ease-in-out;
      img {
        filter: grayscale(0%);
        transition: 0.35s ease-in-out;
      }
    }
  }
}
.homeService-container {
  max-width: 1440px;
  width: 100%;
  margin: 110px auto 0;
  .sectionTitle {
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    text-transform: uppercase;
    color: #070707;
    max-width: 955px;
  }
  .moreLink {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 40px;
    z-index: 2;
    width: max-content;
    p {
      padding: 12px 24px;
      border-radius: 100px;
      background: #f5c80d;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #070707;
      transition: 0.35s ease-in-out;
    }
    .icon {
      width: 48px;
      min-width: 48px;
      height: 48px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5c80d;
      transition: 0.35s ease-in-out;
      svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
        transition: 0.35s ease-in-out;
      }
    }
    &:hover {
      p {
        background: #fff;
      }
      .icon {
        background: #fff;
        transform: rotate(90deg);
      }
    }
  }
  .homeServices-slide {
    margin-top: 48px;
    width: 100%;
    padding-bottom: 68px;
    .serviceCard {
      max-width: 411px;
    }
    .swiper-bottom {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 28px;
      width: 100%;
      bottom: 0;
      justify-content: space-between;
      .swiper-pagination {
        position: initial;
        width: max-content;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        text-wrap: nowrap;
      }
      .swiper-progress-wrapper {
        width: 100%;
        height: 2px;
        background: #d9d9d9;
        .swiper-progress-bar {
          background: #000;
          display: block;
          height: 100%;
        }
      }
      .navigation-buttons {
        display: flex;
        align-items: center;
        gap: 20px;
        .swiper-button-next,
        .swiper-button-prev {
          position: initial;
          margin: 0;
          width: 28px;
          height: 28px;
          min-width: 28px;
          img {
            width: 100%;
            height: 100%;
          }
          &::after {
            display: none;
          }
        }
      }
    }
  }
}
.request {
  width: 100%;
  margin: 110px auto 0;
  padding: 80px 0 36px;
  position: relative;
  .bgImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .request-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    .sectionTitle {
      max-width: 650px;
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      color: #070707;
    }
    .request-form {
      max-width: 505px;
      width: 100%;
      padding: 40px 40px 76px;
      background: #fff;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 24px;
      .form-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 12px;
        label {
          font-weight: 400;
          font-size: 12px;
          line-height: 16px;
          color: #8f8f8f;
        }
        .form-input {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 14px 20px;
          background: #f5f5f0;
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
          border-radius: 100px;
          input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000;
            &::placeholder {
              color: #8f8f8f;
            }
          }
          .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            img {
              width: 100%;
              height: 100%;
            }
          }
        }
      }
      .send {
        display: flex;
        align-items: center;
        gap: 2px;
        margin-top: 4px;
        z-index: 2;
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        cursor: pointer;
        p {
          padding: 12px 24px;
          border-radius: 100px;
          background: #f5c80d;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #070707;
          transition: 0.35s ease-in-out;
          width: 100%;
        }
        .icon {
          width: 48px;
          min-width: 48px;
          height: 48px;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f5c80d;
          transition: 0.35s ease-in-out;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.35s ease-in-out;
            filter: invert(0) brightness(0);
          }
        }
        &:hover {
          p {
            background: #000;
            color: #fff;
          }
          .icon {
            background: #000;
            transform: rotate(90deg);
            img {
              filter: none;
            }
          }
        }
      }
    }
  }
}
.blogCard {
  padding-bottom: 24px;
  width: 100%;
  border-bottom: 1px solid #8f8f8f;
  display: flex;
  align-items: start;
  gap: 20px;
  .cardImg {
    width: 182px;
    min-width: 182px;
    height: 148px;
    border-radius: 8px;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      filter: grayscale(100%);
      transition: 0.35s ease-in-out;
    }
  }
  .cardBody {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    width: 100%;
    .blogTitle {
      font-weight: 500;
      font-size: 18px;
      line-height: 26px;
      color: #070707;
    }
    .short_desc {
      width: 100%;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: rgba(0, 0, 0, 0.8);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        overflow: hidden;
        -webkit-box-orient: vertical;
        height: 48px;
      }
    }
    .bodyBottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      .time {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #8f8f8f;
      }
      .icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        transition: 0.35s ease-in-out;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.35s ease-in-out;
        }
      }
    }
  }
  &:hover {
    .cardImg {
      img {
        filter: grayscale(0%);
        transform: scale(1.1);
      }
    }
    .cardBody {
      .bodyBottom {
        .icon {
          background: #070707;
          img {
            filter: invert(1);
          }
        }
      }
    }
  }
}
.home-blogs-container {
  max-width: 1440px;
  width: 100%;
  margin: 110px auto 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  .home-blogs-aside {
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      color: #070707;
    }
    .description {
      width: 100%;
      margin-top: 20px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        color: rgba(0, 0, 0, 0.8);
      }
    }
    .moreLink {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-top: 40px;
      z-index: 2;
      width: max-content;
      p {
        padding: 12px 24px;
        border-radius: 100px;
        background: #f5c80d;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #070707;
        transition: 0.35s ease-in-out;
      }
      .icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5c80d;
        transition: 0.35s ease-in-out;
        svg {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.35s ease-in-out;
        }
      }
      &:hover {
        p {
          background: #fff;
        }
        .icon {
          background: #fff;
          transform: rotate(90deg);
        }
      }
    }
  }
  .home-blogs {
    max-width: 765px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .blogs-slide {
    display: none;
    width: 100%;
    .blogCard {
      width: 319px;
      .cardImg {
        height: 200px !important;
      }
    }
  }
}
footer {
  max-width: 1440px;
  width: 100%;
  margin: 110px auto 0;
  padding: 0 20px;
  .footer-container {
    width: 100%;
    background: #070707;
    border-radius: 40px 40px 0 0;
    padding: 70px 60px 0;
    position: relative;
    .footerContainerImg {
      position: absolute;
      top: 0;
      right: 0; /* başlangıç pozisyonu */
      z-index: 0;
      width: 480px;
      animation: rightToLeft 10s ease-in-out infinite alternate;
    }
    .footer-boxes {
      width: 100%;
      display: flex;
      align-items: start;
      gap: 68px;
      position: relative;
      z-index: 2;
      .footer-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 24px;
        .box-title {
          font-weight: 500;
          font-size: 18px;
          line-height: 26px;
          color: #fff;
        }
        .box-links {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 16px;
          .box-link {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.35s ease-in-out;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            color: rgba(255, 255, 255, 0.8);
            img {
              width: 20px;
              height: 20px;
              opacity: 0;
              transition: 0.35s ease-in-out;
            }
            &:hover {
              color: #ffde86;
              img {
                opacity: 1;
              }
            }
          }
        }
        .box-contact {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 20px;
          max-width: 280px;
          .contact-item {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 8px;
            p {
              font-weight: 400;
              font-size: 12px;
              line-height: 16px;
              color: rgba(255, 255, 255, 0.5);
            }
            .contact-item-link {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: rgba(255, 255, 255, 0.8);
            }
          }
        }
      }
    }
    .footer-bottom {
      margin-top: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 24px;
      .trackOrderForm {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        max-width: 520px;
        width: 100%;
        padding: 6px 6px 6px 20px;
        input {
          width: 100%;
          border: none;
          outline: none;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          background: transparent;
          &::placeholder {
            color: #8f8f8f;
          }
        }
        .trackOrderBtn {
          text-wrap: nowrap;
          padding: 12px 24px;
          border-radius: 100px;
          font-weight: 500;
          font-size: 18px;
          line-height: 26px;
          color: #070707;
          background: #f5c80d;
          border: none;
          cursor: pointer;
          transition: 0.35s ease-in-out;
          &:hover {
            color: #070707;
            background: #fff;
          }
        }
      }
      .footer-socials {
        display: flex;
        align-items: center;
        gap: 20px;
        .social-item {
          width: 32px;
          height: 32px;
          min-width: 32px;
          img {
            width: 100%;
            height: 100%;
          }
        }
      }
    }
    .copyRight {
      margin-top: 40px;
      padding: 40px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      width: 100%;
      p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: rgba(255, 255, 255, 0.6);
      }
    }
  }
}
@keyframes rightToLeft {
  from {
    right: 0;
  }
  to {
    right: calc(100% - 480px);
  }
}
.breadcrumb {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  .breadcrumb-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #070707;
  }
  img {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .breadcrumb-item.active {
    color: rgba(0, 0, 0, 0.7);
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 150px;
  }
}
.blogs-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  .blogs-container-head {
    margin: 40px auto 0;
    max-width: 765px;
    display: flex;
    flex-direction: column;
    align-items: center;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      text-align: center;
      color: #070707;
    }
    .description {
      margin-top: 20px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: rgba(0, 0, 0, 0.8);
      }
    }
  }
  .blogs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 80px;
    .blogs-types {
      display: flex;
      align-items: center;
      padding: 6px;
      background: #ffffff;
      border-radius: 100px;
      .typeItem {
        padding: 10px 28px;
        border-radius: 100px;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #070707;
      }
      .typeItem.active {
        background: #f5c80d;
      }
    }
    .blogs-result {
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #8f8f8f;
    }
  }
  .blogs {
    margin-top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .pagination {
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    .paginationPrev,
    .paginationNext {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #070707;
    }
    .pagination-items {
      display: flex;
      align-items: center;
      gap: 8px;
      .pagination-item {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: #fff;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #070707;
        &:hover {
          transition: 0.35s ease-in-out;
          background: rgba(255, 255, 255, 0.5);
        }
      }
      .pagination-item.active {
        background: #f5c80d;
      }
    }
  }
}
.services-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  .sectionTitle {
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    text-transform: uppercase;
    text-align: center;
    color: #070707;
    margin: 40px auto 0;
    max-width: 765px;
  }
  .services {
    margin-top: 110px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
  }
}
.services-detail-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  .service-detail {
    margin-top: 40px;
    .detail-img {
      max-width: 688px;
      float: right;
      margin-left: 86px;
      margin-right: -80px;
      margin-bottom: 20px;
      img {
        width: 100%;
      }
    }
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      text-align: start;
      color: #070707;
    }
    .content {
      margin-top: 28px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: rgba(0, 0, 0, 0.8);
        text-align: justify;
      }
    }
  }
}
.rates-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  .rates-container-head {
    margin: 40px auto 0;
    max-width: 765px;
    display: flex;
    flex-direction: column;
    align-items: center;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      text-align: center;
      color: #070707;
    }
    .description {
      margin-top: 20px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: rgba(0, 0, 0, 0.8);
      }
    }
  }
  .shippingCosts-main {
    margin-top: 110px;
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    min-height: 660px;
    display: flex;
    align-items: start;
    gap: 40px;
    .shippingCosts {
      max-width: 700px;
      width: 100%;
      .shippingCostsTabs {
        display: flex;
        align-items: center;
        background: #f5f5f0;
        padding: 6px;
        border-radius: 100px;
        max-width: 100%;
        width: max-content;
        margin: 0;
        .shippingCostsTab {
          padding: 10px 28px;
          border-radius: 100px;
          font-weight: 500;
          font-size: 14px;
          line-height: 20px;
          color: #070707;
          border: none;
          background: transparent;
          text-transform: capitalize;
          cursor: pointer;
          width: auto;
        }
        .shippingCostsTab.active {
          background: #f5c80d;
        }
      }
      .shippingCosts-items {
        margin-top: 28px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 12px;
        .shippingCosts-item {
          width: 100%;
          display: none;
          align-items: center;
          justify-content: space-between;
          padding: 12px 0;
          border-bottom: 1px solid #d2d2dc;
          &:last-child {
            border-bottom: none;
          }
          .price {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000000;
            text-align: start;
          }
          .weightInterval {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000000;
            text-align: right;
          }
        }
      }
    }
    .boxAnimation {
      min-width: 250px;
      width: 250px;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      .boxImages {
        width: 100%;
        height: 288px;
        position: relative;
        animation: slideUpDown 6s infinite ease-in-out;
        img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          z-index: 0;
          animation: showBox 18s infinite ease-in-out;
        }
        .box1 {
          animation-delay: 0s;
        }
        .box2 {
          animation-delay: 3s;
        }
        .box3 {
          animation-delay: 6s;
        }
        .box4 {
          animation-delay: 9s;
        }
        .box5 {
          animation-delay: 12s;
        }
        .box6 {
          animation-delay: 15s;
        }
      }
      .boxAnimation_shadow {
        max-width: 200px;
        width: 100%;
        animation: boxShadowAnimatin 6s infinite ease-in-out;
        svg {
          width: 100%;
        }
      }
    }
  }
}
.faq-container {
  max-width: 1440px;
  width: 100%;
  margin: 110px auto 0;
  .faq {
    width: 100%;
    padding: 0 110px;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      text-align: center;
      color: #070707;
    }
    .faq-items {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 20px;
      width: 100%;
      .faq-item {
        border-bottom: 1px solid #8f8f8f;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 12px;
        width: 100%;
        padding-bottom: 24px;
        .faq-question {
          width: 100%;
          background: transparent;
          border: none;
          outline: none;
          display: flex;
          align-items: center;
          justify-content: space-between;
          cursor: pointer;
          span {
            font-weight: 500;
            font-size: 18px;
            line-height: 26px;
            color: #000;
            text-align: start;
          }
          .icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            transition: 0.3s ease-in-out;
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
              transition: 0.3s ease-in-out;
            }
          }
        }
        .faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s ease;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgba(0, 0, 0, 0.8);
          }
        }
        .open {
          .icon {
            transform: rotate(-180deg);
            background: #070707;
            img {
              filter: invert(1) brightness(10);
            }
          }
        }
      }
    }
  }
}
.blog-detail-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  .blog-detail-banner {
    width: 100%;
    position: relative;
    height: 480px;
    border-radius: 20px;
    .bannerImg {
      width: 100%;
      height: 100%;
      border-radius: 20px;
      object-fit: cover;
      filter: brightness(68%);
    }
    .breadcrumb {
      position: absolute;
      top: 40px;
      left: 40px;
      .breadcrumb-item {
        color: #fff;
      }
      img {
        filter: brightness(1000);
      }
      .breadcrumb-item.active {
        color: #f5f5f0;
      }
    }
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-align: center;
      text-transform: uppercase;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 850px;
      width: 100%;
    }
  }
  .blog-detail-parametrs {
    margin-top: 48px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    .reading-time {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
    }
    .shared-time {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
    }
  }
  .content {
    margin-top: 48px;
    width: 100%;
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: rgba(0, 0, 0, 0.8);
      text-align: justify;
    }
  }
  .shared {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    h3 {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
    }
    .shared-links {
      display: flex;
      align-items: center;
      gap: 20px;
      .shared-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        img {
          width: 100%;
          height: 100%;
        }
      }
      .shared-Btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        position: relative;
        border: none;
        background: transparent;
        outline: none;
        cursor: pointer;
        img {
          width: 100%;
          height: 100%;
        }
        .copiedTxt {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          background: #000;
          color: #fff;
          top: -30px;
          text-wrap: nowrap;
          padding: 3px 5px;
          font-size: 14px;
          line-height: 18px;
          border-radius: 6px;
          display: none;
        }
      }
    }
  }
  .other-blogs {
    margin-top: 110px;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      color: #000;
      width: 100%;
    }
    .blogs {
      margin-top: 48px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 20px;
    }
    .blogs-slide {
      display: none;
      width: 100%;
      margin-top: 28px;
      .blogCard {
        width: 319px;
        .cardImg {
          height: 200px !important;
        }
      }
    }
  }
}
.about {
  width: 100%;
  margin-top: 140px;
  .breadcrumb {
    max-width: 1440px;
    margin: 0 auto;
  }
  .sectionTitle {
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    width: 100%;
    max-width: 920px;
    margin: 40px auto 0;
  }
  .aboutImg {
    max-width: 1440px;
    width: 100%;
    padding-right: 80px;
    margin: 48px auto 0;
    display: flex;
    align-items: start;
    justify-content: end;
    transition: 0.5s ease-in-out;
    img {
      max-width: 500px;
      width: 100%;
      transition: 0.5s ease-in-out;
    }
    &:hover {
      max-width: 100%;
      padding-right: 0;
      img {
        max-width: 100%;
      }
    }
  }
  .about-container {
    max-width: 1440px;
    width: 100%;
    margin: 60px auto 0;
    .mediumTitle {
      font-weight: 600;
      font-size: 32px;
      line-height: 44px;
      color: #070707;
    }
    .content {
      margin-top: 20px;
      width: 100%;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: rgba(0, 0, 0, 0.8);
      }
    }
    .about-box {
      margin-top: 60px;
      width: 100%;
      background: #070707;
      border-radius: 40px;
      display: block;
      padding: 80px 60px;
      overflow: hidden;
      position: relative;
      .about-box-wrapper {
        display: flex;
        flex-direction: column;
        align-items: start;
        max-width: 870px;
        width: 100%;
        .box-item {
          width: 100%;
          padding: 40px 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.12);
          .mediumTitle {
            color: #f5f5f0;
          }
          p {
            margin-top: 20px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgba(255, 255, 255, 0.8);
          }
          &:last-child {
            border-bottom: none;
          }
        }
      }

      .infinity-text-container1 {
        position: absolute;
        z-index: 3;
        width: 650px;
        right: -190px;
        transform: rotate(66.97deg);
        bottom: 260px;
        padding: 8px;
        background: #fff;
        .infinity-text-swiper1 {
          width: 100%;
          .swiper-wrapper {
            transition-timing-function: linear;
            .infinity-text-item {
              width: max-content;
              p {
                font-weight: 400;
                font-size: 18px;
                line-height: 24px;
                color: #070707;
              }
            }
          }
        }
      }
      .infinity-text-container2 {
        position: absolute;
        z-index: 2;
        width: 655px;
        right: -95px;
        transform: rotate(40.93deg);
        bottom: 400px;
        padding: 8px;
        background: #fff;
        .infinity-text-swiper2 {
          width: 100%;
          .swiper-wrapper {
            transition-timing-function: linear;
            .infinity-text-item {
              width: max-content;
              p {
                font-weight: 400;
                font-size: 18px;
                line-height: 24px;
                color: #070707;
              }
            }
          }
        }
      }
    }
  }
}
.track-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  .track-container-head {
    margin: 40px auto 0;
    max-width: 685px;
    display: flex;
    flex-direction: column;
    align-items: center;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      text-align: center;
      color: #070707;
    }
    .description {
      margin-top: 20px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: rgba(0, 0, 0, 0.8);
      }
    }
    .trackOrderForm {
      display: flex;
      align-items: center;
      box-shadow: 0px 0px 48px 0px rgba(235, 177, 21, 0.08);
      background: #fff;
      border-radius: 100px;
      max-width: 640px;
      width: 100%;
      margin: 60px auto 0;
      padding: 7px 7px 7px 24px;
      input {
        width: 100%;
        border: none;
        outline: none;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        &::placeholder {
          color: #8f8f8f;
        }
      }
      .trackOrderBtn {
        text-wrap: nowrap;
        padding: 12px 24px;
        border-radius: 100px;
        font-weight: 500;
        font-size: 18px;
        line-height: 26px;
        color: #070707;
        background: #f5c80d;
        border: none;
        cursor: pointer;
        transition: 0.35s ease-in-out;
        &:hover {
          color: #fff;
          background: #070707;
        }
      }
    }
  }
  .track-result {
    width: 100%;
    margin-top: 110px;
    display: flex;
    align-items: start;
    gap: 48px;
    .result-detail {
      max-width: 713px;
      width: 100%;
      .detail-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        .tracingNumberBox {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 4px;
          span {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0%;
            color: rgba(0, 0, 0, 0.6);
          }
          .tracingNumber {
            display: flex;
            align-items: center;
            gap: 12px;
            p {
              font-weight: 600;
              font-size: 32px;
              line-height: 44px;
              color: #070707;
            }
            .copyTracingNumber {
              border: none;
              background: transparent;
              width: 20px;
              height: 20px;
              min-width: 20px;
              img {
                width: 100%;
                height: 100%;
              }
            }
          }
        }
        .status {
          display: flex;
          flex-direction: column;
          align-items: end;
          gap: 4px;
          span {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            text-align: right;
            color: rgba(0, 0, 0, 0.6);
          }
          p {
            font-weight: 400;
            font-size: 18px;
            line-height: 26px;
            text-align: right;
            color: #00b215;
          }
        }
      }
      .detail-wrapper {
        width: 100%;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        .detail-item {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          padding-bottom: 20px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.12);
          .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .detail-title {
            margin-top: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: rgba(0, 0, 0, 0.6);
          }
          .detail-desc {
            margin-top: 4px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #070707;
          }
          &:last-child {
            padding-bottom: 0;
            border-bottom: none;
          }
        }
      }
    }
    .track-result-right {
      min-width: 495px;
      width: 495px;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 28px;
      .order-status-box {
        width: 100%;
        background: #fff;
        border-radius: 20px;
        padding: 32px 28px 100px;
        .box-head {
          display: flex;
          align-items: center;
          width: 100%;
          justify-content: space-between;
          .box-title {
            font-weight: 500;
            font-size: 18px;
            line-height: 26px;
            color: #070707;
          }
          .estimated-delivery-time {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: rgba(0, 0, 0, 0.6);
            span {
              color: #070707;
            }
          }
        }
        .status-wrapper {
          display: flex;
          flex-direction: column;
          align-items: start;
          margin-top: 28px;
          gap: 20px;
          width: 100%;
          .status-item {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
            .status-detail {
              display: flex;
              flex-direction: column;
              align-items: start;
              gap: 4px;
              .status-name {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #838383;
              }
              .status-time {
                display: none;
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
                color: rgba(0, 0, 0, 0.6);
              }
            }
            .icon_pass {
              width: 44px;
              height: 44px;
              min-width: 44px;
              display: none;
              img {
                width: 100%;
                height: 100%;
              }
            }
            .icon_current {
              display: none;
              width: 44px;
              height: 44px;
              min-width: 44px;
              img {
                width: 100%;
                height: 100%;
              }
            }
            &:last-child {
              padding-bottom: 0;
              border-bottom: none;
            }
          }
          .status_passed {
            .status-detail {
              .status-name {
                color: #00b215;
              }
              .status-time {
                display: block;
              }
            }
            .icon_pass {
              display: block;
            }
          }
          .status_current {
            .status-detail {
              .status-name {
                color: #00b215;
              }
              .status-time {
                display: block;
              }
            }
            .icon_current {
              display: block;
            }
          }
        }
      }
      .track-contact {
        width: 100%;
        background: #ffffff;
        border-radius: 20px;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 28px;
        .track-contact-head {
          display: flex;
          align-items: center;
          gap: 28px;
          width: 100%;
          padding-bottom: 28px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.12);
          .logo {
            width: 60px;
            min-width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
            }
          }
          h2 {
            font-weight: 500;
            font-size: 18px;
            line-height: 26px;
            color: #000;
          }
        }
        .track-contact-links {
          display: flex;
          align-items: center;
          gap: 40px;
          .track-contact-link {
            display: flex;
            align-items: center;
            gap: 2px;
            z-index: 2;
            width: max-content;
            p {
              padding: 12px 24px;
              border-radius: 100px;
              background: #070707;
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              color: #f5f5f0;
              transition: 0.35s ease-in-out;
            }
            .icon {
              width: 48px;
              min-width: 48px;
              height: 48px;
              border-radius: 100px;
              display: flex;
              align-items: center;
              justify-content: center;
              background: #070707;
              transition: 0.35s ease-in-out;
              svg {
                width: 24px;
                height: 24px;
                min-width: 24px;
                transition: 0.35s ease-in-out;
              }
            }
          }
          .line {
            width: 1px;
            height: 48px;
            display: block;
            background: rgba(0, 0, 0, 0.12);
          }
        }
      }
    }
  }
}
.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  position: relative;
  .contact-container-img {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: -1;
    width: 278px;
    animation: rightToLeft2 10s ease-in-out infinite alternate;
  }
  .contact-container-head {
    margin: 40px auto 0;
    max-width: 765px;
    display: flex;
    flex-direction: column;
    align-items: center;
    .sectionTitle {
      font-weight: 600;
      font-size: 44px;
      line-height: 60px;
      text-transform: uppercase;
      text-align: center;
      color: #070707;
    }
    .description {
      margin-top: 20px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: rgba(0, 0, 0, 0.8);
      }
    }
  }
  .contact-box {
    width: 100%;
    margin-top: 110px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    .contact-box-title {
      font-weight: 500;
      font-size: 18px;
      line-height: 26px;
      color: #070707;
    }
    .contact-box-items {
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      width: 100%;
      .contact-box-item {
        display: flex;
        align-items: center;
        gap: 40px;
        .content {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 8px;
          h3 {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: rgba(0, 0, 0, 0.5);
          }
          a {
            font-weight: 400;
            font-size: 18px;
            line-height: 26px;
            letter-spacing: 0%;
            color: rgba(0, 0, 0, 0.8);
          }
        }
        img {
          height: 56px;
        }
        &:last-child {
          img {
            display: none;
          }
        }
      }
    }
  }
}
.choise-budget-container {
  max-width: 1440px;
  width: 100%;
  margin: 110px auto 0;
  .choise-budget {
    width: 100%;
    background: #070707;
    padding: 36px 64px 36px 48px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    .content {
      max-width: 580px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      .mediumTitle {
        font-weight: 600;
        font-size: 32px;
        line-height: 44px;
        text-transform: uppercase;
        color: #f5f5f0;
      }
      .description {
        margin-top: 20px;
        p {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.8);
        }
      }
      .more {
        display: flex;
        align-items: center;
        gap: 2px;
        margin-top: 40px;
        z-index: 2;
        width: max-content;
        border: none;
        outline: none;
        background: transparent;
        cursor: pointer;
        p {
          padding: 12px 24px;
          border-radius: 100px;
          background: #f5c80d;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #070707;
          transition: 0.35s ease-in-out;
          width: 100%;
        }
        .icon {
          width: 48px;
          min-width: 48px;
          height: 48px;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f5c80d;
          transition: 0.35s ease-in-out;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.35s ease-in-out;
            filter: invert(0) brightness(0);
          }
        }
        &:hover {
          p {
            background: #fff;
            color: #070707;
          }
          .icon {
            background: #fff;
            transform: rotate(90deg);
            img {
              filter: none;
            }
          }
        }
      }
    }
    .boxImages {
      width: 193px;
      min-width: 193px;
      height: 222px;
      position: relative;
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 0;
        animation: showBox 9s infinite ease-in-out;
      }
      .box1 {
        animation-delay: 0s;
      }
      .box2 {
        animation-delay: 1.5s;
      }
      .box3 {
        animation-delay: 3s;
      }
      .box4 {
        animation-delay: 4.5s;
      }
      .box5 {
        animation-delay: 6s;
      }
      .box6 {
        animation-delay: 7.5s;
      }
    }
  }
}
@keyframes rightToLeft2 {
  from {
    right: 0;
  }
  to {
    right: calc(100% - 278px);
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 48px;
    padding-right: 48px;
  }
  nav {
    .navbar {
      .navbar-inner {
        .logo {
          width: 85px;
          min-width: 85px;
        }
        .navigation-menu {
          max-width: 540px;
          width: 100%;
          .dropMenu {
            padding: 30px 0;
            .dropMenuBox {
              top: 102px;
              .dropMenuBox-inner {
                padding: 20px;
                gap: 20px;
                .box-title {
                  font-size: 28px;
                  line-height: 36px;
                }
                .dropMenuBox-links {
                  padding: 24px 20px 44px;
                  max-width: 682px;
                  column-gap: 16px;
                  .drop-link {
                    gap: 10px;
                    font-size: 15px;
                    line-height: 22px;
                    padding-top: 16px;
                    &:nth-child(odd) {
                      padding-right: 20px;
                    }
                    &:first-child {
                      padding-top: 0;
                    }
                    &:nth-child(2) {
                      padding-top: 0;
                    }
                    img {
                      width: 18px;
                      height: 18px;
                      min-width: 18px;
                    }
                  }
                }
                .other-links {
                  max-width: 180px;
                  padding: 20px;
                  gap: 12px;
                  .other-links-title {
                    font-size: 16px;
                    line-height: 24px;
                  }
                  .other-link {
                    font-size: 15px;
                    line-height: 22px;
                    img {
                      opacity: 0;
                      width: 18px;
                      height: 18px;
                      min-width: 18px;
                    }
                  }
                }
              }
            }
            &:hover {
              .dropMenuBox {
                top: 92px;
              }
            }
          }
        }
        .trackOrderLink {
          p {
            padding: 10px 20px;
            font-size: 15px;
            line-height: 22px;
          }
          .icon {
            width: 42px;
            min-width: 42px;
            height: 42px;
            svg {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
      }
    }
  }
  .heroContainer {
    margin: 150px auto 0;
    .heroTitle {
      font-size: 42px;
      line-height: 58px;
    }
    .countries {
      gap: 16px 20px;
      margin-top: 26px;
      .countryItem {
        img {
          width: 16px;
          height: 16px;
          min-width: 16px;
        }
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .trackOrderForm {
      max-width: 540px;
      margin: 54px auto 0;
      padding: 4px 4px 4px 16px;
      .trackOrderBtn {
        font-size: 14px;
        line-height: 20px;
      }
    }
  }
  .homeStatistics-container {
    .containerImg {
      max-width: 700px;
    }
    .homeStatistics-main {
      padding: 180px 40px 50px;
      margin-top: -130px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
        max-width: 900px;
      }
      .desc {
        margin-top: 24px;
        max-width: 900px;
        p {
          font-weight: 400;
          font-size: 15px;
          line-height: 20px;
        }
      }
      .moreLink {
        margin-top: 38px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
        .icon {
          width: 44px;
          min-width: 44px;
          height: 44px;
        }
      }
      .homeStatistics {
        margin-top: 74px;
        .statistics-item {
          gap: 30px;
          margin-right: 30px;
          .content {
            h3 {
              font-size: 42px;
              line-height: 58px;
            }
            p {
              font-size: 12px;
              line-height: 18px;
            }
          }
          img {
            height: 86px;
          }
        }
      }
    }
  }
  .home-advantages-container {
    margin-top: 92px;
    padding: 64px 0;
    .home-advantages {
      gap: 34px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .advantages-boxes {
        max-width: 580px;
        .advantage-box {
          gap: 10px;
          padding: 20px;
          .box-head {
            .icon {
              width: 30px;
              height: 30px;
              min-width: 30px;
            }
            h3 {
              font-size: 16px;
              line-height: 24px;
            }
          }
          .desc {
            p {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
  .shippingCosts-container {
    margin: 92px auto 0;
    .shippingCosts-main {
      border-radius: 30px;
      padding: 40px;
      min-height: 560px;
      gap: 40px;
      .shippingCosts-area {
        max-width: 500px;
        .sectionTitle {
          font-size: 34px;
          line-height: 46px;
        }
        .shippingCosts {
          margin-top: 38px;
          .shippingCostsTabs {
            .shippingCostsTab {
              padding: 10px 20px;
              font-size: 13px;
              line-height: 16px;
            }
          }
          .shippingCosts-items {
            .shippingCosts-item {
              .price {
                font-size: 14px;
                line-height: 20px;
              }
              .weightInterval {
                font-size: 14px;
                line-height: 20px;
              }
            }
          }
        }
      }
      .boxAnimation {
        min-width: 200px;
        width: 200px;
        gap: 26px;
        .boxImages {
          height: 238px;
        }
        .boxAnimation_shadow {
          max-width: 150px;
        }
      }
    }
  }
  @keyframes slideUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-60px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .serviceCard {
    padding: 16px;
    .card-head {
      .cartTitle {
        font-size: 16px;
        line-height: 24px;
      }
      .icon {
        background: #f5f5f0;
        width: 44px;
        height: 44px;
        min-width: 44px;
        img {
          width: 22px;
          height: 22px;
          min-width: 22px;
        }
      }
    }
    .short_desc {
      p {
        font-size: 14px;
        line-height: 20px;
        -webkit-line-clamp: 3;
        height: 60px;
      }
    }
    .cardImg {
      margin-top: 20px;
      height: 207px;
    }
    &:hover {
      .short_desc {
        p {
          -webkit-line-clamp: 5;
          height: 100px;
        }
      }
      .cardImg {
        height: 167px;
      }
    }
  }
  .homeService-container {
    margin: 92px auto 0;
    .sectionTitle {
      font-size: 34px;
      line-height: 46px;
      max-width: 755px;
    }
    .moreLink {
      margin-top: 34px;
      p {
        font-size: 14px;
        line-height: 20px;
      }
      .icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
      }
    }
    .homeServices-slide {
      margin-top: 44px;
      width: 100%;
      padding-bottom: 64px;
      .serviceCard {
        max-width: 361px;
      }
      .swiper-bottom {
        gap: 25px;
        .swiper-pagination {
          font-size: 12px;
          line-height: 18px;
        }
        .navigation-buttons {
          .swiper-button-next,
          .swiper-button-prev {
            width: 22px;
            height: 22px;
            min-width: 22px;
          }
        }
      }
    }
  }
  .request {
    margin: 92px auto 0;
    padding: 56px 0 44px;
    .request-container {
      .sectionTitle {
        max-width: 550px;
        font-size: 34px;
        line-height: 46px;
      }
      .request-form {
        max-width: 455px;
        padding: 34px 30px 56px;
        .form-item {
          .form-input {
            padding: 12px 16px;
            .icon {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
        .send {
          p {
            font-size: 14px;
            line-height: 20px;
          }
          .icon {
            width: 44px;
            min-width: 44px;
            height: 44px;
          }
        }
      }
    }
  }
  .blogCard {
    padding-bottom: 16px;
    gap: 16px;
    .cardImg {
      width: 182px;
      min-width: 182px;
      height: 148px;
    }
    .cardBody {
      gap: 12px;
      .blogTitle {
        font-size: 16px;
        line-height: 24px;
      }
      .short_desc {
        p {
          font-size: 14px;
          line-height: 20px;
          height: 40px;
        }
      }
      .bodyBottom {
        .time {
          font-size: 12px;
          line-height: 16px;
        }
      }
    }
  }
  .home-blogs-container {
    margin: 92px auto 0;
    .home-blogs-aside {
      max-width: 360px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .description {
        margin-top: 16px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .moreLink {
        margin-top: 34px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
        .icon {
          width: 44px;
          min-width: 44px;
          height: 44px;
        }
      }
    }
    .home-blogs {
      gap: 20px;
    }
  }
  footer {
    margin: 92px auto 0;
    padding: 0 10px;
    .footer-container {
      border-radius: 30px 30px 0 0;
      padding: 50px 30px 0;
      .footerContainerImg {
        width: 380px;
      }
      .footer-boxes {
        gap: 54px;
        .footer-box {
          .box-title {
            font-size: 16px;
            line-height: 24px;
          }
          .box-links {
            .box-link {
              font-size: 14px;
              line-height: 20px;
            }
          }
          .box-contact {
            max-width: 280px;
            .contact-item {
              .contact-item-link {
                font-size: 14px;
                line-height: 20px;
              }
            }
          }
        }
      }
      .footer-bottom {
        margin-top: 82px;
        .trackOrderForm {
          max-width: 420px;
          padding: 4px 4px 4px 16px;
          .trackOrderBtn {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .footer-socials {
          .social-item {
            width: 30px;
            height: 30px;
            min-width: 30px;
          }
        }
      }
      .copyRight {
        margin-top: 34px;
        padding: 34px 0;
      }
    }
  }
  @keyframes rightToLeft {
    from {
      right: 0;
    }
    to {
      right: calc(100% - 380px);
    }
  }
  .breadcrumb {
    gap: 10px;
    .breadcrumb-item {
      font-size: 12px;
      line-height: 18px;
    }
  }
  .blogs-container {
    margin: 120px auto 0;
    .blogs-container-head {
      margin: 32px auto 0;
      max-width: 665px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .description {
        margin-top: 16px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .blogs-top {
      margin-top: 74px;
      .blogs-types {
        .typeItem {
          font-size: 13px;
          line-height: 18px;
        }
      }
    }
    .blogs {
      margin-top: 30px;
      gap: 20px;
    }
    .pagination {
      margin: 54px auto 0;
      .paginationPrev,
      .paginationNext {
        font-size: 14px;
        line-height: 20px;
      }
      .pagination-items {
        .pagination-item {
          width: 45px;
          height: 45px;
          min-width: 45px;
        }
      }
    }
  }
  .blog-detail-container {
    margin: 120px auto 0;
    .blog-detail-banner {
      height: 430px;
      .breadcrumb {
        top: 30px;
        left: 30px;
      }
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
        max-width: 650px;
      }
    }
    .blog-detail-parametrs {
      margin-top: 36px;
      padding: 26px 32px;
      .reading-time {
        font-size: 14px;
        line-height: 20px;
      }
      .shared-time {
        font-size: 14px;
        line-height: 20px;
      }
    }
    .content {
      margin-top: 36px;
      p {
        font-size: 14px;
        line-height: 20px;
      }
    }
    .shared {
      margin-top: 50px;
      h3 {
        font-size: 14px;
        line-height: 20px;
      }
      .shared-links {
        gap: 20px;
        .shared-link {
          width: 30px;
          height: 30px;
          min-width: 30px;
        }
        .shared-Btn {
          width: 30px;
          height: 30px;
          min-width: 30px;
        }
      }
    }
    .other-blogs {
      margin-top: 92px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .blogs {
        margin-top: 38px;
      }
    }
  }
  .services-container {
    margin: 120px auto 0;
    .sectionTitle {
      font-size: 34px;
      line-height: 46px;
      margin: 32px auto 0;
      max-width: 605px;
    }
    .services {
      margin-top: 92px;
      gap: 24px 20px;
    }
  }
  .services-detail-container {
    margin: 120px auto 0;
    .service-detail {
      .detail-img {
        max-width: 488px;
        margin-left: 66px;
        margin-right: -48px;
      }
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .content {
        margin-top: 24px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }
  .rates-container {
    margin: 120px auto 0;
    .rates-container-head {
      margin: 32px auto 0;
      max-width: 765px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .description {
        margin-top: 16px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .shippingCosts-main {
      margin-top: 92px;
      border-radius: 30px;
      padding: 40px;
      min-height: 560px;
      gap: 40px;
      .shippingCosts {
        max-width: 500px;
        .shippingCostsTabs {
          .shippingCostsTab {
            padding: 10px 20px;
            font-size: 13px;
            line-height: 16px;
          }
        }
        .shippingCosts-items {
          .shippingCosts-item {
            .price {
              font-size: 14px;
              line-height: 20px;
            }
            .weightInterval {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
      }
      .boxAnimation {
        min-width: 200px;
        width: 200px;
        gap: 26px;
        .boxImages {
          height: 238px;
        }
        .boxAnimation_shadow {
          max-width: 150px;
        }
      }
    }
  }
  .faq-container {
    margin: 92px auto 0;
    .faq {
      width: 100%;
      padding: 0 55px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .faq-items {
        margin-top: 36px;
        .faq-item {
          padding-bottom: 20px;
          .faq-question {
            span {
              font-size: 16px;
              line-height: 24px;
            }
          }
          .faq-answer {
            p {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
  .track-container {
    margin: 120px auto 0;
    .track-container-head {
      margin: 32px auto 0;
      max-width: 635px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .description {
        margin-top: 16px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .trackOrderForm {
        max-width: 540px;
        margin: 54px auto 0;
        padding: 4px 4px 4px 16px;
        .trackOrderBtn {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .track-result {
      margin-top: 92px;
      gap: 44px;
      .result-detail {
        .detail-head {
          .tracingNumberBox {
            span {
              font-size: 12px;
              line-height: 18px;
            }
            .tracingNumber {
              p {
                font-size: 24px;
                line-height: 32px;
              }
            }
          }
          .status {
            span {
              font-size: 12px;
              line-height: 18px;
            }
            p {
              font-size: 16px;
              line-height: 24px;
            }
          }
        }
        .detail-wrapper {
          margin-top: 34px;
          gap: 16px;
          .detail-item {
            padding-bottom: 16px;
            .icon {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
            .detail-title {
              margin-top: 14px;
              font-size: 12px;
              line-height: 18px;
            }
            .detail-desc {
              font-size: 14px;
              line-height: 20px;
            }
            &:last-child {
              padding-bottom: 0;
            }
          }
        }
      }
      .track-result-right {
        min-width: 355px;
        width: 355px;
        .order-status-box {
          padding: 28px 20px;
          .box-head {
            flex-direction: column;
            align-items: start;
            gap: 8px;
          }
          .status-wrapper {
            .status-item {
              .status-detail {
                .status-name {
                  font-size: 14px;
                  line-height: 20px;
                }
              }
            }
          }
        }
        .track-contact {
          padding: 28px 20px;
          gap: 24px;
          .track-contact-head {
            padding-bottom: 24px;
            h2 {
              font-size: 16px;
              line-height: 24px;
            }
          }
          .track-contact-links {
            gap: 20px;
            flex-direction: column;
            align-items: start;
            width: 100%;
            .track-contact-link {
              width: 100%;
              p {
                width: 100%;
                font-size: 14px;
                line-height: 20px;
                text-align: center;
              }
              .icon {
                width: 44px;
                min-width: 44px;
                height: 44px;
              }
            }
            .line {
              display: none;
            }
          }
        }
      }
    }
  }
  .contact-container {
    margin: 120px auto 0;
    .contact-container-img {
      top: -27px;
      width: 208px;
    }
    .contact-container-head {
      margin: 32px auto 0;
      max-width: 665px;
      .sectionTitle {
        font-size: 34px;
        line-height: 46px;
      }
      .description {
        margin-top: 16px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .contact-box {
      margin-top: 92px;
      padding: 30px;
      .contact-box-title {
        font-size: 16px;
        line-height: 24px;
      }
      .contact-box-items {
        gap: 30px;
        .contact-box-item {
          gap: 30px;
          .content {
            a {
              max-width: 350px;
            }
          }
        }
      }
    }
  }
  .choise-budget-container {
    margin: 92px auto 0;
    .choise-budget {
      padding: 32px 44px 40px 28px;
      .content {
        max-width: 580px;
        .mediumTitle {
          font-size: 26px;
          line-height: 38px;
        }
        .description {
          margin-top: 16px;
          p {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .more {
          p {
            font-size: 14px;
            line-height: 20px;
          }
          .icon {
            width: 44px;
            min-width: 44px;
            height: 44px;
          }
        }
      }
      .boxImages {
        min-width: 173px;
        width: 173px;
        height: 202px;
      }
    }
  }
  @keyframes rightToLeft2 {
    from {
      right: 0;
    }
    to {
      right: calc(100% - 208px);
    }
  }
  .about {
    margin-top: 120px;
    .sectionTitle {
      font-size: 34px;
      line-height: 46px;
      max-width: 820px;
      margin: 32px auto 0;
    }
    .aboutImg {
      padding-right: 48px;
      margin: 38px auto 0;
      img {
        max-width: 400px;
      }
    }
    .about-container {
      margin: 44px auto 0;
      .mediumTitle {
        font-size: 26px;
        line-height: 38px;
      }
      .content {
        margin-top: 16px;
        width: 100%;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .about-box {
        margin-top: 66px;
        border-radius: 30px;
        padding: 60px 40px;
        .about-box-wrapper {
          max-width: 670px;
          .box-item {
            p {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }

        .infinity-text-container1 {
          width: 550px;
          right: -150px;
          transform: rotate(56.97deg);
          bottom: 345px;
          .infinity-text-swiper1 {
            .swiper-wrapper {
              .infinity-text-item {
                p {
                  font-size: 16px;
                  line-height: 20px;
                }
              }
            }
          }
        }
        .infinity-text-container2 {
          width: 580px;
          right: -65px;
          transform: rotate(30.93deg);
          bottom: 430px;
          .infinity-text-swiper2 {
            .swiper-wrapper {
              .infinity-text-item {
                p {
                  font-size: 16px;
                  line-height: 20px;
                }
              }
            }
          }
        }
      }
    }
  }
}
@media only screen and (max-width: 992px) {
  nav {
    .navbar {
      .navbar-inner {
        padding-top: 12px;
        padding-bottom: 12px;
        .logo {
          width: 65px;
          min-width: 65px;
        }
        .navigation-menu {
          display: none;
        }
        .trackOrderLink {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }
    }
  }
  .homeStatistics-container {
    .containerImg {
      max-width: 600px;
    }
  }
  .shippingCosts-container {
    .shippingCosts-main {
      min-height: auto;
      gap: 90px;
      flex-direction: column;

      .shippingCosts-area {
        max-width: 100%;
      }
    }
  }
  .request {
    .request-container {
      .sectionTitle {
        max-width: 400px;
      }
    }
  }
  .blogCard {
    flex-direction: column;
    .cardImg {
      width: 100%;
      min-width: 0;
      height: auto;
    }
    .cardBody {
      .short_desc {
        p {
          height: 60px;
          -webkit-line-clamp: 3;
        }
      }
    }
  }
  .home-blogs-container {
    flex-direction: column;
    gap: 40px;
    .home-blogs-aside {
      max-width: 100%;
    }
    .home-blogs {
      display: none;
    }
    .blogs-slide {
      display: block;
    }
  }
  footer {
    .footer-container {
      .footerContainerImg {
        width: 280px;
      }
      .footer-boxes {
        gap: 24px;
      }
    }
  }
  @keyframes rightToLeft {
    from {
      right: 0;
    }
    to {
      right: calc(100% - 280px);
    }
  }
  .blogs-container {
    .blogs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      .blogCard {
        .cardImg {
          height: 210px;
        }
      }
    }
  }
  .blog-detail-container {
    .other-blogs {
      .blogs {
        display: none;
      }
      .blogs-slide {
        display: block;
      }
    }
  }
  .services-container {
    .services {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .services-detail-container {
    .service-detail {
      .detail-img {
        max-width: 388px;
        margin-left: 36px;
      }
    }
  }
  .rates-container {
    .shippingCosts-main {
      min-height: auto;
      gap: 90px;
      flex-direction: column;
      .shippingCosts {
        max-width: 100%;
      }
    }
  }
  .contact-container {
    .contact-container-img {
      top: -40px;
      width: 208px;
    }
    .contact-box {
      .contact-box-items {
        gap: 28px;
        flex-direction: column;
        align-items: start;
        .contact-box-item {
          gap: 0;
          .content {
            a {
              max-width: 100%;
            }
          }
          img {
            display: none;
          }
        }
      }
    }
  }
  .about {
    .aboutImg {
      padding-right: 48px;
      margin: 38px auto 0;
      pointer-events: none;
      height: auto;
      img {
        max-width: 400px;
      }
    }
    .aboutImg.active {
      padding-right: 0;
      img {
        max-width: 100%;
      }
    }
    .about-container {
      .about-box {
        .about-box-wrapper {
          max-width: 470px;
        }
      }
    }
  }
}
@media only screen and (max-width: 786px) {
  .p-lr {
    padding-left: 16px;
    padding-right: 16px;
  }
  .heroContainer {
    margin: 130px auto 0;
    .heroTitle {
      font-size: 28px;
      line-height: 36px;
      text-align: justify;
    }
    .countries {
      gap: 16px;
      margin-top: 20px;
      .countryItem {
        img {
          width: 14px;
          height: 14px;
          min-width: 14px;
        }
        p {
          font-size: 12px;
          line-height: 18px;
        }
      }
    }
    .trackOrderForm {
      max-width: 100%;
      margin: 48px auto 0;
    }
  }
  .homeStatistics-container {
    .containerImg {
      max-width: 400px;
    }
    .homeStatistics-main {
      padding: 105px 20px 40px;
      margin-top: -60px;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .desc {
        margin-top: 20px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .moreLink {
        margin-top: 28px;
      }
      .homeStatistics {
        margin-top: 48px;
        .statistics-item {
          margin-right: 20px;
          gap: 20px;
          .content {
            h3 {
              font-size: 28px;
              line-height: 36px;
            }
          }
          img {
            height: 64px;
          }
        }
      }
    }
  }
  .home-advantages-container {
    margin-top: 74px;
    padding: 48px 0;
    .home-advantages {
      gap: 28px;
      flex-direction: column;
      .sectionTitle {
        max-width: 100%;
        font-size: 24px;
        line-height: 32px;
      }
      .advantages-boxes {
        max-width: 100%;
        .advantage-box {
          padding: 16px;
          .box-head {
            .icon {
              width: 28px;
              height: 28px;
              min-width: 28px;
            }
          }
        }
      }
    }
  }
  .shippingCosts-container {
    margin: 74px auto 0;
    .shippingCosts-main {
      border-radius: 20px;
      padding: 32px 20px;
      .shippingCosts-area {
        .sectionTitle {
          font-size: 24px;
          line-height: 32px;
        }
        .shippingCosts {
          margin-top: 28px;
        }
      }
      .boxAnimation {
        min-width: 164px;
        width: 164px;
        gap: 20px;
        .boxImages {
          height: 190px;
        }
        .boxAnimation_shadow {
          max-width: 130px;
        }
      }
    }
  }
  .homeService-container {
    margin: 74px auto 0;
    .sectionTitle {
      font-size: 24px;
      line-height: 32px;
      max-width: 100%;
    }
    .moreLink {
      margin-top: 28px;
    }
    .homeServices-slide {
      margin-top: 40px;
      padding-bottom: 62px;
      .serviceCard {
        max-width: 319px;
      }
      .swiper-bottom {
        gap: 22px;
      }
    }
  }
  .request {
    margin: 74px auto 0;
    padding: 32px 0 50px;
    .request-container {
      flex-direction: column;
      gap: 26px;
      .sectionTitle {
        max-width: 100%;
        font-size: 24px;
        line-height: 32px;
      }
      .request-form {
        max-width: 100%;
        padding: 28px 20px;
      }
    }
  }
  .home-blogs-container {
    margin: 74px auto 0;
    .home-blogs-aside {
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .description {
        display: none;
      }
      .moreLink {
        margin-top: 28px;
      }
    }
    .blogs-slide {
      display: block;
    }
  }
  footer {
    margin: 74px auto 0;
    padding: 0 5px;
    .footer-container {
      border-radius: 20px 20px 0 0;
      padding: 40px 20px 0;
      .footerContainerImg {
        width: 150px;
      }
      .footer-boxes {
        gap: 40px;
        flex-direction: column;
        .footer-box {
          .box-contact {
            max-width: 100%;
          }
        }
      }
      .footer-bottom {
        margin-top: 74px;
        flex-direction: column;
        align-items: start;
        gap: 74px;
        .trackOrderForm {
          max-width: 100%;
          padding: 0;
          flex-direction: column;
          align-items: start;
          gap: 20px;
          background: transparent;
          input {
            background: rgba(255, 255, 255, 0.08);
            padding: 14px 20px;
            border-radius: 100px;
          }
          .trackOrderBtn {
            width: 100%;
            font-size: 14px;
            line-height: 20px;
          }
        }
        .footer-socials {
          .social-item {
            width: 28px;
            height: 28px;
            min-width: 28px;
          }
        }
      }
      .copyRight {
        margin-top: 28px;
        padding: 28px 0;
      }
    }
  }
  @keyframes rightToLeft {
    from {
      right: 0;
    }
    to {
      right: calc(100% - 150px);
    }
  }
  .blogs-container {
    margin: 104px auto 0;
    .blogs-container-head {
      margin: 24px auto 0;
      max-width: 100%;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .description {
        display: none;
      }
    }
    .blogs {
      margin-top: 28px;
      gap: 24px;
      grid-template-columns: repeat(2, 1fr);
      .blogCard {
        .cardImg {
          height: 170px;
        }
      }
    }
    .pagination {
      margin: 48px auto 0;
    }
  }
  .blog-detail-container {
    margin: 96px auto 0;
    .blog-detail-banner {
      height: 384px;
      .breadcrumb {
        top: 20px;
        left: 20px;
      }
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
        max-width: 100%;
        padding: 0 16px;
      }
    }
    .blog-detail-parametrs {
      margin-top: 24px;
      padding: 20px;
      gap: 16px;
      flex-direction: column;
      align-items: start;
    }
    .content {
      margin-top: 24px;
    }
    .shared {
      margin-top: 40px;
      flex-direction: column;
      align-items: start;
      .shared-links {
        .shared-link {
          width: 28px;
          height: 28px;
          min-width: 28px;
        }
        .shared-Btn {
          width: 28px;
          height: 28px;
          min-width: 28px;
        }
      }
    }
    .other-blogs {
      margin-top: 74px;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .blogs {
        display: none;
      }
    }
  }
  .services-container {
    margin: 104px auto 0;
    .sectionTitle {
      font-size: 24px;
      line-height: 32px;
      margin: 24px auto 0;
      max-width: 405px;
    }
    .services {
      margin-top: 74px;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 20px;
    }
  }
  .services-detail-container {
    margin: 104px auto 0;
    .service-detail {
      .detail-img {
        max-width: 148px;
        margin-left: 16px;
        margin-right: -16px;
        overflow: hidden;
        img {
          width: 300px;
        }
      }
      .sectionTitle {
        font-size: 20px;
        line-height: 28px;
      }
      .content {
        margin-top: 20px;
      }
    }
  }
  .rates-container {
    margin: 104px auto 0;
    .rates-container-head {
      margin: 28px auto 0;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .description {
        margin-top: 12px;
      }
    }
    .shippingCosts-main {
      margin-top: 74px;
      border-radius: 20px;
      padding: 32px 20px;
      .boxAnimation {
        min-width: 164px;
        width: 164px;
        gap: 20px;
        .boxImages {
          height: 190px;
        }
        .boxAnimation_shadow {
          max-width: 130px;
        }
      }
    }
  }
  .faq-container {
    margin: 74px auto 0;
    .faq {
      padding: 0;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .faq-items {
        margin-top: 28px;
      }
    }
  }
  .track-container {
    margin: 104px auto 0;
    .track-container-head {
      margin: 24px auto 0;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .description {
        margin-top: 12px;
      }
      .trackOrderForm {
        max-width: 100%;
        margin: 40px auto 0;
      }
    }
    .track-result {
      margin-top: 74px;
      gap: 44px;
      flex-direction: column;
      .result-detail {
        max-width: 100%;
      }
      .track-result-right {
        min-width: 0;
        width: 100%;
      }
    }
  }
  .contact-container {
    margin: 104px auto 0;
    .contact-container-img {
      top: -24px;
      width: 133px;
    }
    .contact-container-head {
      margin: 52px auto 0;
      max-width: 665px;
      .sectionTitle {
        font-size: 24px;
        line-height: 32px;
      }
      .description {
        margin-top: 12px;
      }
    }
    .contact-box {
      margin-top: 74px;
      padding: 32px 20px;
    }
  }
  .choise-budget-container {
    margin: 74px auto 0;
    .choise-budget {
      padding: 32px 20px 40px;
      flex-direction: column;
      gap: 60px;
      .content {
        max-width: 100%;
        .mediumTitle {
          font-size: 20px;
          line-height: 32px;
        }
      }
      .boxImages {
        min-width: 156px;
        width: 156px;
        height: 180px;
      }
    }
  }
  @keyframes rightToLeft2 {
    from {
      right: 0;
    }
    to {
      right: calc(100% - 133px);
    }
  }
  .about {
    margin-top: 104px;
    .sectionTitle {
      font-size: 24px;
      line-height: 32px;
      margin: 24px auto 0;
    }
    .aboutImg {
      padding-right: 16px;
      margin: 28px auto 0;
      img {
        max-width: 225px;
      }
    }
    .about-container {
      margin: 28px auto 0;
      .mediumTitle {
        font-size: 18px;
        line-height: 28px;
      }
      .about-box {
        margin-top: 74px;
        border-radius: 20px;
        padding: 140px 20px 60px;
        .about-box-wrapper {
          max-width: 90%;
          .box-item {
            .mediumTitle {
              font-size: 24px;
              line-height: 32px;
            }
          }
        }

        .infinity-text-container1 {
          width: 350px;
          right: -75px;
          transform: rotate(50deg);
          top: 90px;
          bottom: auto;
          .infinity-text-swiper1 {
            .swiper-wrapper {
              .infinity-text-item {
                p {
                  font-size: 14px;
                  line-height: 18px;
                }
              }
            }
          }
        }
        .infinity-text-container2 {
          width: 478px;
          right: -30px;
          transform: rotate(20deg);
          top: 50px;
          bottom: auto;
          .infinity-text-swiper2 {
            .swiper-wrapper {
              .infinity-text-item {
                p {
                  font-size: 14px;
                  line-height: 18px;
                }
              }
            }
          }
        }
      }
    }
  }
}
@media only screen and (max-width: 575px) {
  .homeStatistics-container {
    .containerImg {
      max-width: 280px;
    }
    .homeStatistics-main {
      padding: 85px 20px 40px;
      margin-top: -50px;
    }
  }
  .blogs-container {
    .blogs {
      grid-template-columns: repeat(1, 1fr);
      .blogCard {
        .cardImg {
          height: auto;
        }
      }
    }
  }
  .services-container {
    .services {
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }
  }
}
