@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap");
@-webkit-keyframes floating {
  0% {
    opacity: 0;
    -webkit-transform: translateX(7%) translateY(50%) rotate(-15deg);
    transform: translateX(7%) translateY(50%) rotate(-15deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(7%) translateY(20%) rotate(0deg);
    transform: translateX(7%) translateY(20%) rotate(0deg);
  }
}
@keyframes floating {
  0% {
    opacity: 0;
    -webkit-transform: translateX(7%) translateY(50%) rotate(-15deg);
    transform: translateX(7%) translateY(50%) rotate(-15deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(7%) translateY(20%) rotate(0deg);
    transform: translateX(7%) translateY(20%) rotate(0deg);
  }
}

@-webkit-keyframes floatingReverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(4%) translateY(50%) rotate(20deg);
    transform: translateX(4%) translateY(50%) rotate(20deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(4%) translateY(0%) rotate(0deg);
    transform: translateX(4%) translateY(0%) rotate(0deg);
  }
}

@keyframes floatingReverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(4%) translateY(50%) rotate(20deg);
    transform: translateX(4%) translateY(50%) rotate(20deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(4%) translateY(0%) rotate(0deg);
    transform: translateX(4%) translateY(0%) rotate(0deg);
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    opacity: .6;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    opacity: .6;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 1px 1px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 1px 1px 0 rgba(0, 0, 0, 0.16);
  }
  100% {
    -webkit-box-shadow: 0 0 0 32px rgba(255, 255, 255, 0), 0 1px 1px 32px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 32px rgba(255, 255, 255, 0), 0 1px 1px 32px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 1px 1px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 1px 1px 0 rgba(0, 0, 0, 0.16);
  }
  100% {
    -webkit-box-shadow: 0 0 0 32px rgba(255, 255, 255, 0), 0 1px 1px 32px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 32px rgba(255, 255, 255, 0), 0 1px 1px 32px rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#cm-rich-content {
  container-type: inline-size;
  line-height: 1.2;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  max-width: 1200px;
  margin: auto;
}

#cm-rich-content * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#cm-rich-content img {
  max-width: 100%;
  width: auto;
}

#cm-rich-content a {
  text-decoration: none;
}

#cm-rich-content .gray-bg {
  background-color: #ebf0f2;
}

@container (max-width: 700px) {
  #cm-rich-content .bg-none {
    background-color: white;
  }
}

#cm-rich-content .cm-semibold {
  font-weight: 600;
  font-size: 1em;
}

#cm-rich-content .cm-header {
  height: 700px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.5em;
  margin-bottom: 4em;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header {
    height: auto;
  }
}

#cm-rich-content .cm-header .cm-header-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-content {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#cm-rich-content .cm-header .cm-header-desc {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 3em;
  padding-right: 0.5em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-header .cm-header-desc {
    padding-left: 2em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-desc {
    padding: 0;
    width: 90%;
  }
}

#cm-rich-content .cm-header .cm-header-desc .cm-header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-header-logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#cm-rich-content .cm-header .cm-header-desc .cm-header-logo img {
  max-width: 100%;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-header-logo img {
    max-width: 280px;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-header-logo img {
    max-width: 260px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-header-logo img {
    max-width: 200px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-header-logo img {
    max-width: 170px;
  }
}

#cm-rich-content .cm-header .cm-header-desc .cm-ng-1 {
  font-size: 3em;
  color: #FFFFFF;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  line-height: 56px;
  margin-top: 1em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-1 {
    font-size: 2.875em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-1 {
    font-size: 2.75em;
    margin-top: 0.5em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-1 {
    text-align: center;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-1 {
    font-size: 2.5em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-1 {
    font-size: 2em;
    line-height: 40px;
  }
}

#cm-rich-content .cm-header .cm-header-desc .cm-ng-2 {
  font-size: 1.875em;
  color: #FFFFFF;
  font-family: "Figtree", sans-serif;
  font-weight: 100;
  line-height: 40px;
  margin-bottom: 1em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-2 {
    font-size: 1.75em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-ng-2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 2em;
  }
}

#cm-rich-content .cm-header .cm-header-desc .cm-header-line {
  max-width: 144px;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-desc .cm-header-line {
    display: none;
  }
}

#cm-rich-content .cm-header .cm-header-img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1em;
  z-index: 4;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-header .cm-header-img {
    width: 60%;
    padding-right: 0em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-img {
    width: 100%;
    padding-right: 0em;
  }
}

#cm-rich-content .cm-header .cm-header-img .cm-shadow {
  position: absolute;
  right: 136px;
  top: 7em;
  z-index: 1;
  max-width: 700px;
}

#cm-rich-content .cm-header .cm-header-img .cm-shadow img {
  width: 100%;
}

#cm-rich-content .cm-header .cm-header-img .cm-img {
  z-index: 2;
  position: relative;
  padding-top: 5em;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-header .cm-header-img .cm-img {
    padding-top: 3em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header .cm-header-img .cm-img {
    padding-top: 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    width: 550px;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    width: 480px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    width: 430px;
  }
}

@container (max-width: 450px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    width: 380px;
    margin: 3em auto 1em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    width: 330px;
  }
}

@container (max-width: 350px) {
  #cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow {
    width: 320px;
  }
}

#cm-rich-content .cm-header .cm-header-img .cm-packshot-shadow img {
  width: 100%;
}

#cm-rich-content .cm-top-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 2em 1em;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-top-img {
    margin: 1em 1em 0;
  }
}

#cm-rich-content .cm-top-img img {
  max-width: 400px;
  margin-right: 1em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-top-img img {
    max-width: 350px;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-top-img img {
    max-width: 320px;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-top-img img {
    max-width: 300px;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-top-img img {
    max-width: 250px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-top-img img {
    max-width: 200px;
  }
}

#cm-rich-content .cm-container {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#cm-rich-content .cm-container .cm-text {
  font-family: "Figtree", sans-serif;
  font-weight: 300;
  font-size: 1.25em;
  padding: 0 8em;
  line-height: 1.3;
  text-align: center;
}

#cm-rich-content .cm-container .cm-text span {
  font-weight: 500;
  color: #e3004a;
}

#cm-rich-content .cm-container .cm-text.serp span {
  font-weight: 500;
  color: #666666;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-container .cm-text.serp {
    padding: 0 2em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-container .cm-text.serp {
    padding: 0 1em;
  }
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-container .cm-text {
    padding: 0 6em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-container .cm-text {
    padding: 0 4em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-container .cm-text {
    font-size: 1.125em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-container .cm-text {
    padding: 0 1em;
    font-size: 1em;
  }
}

#cm-rich-content .cm-separator {
  height: 3em;
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator.faq {
    height: 1em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-separator {
    height: 2em;
  }
}

#cm-rich-content .cm-separator-m {
  height: 4em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-separator-m.cm-smaller {
    height: 1em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-separator-m.cm-smaller {
    height: 2em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-m.cm-small {
    height: 3em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-separator-m {
    height: 3em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-m {
    height: 2em;
  }
}

#cm-rich-content .cm-separator-l {
  height: 6em;
}

#cm-rich-content .cm-separator-l.cm-smaller {
  height: 5em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-separator-l.cm-smaller {
    height: 4em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-l.cm-smaller {
    height: 3em;
  }
}

@container (max-width: 350px) {
  #cm-rich-content .cm-separator-l.cm-smaller {
    height: 2em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-separator-l {
    height: 5em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-separator-l {
    height: 4em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-l {
    height: 3em;
  }
}

#cm-rich-content .cm-separator-logo {
  height: 3em;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-separator-logo {
    display: none;
  }
}

#cm-rich-content .cm-separator-serp-color {
  height: 1em;
  background-color: #dfdfdf;
}

#cm-rich-content .cm-separator-s {
  height: 2em;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-separator-s {
    height: 1em;
  }
}

#cm-rich-content .cm-separator-s-2 {
  height: 2em;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-separator-s-2 {
    display: none;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-separator-s-ng {
    display: none;
  }
}

#cm-rich-content .cm-separator-serp {
  height: 4em;
  background-color: #dfdfdf;
}

#cm-rich-content .cm-separator-serp.cm-small {
  height: 2em;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-separator-serp.cm-small {
    height: 4em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-separator-serp.cm-small {
    height: 3em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-serp.cm-small {
    height: 2em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-separator-serp {
    height: 3em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-serp {
    height: 2em;
  }
}

#cm-rich-content .cm-separator-serp-ekspres {
  height: 8em;
  background-color: #dfdfdf;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-separator-serp-ekspres {
    height: 4em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-separator-serp-ekspres {
    height: 3em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-separator-serp-ekspres {
    height: 2em;
  }
}

#cm-rich-content .cm-images-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-images-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 600px;
  }
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@container (max-width: 700px) {}@container (max-width: 700px) {
  #cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-img-gallery {
    display: none;
  }
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-img-gallery-mobile {
  display: none;
}

@media only screen and (max-width: 700px) {
  #cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-img-gallery-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper::before {
  content: "";
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#e3004a00), to(#e3004a)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #e3004a00 0%, #e3004a 100%) 0% 0% no-repeat padding-box;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper:hover {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper:hover {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper:hover::before {
  opacity: 0;
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper:hover .cm-content {
  opacity: 0;
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-content {
  position: absolute;
  bottom: 5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-content {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-content .cm-title {
  color: white;
  font-size: 1.125em;
  max-width: 100%;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper .cm-content .cm-line {
  margin-top: 0.5em;
  height: 2px;
  background-color: #009999;
  width: 64px;
}

#cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper > img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: 500px;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-images-gallery .cm-carousel-image-wrapper > img {
    width: 100%;
    height: 300px;
  }
}

#cm-rich-content .cm-logo-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
  padding-left: 2em;
}

#cm-rich-content .cm-logo-bottom img {
  max-width: 314px;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-logo-bottom img {
    max-width: 250px;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-logo-bottom img {
    max-width: 225px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-logo-bottom img {
    max-width: 200px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-logo-bottom img {
    max-width: 175px;
  }
}

#cm-rich-content .cm-bg-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #1D1D1D;
}

#cm-rich-content .cm-bg-image img {
  max-width: 100%;
  width: 100%;
}

#cm-rich-content .cm-bg-image #btnControl {
  display: none;
}

#cm-rich-content .cm-bg-image #btnControl:checked + label > video {
  width: 100%;
}

#cm-rich-content .cm-bg-image-2 img {
  max-width: 100%;
}

#cm-rich-content .cm-title-serp {
  padding: 3em 1em 4em 1em;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-title-serp {
    padding: 3em 1em 1em 1em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-title-serp {
    padding: 2em 1em 1em 1em;
  }
}

#cm-rich-content .cm-title-hotspot {
  padding: 0 1em 2em 1em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-title-hotspot {
    padding: 2em 0.5em 2em 0.5em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-title-hotspot {
    padding: 3em 0.5em 2em 0.5em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-title-hotspot {
    padding: 2em 0.5em 2em 0.5em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-title-hotspot {
    padding: 1em 0.5em 2em 0.5em;
  }
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-title-hotspot .cm-ng {
    padding: 0 1em;
  }
}

#cm-rich-content .cm-ng {
  max-width: 1200px;
  margin: auto;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 2.25em;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 2em;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-ng.cm-ekspres br {
    display: none;
  }
}

#cm-rich-content .cm-ng.cm-ekspres-second {
  max-width: 600px;
}

@container (max-width: 350px) {
  #cm-rich-content .cm-ng.cm-ekspres-second br {
    display: none;
  }
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-ng {
    padding: 0 2em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-ng {
    padding: 0 1em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-ng {
    padding: 0 0.25em;
    font-size: 2.25em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-ng {
    font-size: 1.75em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-ng {
    padding: 0 0.5em;
  }
}

#cm-rich-content .cm-header-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 2em 0em 1em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-header-icons {
    padding: 1em 0em 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-header-icons {
    padding: 1em 0em 1em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-header-icons {
    padding: 1em 0em 1em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header-icons {
    padding: 2em 0;
    gap: 1em;
    padding-bottom: 1em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header-icons {
    gap: 0;
  }
}

#cm-rich-content .cm-header-icons .cm-single-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-header-icons .cm-single-item {
    width: calc(100% / 2 - 20px);
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-header-icons .cm-single-item {
    padding: 0;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-header-icons .cm-single-item {
    width: calc(100% / 1);
  }
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 1em;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-header-icons .cm-single-item .cm-item {
    padding: 1em 0;
  }
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-item img {
  position: relative;
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-item .cm-icon2 {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-item .cm-icon2 .cm-icon {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-effect {
  background: #000000c4;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-effect .cm-icon-effect {
  position: relative;
  top: 0;
}

#cm-rich-content .cm-header-icons .cm-single-item .cm-text {
  font-weight: 100;
  font-size: 1em;
  margin: 0.375em 0;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%) translateY(100%);
          transform: translateX(50%) translateY(100%);
  top: 75%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  text-align: center;
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header-icons .cm-single-item .cm-item {
    min-width: 280px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-header-icons .cm-single-item .cm-item {
    min-width: 230px;
  }
}

#cm-rich-content .cm-header-icons .cm-single-item:hover .cm-item .cm-icon2 .cm-effect {
  opacity: 0;
}

#cm-rich-content .cm-header-icons .cm-single-item:hover .cm-item .cm-icon2 .cm-text {
  opacity: 0;
  z-index: 0;
}

#cm-rich-content .cm-container-icons {
  max-width: 1200px;
  position: relative;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 3em 0em 0em 0em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 {
    padding: 3em 2em 0em 2em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 {
    padding: 3em 1em 0em 1em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 {
    padding: 2em 0em 0em 0em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 {
    padding: 1em 0em 0em 0em;
    gap: 0;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item {
  max-width: calc(100% / 3);
  width: 100%;
  text-align: center;
  position: relative;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item {
    max-width: 31%;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item {
    max-width: 31%;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item {
    max-width: 50%;
    padding: 1em;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item img {
  position: relative;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-icon2 {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 2em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-icon2 {
    padding: 0em;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-icon2 .cm-text {
  font-weight: 600;
  font-size: 1.125em;
  margin: 0.375em 0;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
  top: 50%;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-icon2:hover .cm-after-container .cm-btn span {
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-icon2:hover .cm-after-container .cm-btn::after {
  width: 100%;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center {
  text-align: center;
  margin-top: -3em;
  max-width: 90%;
  width: 100%;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@container (max-width: 950px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center {
    max-width: 92%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center {
    max-width: 100%;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-btn::after {
  background: transparent -webkit-gradient(linear, right top, left top, from(#880833), to(#e3004a)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #880833 0%, #e3004a 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-button {
  opacity: 1;
  color: #000;
  min-height: 196px;
  font-family: "Figtree", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-button {
    min-height: unset;
    padding: 1em 0;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-button .cm-btn-content {
  font-size: 1em;
  font-weight: 300;
  padding: 1em;
  min-height: 214px;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-button .cm-btn-content {
    min-height: unset;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-button .cm-btn-content .cm-title {
  font-weight: 700;
  font-size: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn-center .cm-button .cm-btn-content .cm-title {
    font-size: 1.25em;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  font-family: "Figtree", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-align: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #dfdfdf;
  opacity: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn {
    font-size: 0.875em;
  }
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 3%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn span {
  position: relative;
  z-index: 2;
}

#cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item .cm-after-container .cm-btn:hover::after {
  width: 100%;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-container-icons .cm-header-icons-2 .cm-item {
    min-width: 300px;
  }
}

#cm-rich-content .cm-serp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 6em;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp {
    padding-bottom: 5em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp {
    padding-bottom: 3em;
  }
}

#cm-rich-content .cm-serp .cm-serp-bg {
  position: absolute;
  -webkit-transform: rotate(180deg) scaleX(-1);
          transform: rotate(180deg) scaleX(-1);
  bottom: 0;
  left: 0;
}

#cm-rich-content .cm-serp .cm-img-col {
  max-width: 50%;
  width: 100%;
  position: relative;
  padding: 0;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cm-rich-content .cm-serp .cm-img-col .cm-serp-img {
  max-width: 100%;
  padding: 1em;
}

#cm-rich-content .cm-serp .cm-img-col .cm-serp-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 46%;
}

#cm-rich-content .cm-serp .cm-text-col {
  max-width: 50%;
  width: 100%;
  padding: 0 0 0 2em;
  position: relative;
  color: #000;
  font-family: "Figtree", sans-serif;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  color: white;
  height: 500px;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp .cm-text-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    height: 300px;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 0 2em;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background {
    padding: 0 1em 0em 2em;
  }
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background {
    padding: 0 1.5em 0em 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background {
    -webkit-transform: unset;
            transform: unset;
    padding: 2em 1em 2em 1em;
    top: 0%;
    max-width: 600px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background {
    padding: 1em 1em;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background.serp3 {
  padding: 3em 2.25em 3em 2em;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background.serp3 {
    padding: 2em 1.5em 2em 1.5em;
  }
}

@container (max-width: 950px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background.serp3 {
    padding: 1em 1.5em 1em 1.5em;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-title {
  font-size: 1.875em;
  font-weight: 700;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.75em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.875em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.75em;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-serp-line {
  max-width: 50px;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-serp-line {
    display: none;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-paragraph {
  font-size: 1.125em;
  margin-top: 2em;
  font-weight: 300;
  line-height: 1.3;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-paragraph {
    font-size: 1em;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-paragraph.serp1 {
  width: 93%;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-paragraph.serp1 {
    width: 100%;
  }
}

@container (max-width: 1040px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-paragraph.serp1 {
    font-size: 1em;
  }
}

#cm-rich-content .cm-serp .cm-text-col .cm-text-col-background .cm-paragraph span {
  font-weight: 700;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-serp .cm-text-col .cm-title {
    font-size: 2.125em;
  }
  #cm-rich-content .cm-serp .cm-text-col .cm-paragraph {
    margin-top: 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cm-rich-content .cm-serp .cm-img-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
    padding: 0;
  }
  #cm-rich-content .cm-serp .cm-text-col {
    max-width: 100%;
    padding: 0;
  }
  #cm-rich-content .cm-serp .cm-text-col .cm-title,
  #cm-rich-content .cm-serp .cm-text-col .cm-paragraph {
    text-align: center;
  }
  #cm-rich-content .cm-serp::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0%;
    height: 100px;
    width: 100%;
  }
}

#cm-rich-content .cm-serp-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 4em;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp-2 {
    padding-bottom: 5em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp-2 {
    padding-bottom: 3em;
  }
}

#cm-rich-content .cm-serp-2 .cm-serp-bg {
  position: absolute;
  -webkit-transform: rotate(180deg) scaleX(-1);
          transform: rotate(180deg) scaleX(-1);
  bottom: 0;
  left: 0;
}

#cm-rich-content .cm-serp-2 .cm-img-col {
  max-width: 50%;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#cm-rich-content .cm-serp-2 .cm-img-col .cm-img-hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-width: 100%;
}

#cm-rich-content .cm-serp-2 .cm-img-col .cm-img-hover .cm-serp-img-2 {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-serp-2 .cm-img-col .cm-img-hover .cm-serp-img-2:hover {
  opacity: 0;
}

#cm-rich-content .cm-serp-2 .cm-img-col .cm-img-hover .cm-serp-img-2-hover {
  z-index: 1;
  position: absolute;
  left: 0;
}

#cm-rich-content .cm-serp-2 .cm-text-col {
  max-width: 50%;
  width: 100%;
  padding: 0 0 0 2em;
  position: relative;
  color: #000;
  font-family: "Figtree", sans-serif;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  color: white;
  height: 500px;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-serp-2 .cm-text-col {
    padding: 0 0 0 1em;
    height: 450px;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-2 .cm-text-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    height: auto;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 0 2em;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background {
    padding: 0 1em 0em 2em;
  }
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background {
    padding: 0 1em 0em 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background {
    -webkit-transform: unset;
            transform: unset;
    padding: 2em 1em 2em 1em;
    top: 0%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background {
    padding: 1em 1em;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background.serp3 {
  padding: 3em 2.25em 3em 2em;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background.serp3 {
    padding: 2em 1.5em 2em 1.5em;
  }
}

@container (max-width: 950px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background.serp3 {
    padding: 1em 1.5em 1em 1.5em;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-title {
  font-size: 1.875em;
  font-weight: 700;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.75em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.875em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.75em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.675em;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-serp-line {
  max-width: 50px;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-serp-line {
    display: none;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph {
  font-size: 1.125em;
  margin-top: 2em;
  font-weight: 300;
  line-height: 1.3;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph {
    margin-top: 1em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph {
    font-size: 1em;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph.serp1 {
  width: 93%;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph.serp1 {
    width: 100%;
  }
}

@container (max-width: 1040px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph.serp1 {
    font-size: 1em;
  }
}

#cm-rich-content .cm-serp-2 .cm-text-col .cm-text-col-background .cm-paragraph span {
  font-weight: 700;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-title {
    font-size: 2.125em;
  }
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-paragraph {
    margin-top: 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cm-rich-content .cm-serp-2 .cm-img-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
    padding: 0;
  }
  #cm-rich-content .cm-serp-2 .cm-text-col {
    max-width: 100%;
    padding: 0;
  }
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-title,
  #cm-rich-content .cm-serp-2 .cm-text-col .cm-paragraph {
    text-align: center;
  }
  #cm-rich-content .cm-serp-2::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0%;
    height: 100px;
    width: 100%;
  }
}

#cm-rich-content .cm-serp-data {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ebf0f2;
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp-data {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-serp-data .cm-data {
    display: none;
  }
}

#cm-rich-content .cm-serp-data .cm-data-mobile {
  display: none;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-serp-data .cm-data-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp-data .cm-data-mobile {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
  }
}

#cm-rich-content .cm-serp-data .cm-text-col {
  max-width: 50%;
  width: 100%;
  padding: 0 0 0 2em;
  position: absolute;
  right: 0;
  bottom: -1px;
  color: #000;
  font-family: "Figtree", sans-serif;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    max-width: 51%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    max-width: 55%;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    max-width: 65%;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    max-width: 76%;
  }
}

@container (max-width: 450px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    max-width: 81%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    max-width: 94%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    padding: 0;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0em 1em 0 1em;
  }
}

@container (max-width: 350px) {
  #cm-rich-content .cm-serp-data .cm-text-col {
    padding: 0 0.75em 0em;
  }
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background {
  max-width: 568px;
  width: 100%;
  min-height: 200px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 2em 1em 2em 3em;
  background-color: #ebf0f2;
  position: relative;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background {
    padding: 2em 1em 2em 2em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background {
    min-height: unset;
    max-width: 510px;
  }
}

@container (max-width: 550px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background {
    max-width: 380px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background {
    padding: 2em 1em 1em 2em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background {
    padding: 2em 0em 1em 0em;
  }
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-title {
  font-size: 1.875em;
  color: #666666;
  font-weight: 700;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.75em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-title {
    font-size: 1.5em;
  }
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph {
  font-size: 1.25em;
  margin-top: 2em;
  font-weight: 300;
  line-height: 1.3;
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph.cm-ekspres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1em 0;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph.cm-ekspres {
    font-size: 1.125em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph.cm-ekspres {
    max-width: 340px;
    width: 100%;
  }
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph .cm-text {
  max-width: 90%;
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph img {
  margin-right: 5px;
  max-width: 33px;
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph:nth-child(2) {
  margin-top: 1em;
}

#cm-rich-content .cm-serp-data .cm-text-col .cm-text-col-background .cm-paragraph:nth-child(11) {
  margin: 0;
}

#cm-rich-content .cm-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cm-rich-content .cm-banner .cm-col {
  position: absolute;
  bottom: -5em;
  z-index: 1;
}

#cm-rich-content .cm-banner .cm-col .cm-img {
  max-width: 81%;
}

#cm-rich-content .cm-banner .cm-col:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  left: 3%;
  max-width: 40%;
  width: 100%;
  bottom: calc(0% - 5% - 5em);
}

#cm-rich-content .cm-banner .cm-col:nth-child(3) {
  left: 50%;
  padding: 1.5em;
  background-color: #007DBA;
  max-width: calc(50% - 2em);
}

#cm-rich-content .cm-banner .cm-col .cm-title {
  font-size: 2.625em;
  line-height: 1.2;
  font-weight: 600;
}

#cm-rich-content .cm-banner .cm-col .cm-paragraph {
  font-size: 1.125em;
  margin-top: 2em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-banner .cm-col .cm-title {
    font-size: 2.125em;
  }
  #cm-rich-content .cm-banner .cm-col .cm-paragraph {
    margin-top: 1em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cm-rich-content .cm-banner .cm-banner-bg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #cm-rich-content .cm-banner .cm-col:nth-child(2) {
    left: 51%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 250px;
    position: relative;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: -40%;
  }
  #cm-rich-content .cm-banner .cm-col:nth-child(2) .cm-img {
    max-width: 100%;
  }
  #cm-rich-content .cm-banner .cm-col:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    bottom: 0;
    margin: 1em 1.5em 3em;
    left: unset;
    max-width: 100%;
  }
  #cm-rich-content .cm-banner .cm-col:nth-child(3) .cm-title {
    text-align: center;
  }
  #cm-rich-content .cm-banner .cm-col:nth-child(3) .cm-paragraph {
    text-align: center;
  }
}

#cm-rich-content .cm-text-banner {
  position: relative;
  margin-bottom: -5px;
  background-size: cover;
}

#cm-rich-content .cm-text-banner .cm-content {
  padding: 7em 1.5em 3em;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#cm-rich-content .cm-text-banner .cm-content .cm-title {
  font-size: 2.625em;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}

#cm-rich-content .cm-text-banner .cm-content .cm-paragraph {
  font-size: 1.125em;
  margin-top: 2em;
  text-align: center;
}

#cm-rich-content .cm-text-banner .cm-subtext {
  padding: 0 0 2em 3em;
  position: relative;
  z-index: 1;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#cm-rich-content .cm-text-banner::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0%;
  left: 0%;
  height: 100px;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#302f32), to(rgba(48, 47, 50, 0)));
  background-image: linear-gradient(to top, #302f32, rgba(48, 47, 50, 0));
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-text-banner .cm-content .cm-title {
    font-size: 2.125em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-text-banner .cm-content {
    padding-top: 2em;
  }
  #cm-rich-content .cm-text-banner::after {
    content: "";
    position: absolute;
    display: block;
    top: 0%;
    left: 0%;
    height: 100px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#303033), to(rgba(48, 48, 51, 0)));
    background-image: linear-gradient(to bottom, #303033, rgba(48, 48, 51, 0));
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-text-banner .cm-subtext {
    margin: 0 auto;
    padding-left: 1em;
  }
  #cm-rich-content .cm-text-banner .cm-subtext .cm-text {
    text-align: center;
  }
}

#cm-rich-content .cm-img-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cm-rich-content .cm-title-banner {
  background-color: #2E2E30;
  padding: 0 1.5em 4em;
}

#cm-rich-content .cm-title-banner .cm-title {
  font-size: 2.625em;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-title-banner .cm-title {
    font-size: 2.125em;
  }
}

#cm-rich-content .cm-title-banner .cm-paragraph {
  font-size: 1.125em;
  margin-top: 2em;
  text-align: center;
}

#cm-rich-content .cm-title-banner.cm-bg-alt {
  background-color: #303033;
}

#cm-rich-content .list-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: white;
}

#cm-rich-content .list-container .cm-text {
  font-size: 1.25em;
  padding-left: 10px;
}

@container (max-width: 1000px) {
  #cm-rich-content .list-container .cm-text {
    font-size: 1.125em;
  }
}

@container (max-width: 750px) {
  #cm-rich-content .list-container .cm-text {
    font-size: 1em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .list-container .cm-text {
    font-size: 1.125em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .list-container .cm-text {
    font-size: 1em;
  }
}

#cm-rich-content .list-container img {
  max-width: 33px;
}

#cm-rich-content .cm-hotspot {
  display: block;
  cursor: pointer;
  width: 4em;
  height: 4em;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot {
    width: 3em;
    height: 3em;
  }
}

#cm-rich-content .cm-hotspot.cm-hotspot-01:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-01 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-02:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-02 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-03:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-03 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-04:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-04 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-05:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-05 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-06:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-06 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-07:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-07 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot.cm-hotspot-08:hover ~ .cm-hotspots-list .cm-hotspots-list-item.cm-hotspots-list-item-08 {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

#cm-rich-content .cm-hotspot .cm-hotspot-inside-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot .cm-hotspot-inside-circle {
    width: 40px;
    height: 40px;
  }
}

#cm-rich-content .cm-hotspot .cm-hotspot-inside-circle:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  border-radius: 50%;
}

#cm-rich-content .cm-hotspot:hover p {
  color: #f7f7f7;
}

#cm-rich-content .cm-hotspots-holder {
  margin-top: 1em;
  max-height: 472px;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspots-holder {
    background-color: transparent;
    margin-bottom: 0em;
    max-height: none;
  }
}

#cm-rich-content .cm-hotspots-holder .cm-hotspots {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    max-width: 500px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots {
    max-width: 400px;
  }
}

#cm-rich-content .cm-hotspots-holder .cm-hotspots .cm-hotspots-image-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  width: 50%;
  position: relative;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots .cm-hotspots-image-holder {
    margin: 1.5em 0;
  }
}

@container (max-width: 750px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots .cm-hotspots-image-holder {
    margin: 2em 0;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots .cm-hotspots-image-holder {
    width: 100%;
    margin: 0 auto;
  }
}

#cm-rich-content .cm-hotspots-holder .cm-hotspots .cm-hotspots-image-holder img {
  margin-top: -5em;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots .cm-hotspots-image-holder img {
    margin-top: 0em;
  }
}

#cm-rich-content .cm-hotspots-holder .cm-hotspots-text {
  width: 50%;
  position: relative;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-text {
    width: 100%;
    position: static;
    left: 0;
    height: 100%;
  }
}

#cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list,
#cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 6em 6em 0;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list,
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list {
    padding: 4em 4em 0;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list,
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list {
    padding: 3em 2em 0;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list,
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list {
    height: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 2em 3em 2em;
    max-width: 500px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list,
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list {
    height: 50%;
    padding: 1em 1em 3em;
  }
}

#cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list .cm-hotspots-list-item,
#cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list .cm-hotspots-list-item {
  margin: 0.5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content-rwd .cm-hotspots-list .cm-hotspots-list-item,
  #cm-rich-content .cm-hotspots-holder .cm-hotspots-content .cm-hotspots-list .cm-hotspots-list-item {
    margin: 0.5em 0;
  }
}

#cm-rich-content p {
  color: black;
}

#cm-rich-content .cm-hotspot-01 {
  top: -1%;
  left: -66%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-01 {
    top: 7%;
    left: 31%;
  }
}

#cm-rich-content .cm-hotspot-02 {
  top: 60%;
  left: -80%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-02 {
    top: 39%;
    left: 20%;
  }
}

#cm-rich-content .cm-hotspot-03 {
  top: 24%;
  left: -61%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-03 {
    top: 21%;
    left: 38%;
  }
}

#cm-rich-content .cm-hotspot-04 {
  top: 28%;
  left: -49%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-04 {
    top: 22%;
    left: 53%;
  }
}

#cm-rich-content .cm-hotspot-05 {
  top: 31%;
  left: -37%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-05 {
    top: 24%;
    left: 65%;
  }
}

#cm-rich-content .cm-hotspot-06 {
  top: 35%;
  left: -25%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-06 {
    top: 26%;
    left: 78%;
  }
}

#cm-rich-content .cm-hotspot-07 {
  top: -9%;
  left: -44%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-07 {
    top: 4%;
    left: 57%;
  }
}

#cm-rich-content .cm-hotspot-08 {
  top: 62%;
  left: -21%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-hotspot-08 {
    top: 41%;
    left: 81%;
  }
}

#cm-rich-content .cm-slides-new {
  padding: 2em 2em 2em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-slides-new {
    padding: 2em 0.5em 3em 0.5em;
    gap: 2em 0em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-slides-new {
    padding: 3em 2em 1em 2em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-slides-new {
    gap: 2em 2em;
  }
}

@container (max-width: 450px) {
  #cm-rich-content .cm-slides-new {
    padding: 2em 0.5em 0em 0.5em;
    row-gap: 1em;
  }
}

#cm-rich-content .cm-slides-new .cm-slide-box {
  max-width: 33%;
  width: 100%;
  position: relative;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-slides-new .cm-slide-box {
    max-width: 45%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-slides-new .cm-slide-box {
    max-width: 100%;
  }
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-slide-scale {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-slide-scale.cm-blender {
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-slide {
  max-width: 200px;
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-slide.cm-blender {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-slide {
    max-width: 180px;
  }
}

@container (max-width: 450px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-slide {
    max-width: 180px;
  }
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-slide .cm-slide-scale {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-slide .cm-slide-scale.cm-blender {
  border-radius: 50%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-text {
  margin-top: 1em;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1.4;
  min-height: 40px;
  padding: 0 1em;
  text-align: center;
}

@container (max-width: 450px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-text {
    padding: 0 2em;
  }
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-text span {
  font-weight: 700;
}

#cm-rich-content .cm-slides-new .cm-slide-box .cm-text.cm-blender {
  font-weight: 400;
  font-size: 18px;
  min-height: 44px;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-text.cm-blender {
    font-size: 16px;
    padding: 0 0.5em;
    min-height: 70px;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-text.cm-blender {
    min-height: 90px;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-text.cm-blender {
    font-size: 16px;
  }
}

@container (max-width: 450px) {
  #cm-rich-content .cm-slides-new .cm-slide-box .cm-text.cm-blender {
    max-width: 80%;
  }
}

#cm-rich-content .cm-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#cm-rich-content .cm-items .cm-item {
  width: 47%;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-items .cm-item {
    width: 90%;
  }
}

#cm-rich-content .cm-items .cm-item .cm-item-text {
  color: #666666;
  text-align: center;
  padding: 0 5em 5em;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-items .cm-item .cm-item-text {
    padding: 0 3em 3em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-items .cm-item .cm-item-text {
    padding: 0 1em 2em;
  }
}

#cm-rich-content .cm-items .cm-item .cm-item-text .cm-text-title {
  font-size: 1.875em;
  font-weight: bold;
  padding: 1em 0 0.5em;
  text-align: center;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-items .cm-item .cm-item-text .cm-text-title {
    font-size: 1.675em;
  }
}

#cm-rich-content .cm-items .cm-item .cm-item-text .cm-text {
  font-size: 1.125em;
  text-align: center;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-items .cm-item .cm-item-text .cm-text {
    font-size: 1em;
  }
}

#cm-rich-content .cm-items .cm-item.cm-item-1 .cm-item-img {
  text-align: end;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-items .cm-item.cm-item-1 .cm-item-img {
    text-align: center;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-items .cm-item.cm-item-2 .cm-item-img {
    text-align: center;
  }
}

#cm-rich-content .cm-faq-section {
  position: relative;
  padding: 0 2em 3em;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-faq-section {
    padding: 0 1em 3em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-faq-section {
    padding: 0 0.75em 1em 0.75em;
  }
}

#cm-rich-content .cm-faq-section::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 9em;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2e2e30), to(rgba(46, 46, 48, 0)));
  background-image: linear-gradient(to bottom, #2e2e30, rgba(46, 46, 48, 0));
}

#cm-rich-content .cm-faq-section > .cm-title {
  position: relative;
  text-align: center;
  font-size: 2.625em;
  padding: 1em 0 1em;
  font-weight: 500;
  z-index: 1;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-faq-section > .cm-title {
    font-size: 2.125em;
  }
}

#cm-rich-content .cm-faq-section .cm-faq-drop {
  display: inline-block;
  margin: 1em 0;
  padding: 1em;
  background-color: #EBF0F2;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 170px;
  text-align: center;
  cursor: pointer;
}

#cm-rich-content .cm-faq-section .cm-faq-drop .cm-text:nth-child(1) {
  display: inline;
}

#cm-rich-content .cm-faq-section .cm-faq-drop .cm-text:nth-child(2) {
  display: none;
}

#cm-rich-content .cm-faq-section #cm-drop {
  display: none;
}

#cm-rich-content .cm-faq-section .cm-faq {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input {
  display: none;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-row {
  background-color: #EBF0F2;
  position: relative;
  margin: 1em auto;
  color: #000;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title {
  cursor: pointer;
  font-size: 1.125em;
  padding: 2em 1em 2em 10%;
  position: relative;
  display: block;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title {
    font-size: 0.875em;
  }
}

#cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title::after, #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  left: 5%;
  top: 50%;
  background-color: #DC0714;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title {
    padding: 1em 1em 1em 40px;
  }
  #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title::after, #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-title::before {
    left: 20px;
  }
}

#cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-desc {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0 2em 0 10%;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

@container (max-width: 600px) {
  #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-desc {
    padding: 0 1em 0 40px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-faq-section .cm-faq .cm-row .cm-desc {
    font-size: 0.875em;
  }
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(1):checked ~ .cm-row:nth-child(5) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(1):checked ~ .cm-row:nth-child(5) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(1):checked ~ .cm-row:nth-child(5) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 300;
  line-height: 1.3;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(2):checked ~ .cm-row:nth-child(6) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(2):checked ~ .cm-row:nth-child(6) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(2):checked ~ .cm-row:nth-child(6) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 300;
  line-height: 1.3;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(3):checked ~ .cm-row:nth-child(7) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(3):checked ~ .cm-row:nth-child(7) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(3):checked ~ .cm-row:nth-child(7) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 300;
  line-height: 1.3;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(4):checked ~ .cm-row:nth-child(8) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(4):checked ~ .cm-row:nth-child(8) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-faq-section .cm-faq .cm-input:nth-child(4):checked ~ .cm-row:nth-child(8) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 300;
  line-height: 1.3;
}

#cm-rich-content .cm-features {
  background-color: #1D1D1D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cm-rich-content .cm-features .cm-img {
  width: 47%;
  padding-top: 6em;
  padding-bottom: 6em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-features .cm-img {
    padding-top: 6em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-features .cm-img {
    display: none;
  }
}

#cm-rich-content .cm-features .cm-text {
  width: 50%;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-features .cm-text {
    width: 100%;
  }
}

#cm-rich-content .cm-features .cm-text .cm-text-title {
  font-size: 1.875em;
  font-weight: bold;
  padding: 1em 0 1em 2.5em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-features .cm-text .cm-text-title {
    padding: 1em 0 1em 1.5em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-features .cm-text .cm-text-title {
    padding: 1em 0 1em 3.5em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-features .cm-text .cm-text-title {
    font-size: 1.675em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-features .cm-text .cm-text-title {
    padding: 1em 0 1em .5em;
  }
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 {
  position: relative;
  padding: 0 2em 1em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 {
    padding: 0 0em 1em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 {
    padding: 0 1em 3em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 {
    padding: 0 0.75em 1em 0.75em;
  }
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 9em;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2e2e30), to(rgba(46, 46, 48, 0)));
  background-image: linear-gradient(to bottom, #2e2e30, rgba(46, 46, 48, 0));
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 > .cm-title {
  position: relative;
  text-align: center;
  font-size: 2.625em;
  padding: 1em 0 1em;
  font-weight: 400;
  z-index: 1;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 > .cm-title {
    font-size: 2.125em;
  }
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq-drop {
  display: inline-block;
  margin: 1em 0;
  padding: 1em;
  background-color: #666666;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 170px;
  text-align: center;
  cursor: pointer;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq-drop .cm-text:nth-child(1) {
  display: inline;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq-drop .cm-text:nth-child(2) {
  display: none;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 #cm-drop {
  display: none;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input {
  display: none;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row {
  position: relative;
  color: white;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-title {
  cursor: pointer;
  font-size: 1.25em;
  padding: 0em 1em 0em 10%;
  position: relative;
  display: block;
  font-weight: 600;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-title {
    padding: 0;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-title {
    font-size: 1em;
  }
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-title img {
  margin-right: 5px;
  max-width: 33px;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-desc {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 1em 2em 0 18%;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-desc {
    padding: 1em 10em 0 16%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-desc {
    padding: 1em 8em 0 16%;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-desc {
    padding: 1em 5em 0 16%;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-row .cm-desc {
    padding: 1em 2em 0 10%;
  }
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(1):checked ~ .cm-row:nth-child(9) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(1):checked ~ .cm-row:nth-child(9) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(1):checked ~ .cm-row:nth-child(9) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(2):checked ~ .cm-row:nth-child(10) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(2):checked ~ .cm-row:nth-child(10) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(2):checked ~ .cm-row:nth-child(10) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(3):checked ~ .cm-row:nth-child(11) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(3):checked ~ .cm-row:nth-child(11) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(3):checked ~ .cm-row:nth-child(11) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(4):checked ~ .cm-row:nth-child(12) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(4):checked ~ .cm-row:nth-child(12) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(4):checked ~ .cm-row:nth-child(12) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(5):checked ~ .cm-row:nth-child(13) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(5):checked ~ .cm-row:nth-child(13) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(5):checked ~ .cm-row:nth-child(13) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(6):checked ~ .cm-row:nth-child(14) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(6):checked ~ .cm-row:nth-child(14) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(6):checked ~ .cm-row:nth-child(14) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(7):checked ~ .cm-row:nth-child(15) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(7):checked ~ .cm-row:nth-child(15) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(7):checked ~ .cm-row:nth-child(15) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(8):checked ~ .cm-row:nth-child(16) .cm-title {
  cursor: default;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(8):checked ~ .cm-row:nth-child(16) .cm-title::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

#cm-rich-content .cm-features .cm-text .cm-faq-section-2 .cm-faq .cm-input:nth-child(8):checked ~ .cm-row:nth-child(16) .cm-desc {
  padding-bottom: 1.5em;
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  font-weight: 100;
  line-height: 1.3;
}

#cm-rich-content .cm-ng-types {
  max-width: 1200px;
  margin: auto;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 2.25em;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 6em;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-ng-types {
    padding: 0 4em;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-ng-types {
    padding: 0 2em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-ng-types {
    font-size: 1.75em;
    padding: 0 1em;
  }
}

#cm-rich-content .cm-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-types {
    gap: 3em;
    background-image: none !important;
  }
}

#cm-rich-content .cm-types .cm-col {
  width: 18.5%;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-types .cm-col {
    width: 21%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-types .cm-col {
    width: 29%;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-types .cm-col {
    width: 31%;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-types .cm-col {
    width: 37%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-types .cm-col {
    width: 45%;
  }
}

@container (max-width: 350px) {
  #cm-rich-content .cm-types .cm-col {
    width: 50%;
  }
}

#cm-rich-content .cm-types .cm-col .cm-img {
  text-align: center;
}

#cm-rich-content .cm-types .cm-col .cm-text {
  font-size: 1.625em;
  background-color: #DC0814;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  text-align: center;
  padding: 0.5em 0;
  margin: .5em auto 0;
  font-weight: bold;
}

@container (max-width: 1100px) {
  #cm-rich-content .cm-types .cm-col .cm-text {
    font-size: 1.5em;
  }
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-types .cm-col .cm-text {
    font-size: 1.375em;
  }
}

@container (max-width: 900px) {
  #cm-rich-content .cm-types .cm-col .cm-text {
    font-size: 1.25em;
  }
}

#cm-rich-content .cm-other-section {
  padding: 0 2em;
  min-width: 700px;
  height: auto;
  overflow-y: hidden;
  overflow-x: hidden;
  color: #000;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-other-section {
    max-width: 100%;
    min-width: 100%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-other-section {
    padding: 0 1em;
  }
}

@container (max-width: 550px) {
  #cm-rich-content .cm-other-section {
    padding: 0 0em;
  }
}

#cm-rich-content .cm-other-section::-webkit-scrollbar {
  width: 50px;
  height: 10px;
}

#cm-rich-content .cm-other-section::-webkit-scrollbar-thumb {
  background: #DFDFDF;
  border-radius: 8px;
}

#cm-rich-content .cm-other-section::-webkit-scrollbar-track {
  background: #EFECEC;
  border-radius: 8px;
}

@container (max-width: 550px) {
  #cm-rich-content .cm-other-section {
    min-width: unset;
    max-width: 100%;
    overflow-x: scroll;
  }
}

#cm-rich-content .cm-other-section .cm-table {
  max-width: 100%;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-other-section .cm-table {
    width: 250%;
  }
}

@container (max-width: 550px) {
  #cm-rich-content .cm-other-section .cm-table {
    width: calc(100% /3 * 4);
    max-width: unset;
    padding: 0 0.25em 0 0;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-other-section .cm-table {
    width: calc(100% /2 * 4);
    max-width: unset;
    padding: 0 0.25em 0 0;
  }
}

#cm-rich-content .cm-other-section .cm-table .cm-tr {
  border-collapse: collapse;
  height: 90px;
}

@container (max-width: 800px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr {
    height: 80px;
  }
}

@container (max-width: 550px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr {
    height: 54px;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr {
    height: 44px;
  }
}

@container (max-width: 800px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr.title {
    height: 80px;
  }
}

@container (max-width: 550px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr.title {
    height: 60px;
  }
}

#cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td {
  border-collapse: collapse;
  border: 1px solid #666666;
  text-align: center;
  padding: 0 1em;
  position: relative;
  max-width: calc((100% - 190px) / 3);
  min-width: calc((100% - 190px) / 3);
  border-top: none;
  font-size: 1.125em;
  border-left: none;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td {
    font-size: 1em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td {
    font-size: 0.875em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td img {
    max-width: 100px;
  }
}

#cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td.cm-dot::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000;
  border-radius: 50%;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td.cm-green img {
  max-width: 100%;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td.cm-green img {
    max-width: 16%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td.cm-green img {
    max-width: 14%;
  }
}

@container (max-width: 350px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td.cm-green img {
    max-width: 16%;
  }
}

#cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td.cm-dash::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 5px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 2.5px;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td:nth-child(2) {
  background-color: rgba(227, 0, 74, 0.05);
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td {
    width: 20%;
    min-width: unset;
    max-width: unset;
    background-color: #fff;
  }
}

#cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td:first-child {
  min-width: 190px;
  max-width: 190px;
  text-align: left;
  z-index: unset;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  padding-left: 2em;
  z-index: 1;
  border: 1px solid #666666;
  border-collapse: separate;
  border-left: none;
  border-top: none;
}

@container (max-width: 1000px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td:first-child {
    width: 20%;
    min-width: unset;
    max-width: unset;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td:first-child {
    width: 20%;
    min-width: 160px;
    max-width: 160px;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tr .cm-td:first-child {
    width: 20%;
    min-width: unset;
    max-width: unset;
  }
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:first-child {
  height: 125px;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:first-child .cm-td {
  border: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:first-child .cm-td:first-child {
  z-index: 3;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:first-child .cm-main-product {
  background-color: #fff;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:nth-child(2) .cm-td {
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
  z-index: 2;
  border-top: none;
  border: none;
  font-size: 1em;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:nth-child(2) .cm-td:first-child {
  z-index: 3;
  border: none;
}

#cm-rich-content .cm-other-section .cm-table .cm-tr:nth-child(2) .cm-main-product {
  background-color: #fff;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr {
  height: 90px;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button {
  width: 100%;
  max-width: 100%;
  padding: 0.5em 1em;
  border-radius: 10px;
  margin: 0 auto;
  text-decoration: none;
  color: #fff;
  position: relative;
  -webkit-animation-name: cm-button;
          animation-name: cm-button;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  scale: 1;
  -webkit-transition: scale .3s;
  transition: scale .3s;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button:hover, #cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button:active {
  scale: 0.9;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button:hover .cm-ul, #cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button:active .cm-ul {
  opacity: 1;
  width: 100%;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button .cm-ul {
  position: absolute;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
  bottom: 0;
  left: 0;
  background-color: #007DBA;
  border-radius: 10px;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style: none;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-animation-name: cm-button;
          animation-name: cm-button;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  height: 200%;
  overflow: hidden;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button .cm-ul .cm-li {
  height: 50%;
  font-size: 16px;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button .cm-ul .cm-li .cm-link {
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button .cm-ul .cm-li:hover {
  background-color: #006699;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button {
    -webkit-animation-name: none;
            animation-name: none;
    scale: 0.9;
  }
  #cm-rich-content .cm-other-section .cm-table .cm-tfoot .cm-tr .cm-td .cm-button .cm-ul {
    opacity: 1;
  }
}

#cm-rich-content .cm-section {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section {
  padding-top: 0;
  position: relative;
  background-color: #1D1D1D;
}

#cm-rich-content .cm-section .cm-video-section video {
  width: 100%;
}

#cm-rich-content .cm-section .cm-video-section-2 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-2 video {
  width: 100%;
  height: 100%;
}

#cm-rich-content .cm-section .cm-video-section-3 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-3 label {
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  top: 0;
}

#cm-rich-content .cm-section .cm-video-section-3 video {
  width: 100%;
  top: 0;
  height: 100%;
}

#cm-rich-content .cm-section .cm-video-section-4 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-4 video {
  width: 100%;
  top: 0;
  height: 100%;
}

#cm-rich-content .cm-section .cm-video-section-5 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-5 video {
  width: 100%;
}

#cm-rich-content .cm-section .cm-video-section-6 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-6 video {
  width: 100%;
}

#cm-rich-content .cm-section .cm-video-section-7 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-7 video {
  width: 100%;
}

#cm-rich-content .cm-section .cm-video-section-8 {
  padding-top: 0;
  position: relative;
}

#cm-rich-content .cm-section .cm-video-section-8 video {
  width: 100%;
}

#cm-rich-content .cm-disclaimer {
  padding: 2em 0 0 1em;
  font-size: 0.875em;
}

#cm-rich-content .cm-about {
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  padding: 0 15em 2em 2em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-about {
    padding: 0 10em 2em 2em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-about {
    padding: 0 8em 2em 2em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-about {
    padding: 0 5em 2em 2em;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-about {
    padding: 0 3em 2em 2em;
  }
}

#cm-rich-content .cm-about .cm-title {
  font-size: 1.875em;
  font-weight: bold;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-about .cm-title {
    font-size: 1.75em;
  }
}

#cm-rich-content .cm-about .cm-paragraph {
  font-size: 1.125em;
}

@container (max-width: 500px) {
  #cm-rich-content .cm-about .cm-paragraph {
    font-size: 14px;
  }
}

#cm-rich-content .cm-colors .cm-ng-colors {
  max-width: 1200px;
  margin: auto;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 2.25em;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3em 5em 1em;
}

@container (max-width: 900px) {
  #cm-rich-content .cm-colors .cm-ng-colors {
    padding: 3em 3em 1em;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-colors .cm-ng-colors {
    padding: 3em 1em 2em;
  }
}

@container (max-width: 600px) {
  #cm-rich-content .cm-colors .cm-ng-colors {
    font-size: 2.25em;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-colors .cm-ng-colors {
    font-size: 1.75em;
  }
}

#cm-rich-content .cm-colors .cm-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@container (max-width: 700px) {
  #cm-rich-content .cm-colors .cm-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-colors .cm-img .cm-img-1 {
    width: 60%;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-colors .cm-img .cm-img-1 {
    width: 70%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-colors .cm-img .cm-img-1 {
    width: 80%;
  }
}

@container (max-width: 700px) {
  #cm-rich-content .cm-colors .cm-img .cm-img-2 {
    width: 60%;
  }
}

@container (max-width: 500px) {
  #cm-rich-content .cm-colors .cm-img .cm-img-2 {
    width: 70%;
  }
}

@container (max-width: 400px) {
  #cm-rich-content .cm-colors .cm-img .cm-img-2 {
    width: 80%;
  }
}
