.container {
  word-wrap: break-word;
}
a {
  text-decoration: none;
}
a:hover {
  color: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
}
body {
  font-family: "Inter", serif;
  background-color: #000000;
}
.container {
  max-width: 1500px;
  width: 90%;
  margin: auto;
}
.Container-Fluid {
  max-width: 1800px;
  width: 95%;
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", serif;
  letter-spacing: 1px;
}

button,
a {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 300;
  font-family: var(--p-font);
  font-family: "Inter", serif;  
}
button {
  padding: 13px 23px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
  position: relative;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400 !important;
  i {
    background-color: var(--primary-color);
    width: 25px;
    height: 25px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    border-radius: 50%;
    color: #000;
  }
  &:hover {
    background-color: var(--primary-color);
    color: #000;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    i {
      background-color: var(--secondary-color);
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    }
  }
}

p {
  font-size: 18px;
  letter-spacing: 1.5px;
  font-family: var(--p-font);
  color: var(--opccity-scondary);
  line-height: 25px;
  font-weight: 300;
}
h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
  text-transform: capitalize;
}
:root {
  --primary-color: #d5ff40;
  --secondary-color: #fff;
  --p-font: "Inter", serif;
  --opccity-scondary: rgba(255, 255, 255, 0.5);
}
.Green {
  color: var(--primary-color);
}
/* HEADER */
header {
  padding: 20px 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 111;
  top: 0;
  width: 100%;
  .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    .nave {
      .navemenu {
        display: flex;
        align-items: center;
        gap: 60px;
        ul {
          display: flex;
          align-items: center;
          gap: 20px;
          li {
            a {
              color: var(--secondary-color);
              opacity: 0.5;
              transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
              &:hover {
                opacity: 1;
              }
            }
          }
        }
      }
    }
    .Action {
      a {
        button {
          background-color: transparent;
          border-radius: 50px;
          border: 1px solid var(--primary-color);
          padding: 10px 23px;
          color: var(--secondary-color);
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
          position: relative;
          font-size: 14px !important;
          &:hover {
            background-color: var(--primary-color);
            color: #000;
          }
        }
      }
    }
  }
}
.Banner-2 {
  color: #fff;
  .Title {
    padding-top: 200px;
    h3 {
      text-align: center;
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 10px;
    }
    h1 {
      text-align: center;
      font-size: 150px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 135px;
      span {
        paint-order: stroke fill;
        display: block;
        color: transparent;
        color: black;
        -webkit-text-stroke: 3px var(--primary-color);
      }
    }
  }
  .Image {
    display: flex;
    position: relative;
    &::after {
      content: "";
      width: 420px;
      height: 420px;
      background-color: transparent;
      border: 70px solid var(--primary-color);
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 75%;
      transform: translate(-50%, -50%);
      opacity: 0.5;
      filter: blur(100px);
    }
    margin-top: -147px;
    img {
      width: 32%;
      margin: 0 auto;
      position: relative;
      z-index: 999;
    }
  }
  .content {
    position: relative;
    p {
      max-width: 500px;
      position: absolute;
      bottom: 100px;
      left: 0;
      background-color: rgba(255, 255, 255, 0.07); /* Semi-transparent white */
      backdrop-filter: blur(10px); /* Adjust blur intensity */
      padding: 20px;
      border-radius: 10px;
    }
    .Button {
      position: absolute;
      bottom: 135px;
      right: 170px;
      color: #fff;
      font-weight: 300;
      background-color: transparent;
      padding: 10px 20px;
      border: 0.5px solid var(--primary-color);
      display: flex;
      align-items: center;
      gap: 15px;
      border-radius: 30px;
      font-size: 14px;
      i {
        color: #000;
        background-color: var(--primary-color);
        width: 25px;
        height: 25px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
      }
    }
  }
}
/* BANNER */
.banner {
  background-image: url(../assets/images/banner-2.png);
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  .flex {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    .title {
      width: calc(60% - 12px);
      h1,
      span {
        font-size: 85px;
        line-height: 85px;
        text-transform: capitalize !important;
        font-family: "Manrope", serif;
        font-weight: 600;
      }
      span {
        display: block;
        position: relative;
        padding-left: 310px;
        &::before {
          content: "";
          background-color: var(--secondary-color);
          width: 270px;
          height: 7px;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(50%);
          opacity: 0.5;
        }
      }
    }
    .description {
      max-width: 370px;
      p {
        margin-bottom: 20px;
      }
    }
  }
}
/* FOOTER */
footer {
  padding-top: 80px;
  .menu {
    margin-bottom: 20px;
    ul {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 30px;
      max-width: 600px;
      justify-content: center;
      margin: 0 auto;
      li {
        a {
          opacity: 0.5;
          color: var(--secondary-color);
        }
        &:hover {
          a {
            opacity: 1;
            transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1;
          }
        }
      }
    }
  }
  .Bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    ul {
      display: flex;
      gap: 15px;
      align-items: center;
      li {
        a {
          color: var(--secondary-color);
          opacity: 0.5;
        }
        &:hover {
          a {
            color: var(--primary-color);
            opacity: 1;
          }
        }
      }
    }
    .Logo {
      width: 170px;
    }
  }
}

/* HOME ABOUT */
.HomeAbout {
  background-color: #080a09;
  padding: 200px 0;
  position: relative;
  &::after {
    content: "";
    background-color: var(--primary-color);
    height: 150px;
    width: 80px;
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    right: 300px;
    top: 150px;
    transform: rotate(50deg);
  }
  .Flex {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    .Title {
      width: calc(50% - 12px);
      h2 {
        color: rgba(255, 255, 255, 0.7);
        span {
          display: block;
          opacity: 1 !important;
          color: rgba(255, 255, 255, 10);
          position: relative;
          padding-left: 40px;
          &::before {
            content: "";
            background-color: var(--primary-color);
            height: 86%;
            width: 4px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
          }
        }
      }
    }
    .Des {
      width: calc(35% - 12px);
      position: relative;
      &::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        background-color: var(--primary-color);
        left: -100px;
        top: 35%;
        transform: translateY(50%);
      }
      p {
        margin-bottom: 20px;
        position: relative;
        z-index: 999;
      }
      button {
        background-color: transparent;
        color: #fff;
        border: 1px solid var(--primary-color);
        &:hover {
          background-color: var(--primary-color);
          color: #000;
        }
      }
    }
  }
}
.HomeService {
  .Flex {
    display: flex;
    align-items: center;
    gap: 24px;

    .Image {
      width: calc(47% - 12px);
      img {
        width: 100%;
      }
    }
    .Content {
      width: calc(53% - 12px);
      padding-left: 150px;
      h3 {
        margin-bottom: 80px;
      }
      .slider-wrapper {
        .slider-for {
          text-align: left;
          h2 {
            /* font-size: 43px;
            line-height: 52px; */
            position: relative;
            padding-left: 27px;
            margin: 20px 0;
            &::before {
              content: "";
              background-color: var(--primary-color);
              height: 86%;
              width: 4px;
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
            }
          }
          p {
            margin-top: 18px;
            max-width: 500px;
          }
        }
      }
      .slider-nav .slick-slide {
        width: auto !important; /* Allow slides to take their natural width */
        margin-right: 25px; /* Adjust spacing between thumbnails */
        opacity: 0.2; /* Default inactive state */
        transition: opacity 0.3s ease;
      }
      .slider-nav .slick-current {
        opacity: 0.7;
        border-radius: 5px;
      }
    }
  }
}

/* sldier */
.slider-wrapper {
  position: relative;
  text-align: center;
}

.slide-number {
  color: var(--primary-color);
  font-size: 14px;
  display: flex;
  margin-bottom: 30px;
}

.slider-nav {
  margin-top: 15px;
  position: relative;
  &::after {
    content: "";
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    position: absolute;
    width: 270px;
    height: 100%;
    top: 0;
    right: 0;
  }
  h2 {
    white-space: nowrap;
    font-size: 40px;
  }
}

.slider-nav img {
  width: 100px;
  height: auto;
  cursor: pointer;
  border: 2px solid transparent;
}

.slider-nav .slick-current img {
  border-color: #ff6600;
}
.Words {
  position: relative;
  padding: 120px 0;
  &::after {
    content: "";
    width: 450px;
    height: 450px;
    background-color: var(--primary-color);
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    left: 50px;
    top: 32%;
    z-index: -1;
    opacity: 0.4;
  }
  .Flex {
    display: flex;
    justify-content: start;
    gap: 24px;
    .Title {
      width: calc(50% - 12px);
    }
    .MainTitle {
      margin-top: 130px;
      h2 {
        position: relative;
        padding-top: 30px;
        &::after {
          width: 15px;
          height: 15px;
          background-color: var(--primary-color);
          content: "";
          position: absolute;
          top: 0;
          left: 0;
        }
        span {
          opacity: 0.5;
        }
      }
    }
  }
  .View-More {
    margin-top: 30px;
  }
}
.Grid {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 100px;
  flex-flow: row wrap;
  li {
    width: calc(33.33% - 16px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
    border-radius: 17px;
    &:hover {
      background-color: rgba(213, 255, 64, 0.1);
    }
    .Image {
      aspect-ratio: 1/1;
      img {
        width: 100%;
        height: 100%;
      }
    }
    h3 {
      color: #fff;
      font-size: 23px;
      margin-top: 15px;
      font-weight: 500;
    }
  }
}
.SubTitle {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
}
/* TESTIMONAIL */
.Testimonial {
  padding: 150px 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../assets/images/testimonial-bg.jpg);
  position: relative;
  background-size: cover;
  &::after {
    content: "";
    background-color: var(--primary-color);
    height: 300px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    right: 400px;
    top: 50%;
    transform: rotate(-40deg);
    opacity: 0.5;
    z-index: 1;
  }
  .Title-flex {
    display: flex;
    align-items: start;
    gap: 24px;
    h3 {
      width: calc(50% - 12px);
    }
    .title {
      width: calc(50% - 12px);
      padding-left: 30px;
      margin-bottom: 80px;
      margin-top: 150px;
      h2 {
        text-transform: capitalize;
        span {
          display: block;
          opacity: 0.5;
        }
      }
    }
  }
  .Flex {
    display: flex;
    align-items: end;
    .Testimonial-Content {
      color: #fff;
      width: calc(65% - 12px);
    }
    .Testimonail-Thump {
      height: 160px;
      overflow: hidden;
      width: calc(35% - 12px);
      color: #fff;
      padding-left: 100px;
      font-size: 22px;
      .slick-slide {
        opacity: 0.6;
        transition: opacity 0.3s ease;
      }
      .slick-slide.slick-current {
        color: var(--primary-color);
        opacity: 1;
      }
    }
    .slick-slide {
      margin: 5px 0;
    }
    .Testimonail-Thump .slick-current img {
      opacity: 1; /* Highlight active thumbnail */
      border: 2px solid #d5ff40; /* Add a border to the active thumbnail */
    }
    .Quata {
      display: flex;
      align-items: end;
      width: 100%;
      position: relative;
      i {
        position: absolute;
        right: 10px;
        top: 0;
        font-size: 100px;
        color: transparent;
        -webkit-text-stroke: 1px var(--primary-color);
      }
      .Image {
        width: calc(20% - 12px) !important;
        aspect-ratio: 1/1;
        width: 100%;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px;
        position: relative;
        &::after {
          width: 15px;
          height: 15px;
          content: "";
          background-color: var(--primary-color);
          position: absolute;
          bottom: 0;
          right: 0;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
      .Cnt {
        width: calc(80% - 12px);
        padding-left: 100px;
        p {
          font-size: 27px;
          max-width: 500px;
          line-height: 32px;
        }
        h3 {
          margin-top: 13px;
          text-transform: capitalize;
          font-weight: 400;
        }
        span {
          margin-top: 5px;
          font-size: 14px;
          font-weight: 300;
          letter-spacing: 1.5px;
        }
      }
    }
  }
}
/* shedule meeting */
.SheduleMeeting {
  padding: 100px 0;
  .Flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    h2 {
      width: calc(50% - 12px);
      .Text {
        padding-left: 150px;
        position: relative;
        &::before {
          content: "";
          width: 100px;
          height: 3px;
          background-color: var(--primary-color);
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
        }
      }
      span {
        color: var(--primary-color);
      }
    }
    .Button {
      width: calc(50% - 12px);
      position: relative;
      display: flex;
      justify-content: end;
      &::after {
        content: "";
        background-color: var(--primary-color);
        width: 15px;
        height: 15px;
        position: absolute;
        top: -80px;
        right: 100px;
      }
      &::before {
        content: "";
        background-color: var(--primary-color);
        width: 15px;
        height: 15px;
        position: absolute;
        bottom: -80px;
        left: 100px;
      }
      a {
        display: flex;
        gap: 20px;
        align-items: center;
        background-color: #fff;
        padding: 16px 20px;
        font-weight: 500;
        width: 300px;
        i {
          background-color: var(--primary-color);
          width: 25px;
          height: 25px;
          border-radius: 50%;
          font-size: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }
    }
  }
}
/* ABOUT US */
.InnetBanner {
  background-image: url(../assets/images/banner-2.png);
  width: 100%;
  background-repeat: no-repeat;
  height: 45vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  .Flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
    h1 {
      color: var(--secondary-color);
      font-size: 40px;
      font-weight: 600;
      position: relative;
      padding-left: 30px;
      line-height: 41px;
      &::before {
        content: "";
        width: 4px;
        height: 100%;
        background-color: var(--primary-color);
        position: absolute;
        left: 0;
      }
    }
    ul {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      li {
        font-weight: 400;
        &:first-child {
          a {
            color: var(--primary-color);
            font-size: unset;
          }
        }
      }
    }
  }
}
/* ABOUT SECTION */
.AboutSection {
  position: relative;
  .Flex {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;
    .Image {
      width: calc(50% - 12px);
      img {
        width: 100%;
        height: 100%;
      }
    }
    .Cnt {
      width: calc(50% - 12px);
      padding-left: 90px;
      h2 {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        position: relative;
        &::after {
          content: "";
          width: 15px;
          height: 15px;
          background-color: var(--primary-color);
          position: absolute;
          right: 220px;
          top: 50%;
        }
        span {
          display: block;
          opacity: 1 !important;
          color: rgba(255, 255, 255, 10);
          position: relative;
          padding-left: 40px;
          &::before {
            content: "";
            background-color: var(--primary-color);
            height: 86%;
            width: 4px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
          }
        }
      }
      p {
        max-width: 600px;
        padding: 13px 0;
      }
    }
  }
  &::after {
    content: "";
    width: 150px;
    height: 300px;
    background-color: var(--primary-color);
    position: absolute;
    border-radius: 50%;
    transform: rotate(35deg);
    filter: blur(100px);
    right: 400px;
    top: 40%;
    z-index: -1;
    opacity: 0.5;
  }
}
.VisionMision {
  margin: 100px 0;
  .TitleFlex {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    h2 {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
      position: relative;
      width: calc(50% - 12px);
      &::after {
        content: "";
        width: 15px;
        height: 15px;
        background-color: var(--primary-color);
        position: absolute;
        right: 220px;
        top: 50%;
      }
      span {
        display: block;
        opacity: 1 !important;
        color: rgba(255, 255, 255, 10);
        position: relative;
        padding-left: 40px;
        &::before {
          content: "";
          background-color: var(--primary-color);
          height: 86%;
          width: 4px;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
        }
      }
    }
    p {
      width: calc(50% - 12px);
      max-width: 450px;
    }
  }
  ul {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-flow: row wrap;
    margin-top: 100px;
    li {
      width: calc(33.33% - 16px);
      padding: 70px 40px;
      background-color: #000;
      border: 2px solid rgba(213, 255, 64, 0.2);
      border-radius: 12px;
      position: relative;
      border-radius: 18px;

      &:nth-child(1),
      &:nth-child(3) {
        margin-top: 100px;
      }
      &:hover {
        &::after {
          content: "";
          background: linear-gradient(to top, rgba(213, 255, 64, 0.2), black);
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
          border-radius: 15px;
          z-index: 1;
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2a;
        }
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2a;
      }
      h3 {
        font-size: 33px;
        font-weight: 600;
        color: #fff;
        margin: 20px 0;
      }
      img {
        width: 100px;
        position: relative;
        s &::after {
          content: "";
          width: 20px;
          height: 20px;
          background-color: var(--primary-color);
          position: absolute;
        }
      }
      h3,
      p,
      img {
        position: relative;
        z-index: 99999;
      }
    }
  }
}
.Portfolio {
  padding: 120px 0;
  .TitleFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    h2 {
    width: calc(50% - 12px);
      span {
        opacity: 0.5;
        position: relative;
        padding-left: 25px;
        display: block;
        &::after {
          content: "";
          width: 5px;
          height: 80%;
          background-color: var(--primary-color);
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);

          opacity: 1 !important;
        }
      }
    }
    p {
      max-width: 500px;
    }
  }
  ul {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 100px;
    li {
      color: #fff;
      background-color: transparent;
      text-transform: uppercase;
      cursor: pointer;
    }
  }
  .active {
    color: var(--primary-color);
  }
  li:hover {
    color: var(--primary-color);
  }
  .item {
    display: none; /* Initially hidden */
    transition: opacity 0.5s ease-in-out;
  }
  .show {
    display: block; /* Show filtered items */
    animation: fadeIn 0.5s ease-in-out;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
/* CONTACT */
.Contact {
  padding: 120px 0;
  .Flex {
    display: flex;
    flex-flow: row wrap;
    gap: 24px;
    align-items: end;
    .Form {
      width: calc(50% - 12px);
      background-color: rgba(255, 255, 255, 0.04);
      padding: 65px;
      border-radius: 12px;
      h2 {
        margin: 20px 0;
        span {
          display: block;
          position: relative;
          padding-left: 30px;
          opacity: 0.5;
          &::after {
            content: "";
            background-color: var(--primary-color);
            width: 4px;
            height: 80%;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
          }
        }
      }
      p {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      form {
        margin-top: 30px;
        textarea,
        input {
          width: 100%;
          padding: 30px 20px;
          margin: 8px 0;
          background-color: rgba(255, 255, 255, 0.04);
          border: none;
          color: #fff;
          font-family: var(--p-font);
          resize: vertical;
          font-weight: 500;
          font-size: 17px;
          outline: none;
        }
        button {
          display: flex;
          align-items: center;
          margin-top: 18px;
        }
      }
    }
    .Numbers {
      width: calc(50% - 12px);

      .Image {
       display: flex;
       justify-content: center;
        img {
          width: 80%;
        }
      }
      .Bg {
        background-color: rgba(255, 255, 255, 0.04);
        padding: 65px;
        height: fit-content;
        margin-top: 50px;
        .IconFlex {
          display: flex;
          align-self: center;
          gap: 20px;
          margin: 30px 0;
          h5 {
            font-weight: 200;
            color: var(--secondary-color);
            margin-bottom: 5px;
            opacity: 0.7;
          }
          span,
          a {
            color: var(--secondary-color);
            font-size: 22px;
            text-transform: unset;
          }
          .Icon {
            width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }
  }
}
/* MEDIA */
@media (max-width: 1700px) {
  /* .banner {
    & .flex {
      & .title {
        h1,
        span {
          font-size: 71px;
          line-height: 78px;
        }
      }
    }
  } */
  .Banner-2 {
    & .Title {
      padding-top: 145px;
      h1 {
        font-size: 115px;
        line-height: 110px;
      }
    }
    & .Image {
      img {
        width: 28%;
      }
    }
    & .content {
      p {
        max-width: 460px;
        position: absolute;
        bottom: 35px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
      }
    }
  }
}

/* / */
.MobBtn {
  display: none;
}
