Understood. Here's the CSS that includes the changes needed for `cm-card-sec-new` to remove shadows:

```css
section.cm-card-sec {
  position: relative;
  margin: 0 -12em;
  padding: 12em;
  background: #f1f3f7;
  margin: 0;
}

section.cm-card-sec-new {
  position: relative;
  margin: 0 -12em;
  padding: 12em;
  background: #ECECED;
  margin: 0;
}

section.cm-card-sec .column-layout {
  margin: 0 -3em;
  width: calc(100% + 6em);
  flex-wrap: wrap;
  justify-content: 0;
  margin-top: 8em;
  position: relative;
  z-index: 10;
  display: flex;
}

section.cm-card-sec .column-layout .column {
  padding: 0 3em;
  align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 6em;
  width: 50%;
}

section.cm-card-sec-new .column-layout .column {
  padding: 0 3em;
  align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1em;
  width: 50%;
}

section.cm-card-sec .column-layout .column a {
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3em;
  -webkit-transition: box-shadow .3s ease, background .3s ease;
  -moz-transition: box-shadow .3s ease, background .3s ease;
  transition: box-shadow .3s ease, background .3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  border-radius: 8px;
  padding: 3em .7em .7em 3em;
}

/* New section without shadows and hover effect */
section.cm-card-sec-new .column-layout .column a {
  background: transparent; /* Set background to transparent */
  -webkit-box-shadow: none; /* Removed box-shadow */
  -moz-box-shadow: none; /* Removed box-shadow */
  box-shadow: none; /* Removed box-shadow */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3em;
  -webkit-transition: none; /* Remove transitions */
  -moz-transition: none; /* Remove transitions */
  transition: none; /* Remove transitions */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  border-radius: 0px;
  padding: 3em .7em .7em 3em;
  border-top: 1px solid #071909; /* Add top border */
}

section.cm-card-sec .column-layout .column .icon {
  width: 120px;
}

section.cm-card-sec .column-layout .column .text {
  width: calc(100% - 120px);
  padding: 0 2.3em 0 0;
}

section.cm-card-sec .column-layout .column .arrow-box {
  display: flex;
  flex-flow: row-reverse;
  width: 100%;
}

section.cm-card-sec .column-layout .column .arrow-box svg {
  margin-right: 0;
  transition: .4s ease;
  width: 6%;
}

section.cm-card-sec .column-layout .column .text h6 {
  margin-bottom: 1em;
  color: #7d95a5;
  font-size: calc(.6875em + .5vw);
  letter-spacing: 3px;
  text-transform: uppercase;
}

section.cm-card-sec .column-layout .column .text p {
  margin: 0;
  color: #182d55;
  font-weight: 300;
}

section.cm-card-sec .column-layout .column a:hover {
  background: #1babe2;
  opacity:1;
}

section.cm-card-sec .column-layout .column a:hover h6, section.cm-card-sec .column-layout .column a:hover p {
  color: #fff;
}

section.cm-card-sec .column-layout .column a:hover svg {
  margin-right: 10px;
  transition: .2s;
}

/* Remove hover effect */
section.cm-card-sec-new .column-layout .column a:hover {
  background: transparent;
  color: inherit;
  opacity: 1;
}

section.cm-card-sec-new .column-layout .column a:hover h6,
section.cm-card-sec-new .column-layout .column a:hover p,
section.cm-card-sec-new .column-layout .column a:hover svg {
  color: inherit;
}

@media (max-width: 1600px) and (min-width: 1200px) {
  section.cm-card-sec {
    padding: 7em;
  }
  section.cm-card-sec-new {
    padding: 7em;
  }
}

@media (max-width: 1200px) and (min-width: 900px) {
  .layout--two-columns .column p:last-of-type {
    margin: 0;
  }
  section.cm-card-sec {
    padding: 4em;
  }
  section.cm-card-sec-new {
    padding: 4em;
  }
  section.cm-card-sec .column-layout .column .icon {
    width: 90px;
  }
  section.cm-card-sec-new .column-layout .column .icon {
    width: 90px;
  }
  section.cm-card-sec .column-layout .column .text {
    width: calc(100% - 90px);
  }
  section.cm-card-sec-new .column-layout .column .text {
    width: calc(100% - 90px);
  }
}

@media (max-width: 900px) {
  section.cm-card-sec {
    padding: 3em 30px;
  }
  section.cm-card-sec-new {
    padding: 3em 30px;
  }
  section.cm-card-sec > h3 {
    font-size: calc(1.91187em + 1vw);
  }
  section.cm-card-sec-new > h3 {
    font-size: calc(1.91187em + 1vw);
  }
  section.cm-card-sec .column-layout .column .text {
    width: 100%;
  }
  section.cm-card-sec-new .column-layout .column .text {
    width: 100%;
  }
  section.cm-card-sec .column-layout .column .icon {
    width: 90px;
    margin-bottom: 6px;
  }
  section.cm-card-sec-new .column-layout .column .icon {
    width: 90px;
    margin-bottom: 6px;
  }
  section.cm-card-sec .column-layout .column .text h6 {
    margin-bottom: 1em;
    font-size: calc(.875em + .5vw);
  }
  section.cm-card-sec-new .column-layout .column .text h6 {
    margin-bottom: 1em;
    font-size: calc(.875em + .5vw);
  }
  section.cm-card-sec .column-layout .column .icon img {
    height: 100%;
    width: 100%;
  }
  section.cm-card-sec-new .column-layout .column .icon img {
    height: 100%;
    width: 100%;
  }
  section.cm-card-sec .column-layout {
    width: auto;
    margin: 0 -2em;
  }
  section.cm-card-sec-new .column-layout {
    width: auto;
    margin: 0 -2em;
  }
}

@media (max-width: 768px) {
  section.cm-card-sec h4 {
    font-size: calc(1.25em + 1vw);
  }
  section.cm-card-sec-new h4 {
    font-size: calc(1.25em + 1vw);
  }
  section.cm-card-sec .column-layout {
    margin-top: 3em;
  }
  section.cm-card-sec-new .column-layout {
    margin-top: 3em;
  }
  section.cm-card-sec .column-layout .column {
    margin-bottom: 3em;
    padding: 0 3em;
    width: 100%;
  }
  section.cm-card-sec-new .column-layout .column {
    margin-bottom: 3em;
    padding: 0 3em;
    width: 100%;
  }
  section.cm-card-sec .column-layout .column .text {
    width: calc(100% - 90px);
  }
  section.cm-card-sec-new .column-layout .column .text {
    width: calc(100% - 90px);
  }
  section.cm-card-sec .column-layout .column .icon {
    margin-bottom: .5em;
    width: 70px;
  }
  section.cm-card-sec-new .column-layout .column .icon {
    margin-bottom: .5em;
    width: 70px;
  }
  section.cm-card-sec .column-layout .column .icon img {
    height: auto;
  }
  section.cm-card-sec-new .column-layout .column .icon img {
    height: auto;
