.megaMenu {
  position: absolute;
  width: 100%;
  background-color: #fff;
  top: 100%;
  -webkit-box-shadow: 0 30px 62px -1px rgba(29, 42, 59, 0.08), 0 8px 12px -1px rgba(29, 42, 59, 0.08), 0 3px 5px -1px rgba(29, 42, 59, 0.08), 0 2px 2px -1px rgba(29, 42, 59, 0.08);
          box-shadow: 0 30px 62px -1px rgba(29, 42, 59, 0.08), 0 8px 12px -1px rgba(29, 42, 59, 0.08), 0 3px 5px -1px rgba(29, 42, 59, 0.08), 0 2px 2px -1px rgba(29, 42, 59, 0.08);
  padding: 30px 0 50px;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0, 1, 0.001, 0, -1, 0, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 0, 1, 0.001, 0, -1, 0, 0, 0, 0, 0, 1);
  -webkit-transition: all 0.3s ease 0.3s;
  transition: all 0.3s ease 0.3s;
  -webkit-transform-origin: center top 0px;
          transform-origin: center top 0px;
  z-index: 99999;
  overflow: hidden;
}
.megaMenu.show {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  -webkit-transition: all 0.3s ease 0.3s;
  transition: all 0.3s ease 0.3s;
}
.megaMenu .links-group {
  margin-top: 50px;
}
.megaMenu .links-group .links-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.megaMenu .links-group .links-item:last-of-type {
  margin-bottom: 0;
}
.megaMenu .links-group .links-item .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F1F7FA;
  border-radius: 8px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
.megaMenu .links-group .links-item .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.megaMenu .links-group .links-item .link {
  font-size: 15px;
  font-weight: 600;
}
.megaMenu .links-group .links-item .link:hover, .megaMenu .links-group .links-item .link.active {
  color: #0379a4;
}
.megaMenu .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 500px;
  -webkit-transform: translate(-95px, 95px);
          transform: translate(-95px, 95px);
}

.megaMenu_overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 200px;
  left: 0;
  z-index: 999;
  display: none;
}
.megaMenu_overlay.show {
  display: block;
}