@font-face {
  font-family: "Poppins";
  font-weight: 900;
  src: url(../assets/fonts/Poppins-Black.ttf);
}
@font-face {
  font-family: "Poppins";
  font-weight: 800;
  src: url(../assets/fonts/Poppins-ExtraBold.ttf);
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  src: url(../assets/fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  src: url(../assets/fonts/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  src: url(../assets/fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  src: url(../assets/fonts/Poppins-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

p, h1, h2, h3, h4 {
  margin: 0;
}

.cps-mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 999999;
  transform: translateX(1000px);
  transition: all 0.4s;
}
.cps-mobile-menu .cps-mobile-menu__content {
  width: 100%;
}
.cps-mobile-menu .cps-mobile-menu__logo {
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 12px;
}
.cps-mobile-menu .cps-mobile-menu__logo img {
  margin-left: 20px;
  width: 200px;
  object-fit: contain;
}
.cps-mobile-menu .cps-mobile-menu__close {
  width: 78px;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
}
.cps-mobile-menu .cps-mobile-menu__close img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.cps-mobile-menu .cps-mobile-menu__list, .cps-mobile-menu .menu {
  display: flex;
  flex-direction: column;
}
.cps-mobile-menu .cps-mobile-menu__list ul, .cps-mobile-menu .menu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cps-mobile-menu .menu-item {
  display: flex;
  list-style-type: none;
}
.cps-mobile-menu .menu-item a {
  width: 100%;
  padding: 12px 18px;
  text-decoration: none;
  color: #727272;
}
.cps-mobile-menu .menu-item.current-menu-item a {
  color: black;
  font-weight: bold;
}
.cps-mobile-menu .cps-mobile-menu__item {
  padding: 12px 18px;
  text-decoration: none;
  color: #727272;
}
.cps-mobile-menu .cps-mobile-menu__item.item-active {
  color: black;
  font-weight: bold;
}
@media (min-width: 940px) {
  .cps-mobile-menu {
    display: none;
  }
}

.cps-header {
  padding: 16px 12px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  transition: all 0.2s;
}
.cps-header .cps-header__content {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.cps-header .cps-header__logo {
  width: 250px;
  transform: translateY(2px);
}
.cps-header .cps-header__logo img {
  width: 200px !important;
  height: 30px !important;
  transition: all 0.2s;
}
.cps-header .menu {
  display: flex;
  gap: 20px;
  margin: 0;
}
.cps-header .menu .menu-item {
  list-style-type: none;
}
.cps-header .menu .menu-item a {
  height: 38px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #282828;
  opacity: 0.5;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.cps-header .menu .menu-item.current-menu-item a {
  opacity: 1;
  font-weight: bold;
}
.cps-header .menu .menu-item-has-children {
  height: 38px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #282828;
  cursor: pointer;
  position: relative;
}
.cps-header .menu .menu-item-has-children:hover .sub-menu {
  display: flex;
}
.cps-header .menu .menu-item-has-children .sub-menu {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #282828;
  opacity: 1;
  cursor: pointer;
  position: relative;
  display: none;
  margin: 0;
  width: 200px;
  flex-direction: column;
  position: absolute;
  top: 34px;
  right: 0px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 4px 0px;
}
.cps-header .menu .menu-item-has-children .sub-menu .menu-item {
  width: 100%;
  padding: 0px 14px;
}
.cps-header .cps-header__nav {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.cps-header .cps-header__nav .cps-header__nav-item {
  height: 38px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #282828;
  opacity: 0.5;
  text-decoration: none;
}
.cps-header .cps-header__nav .cps-header__nav-item.nav-item-active {
  font-weight: bold;
  opacity: 1;
}
.cps-header .cps-header__nav-item--dropdown {
  height: 38px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #282828;
  opacity: 0.5;
  cursor: pointer;
  position: relative;
}
.cps-header .cps-header__nav-item--dropdown .cps-header__nav-item--dropdown-items {
  display: none;
}
.cps-header .cps-header__nav-item--dropdown.nav-item-active {
  font-weight: bold;
  opacity: 1;
}
.cps-header .cps-header__nav-item--dropdown:hover {
  opacity: 1;
}
.cps-header .cps-header__nav-item--dropdown:hover .cps-header__nav-item--dropdown-items {
  width: 200px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 34px;
  right: 0px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 4px 0px;
}
.cps-header .cps-header__nav-item--dropdown .cps-header__nav-item-dropdown {
  padding: 12px;
  color: #282828;
  font-weight: normal;
  text-decoration: none;
}
.cps-header .cps-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  background-color: transparent;
  border: none;
}
.cps-header.cps-header--filled {
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 940px) {
  .cps-header .cps-header__nav {
    display: none;
  }
  .cps-header .menu {
    display: none;
  }
  .cps-header .cps-header__menu {
    display: flex;
  }
}

.cps-landing-hero {
  min-height: 750px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cps-landing-hero .cps-landing-hero__bk {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cps-landing-hero .cps-landing-hero__bk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cps-landing-hero .cps-landing-hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}
.cps-landing-hero .cps-landing-hero__info {
  width: 100%;
  max-width: 480px;
}
.cps-landing-hero .cps-landing-hero__info .cps-landing-hero__title {
  font-weight: bold;
  font-size: 48px;
  line-height: 115%;
  color: #282828;
  margin-bottom: 12px;
}
.cps-landing-hero .cps-landing-hero__info .cps-landing-hero__body {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #282828;
}
.cps-landing-hero .cps-landing-hero__info .cps-landing-hero__cta {
  display: flex;
  width: 100%;
  max-width: 200px;
  padding: 12px 40px;
  background-color: white;
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #358ECD;
  text-decoration: none;
  border-radius: 200px;
  margin-top: 24px;
}
.cps-landing-hero .cps-landing-hero__image {
  width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cps-landing-hero .cps-landing-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 940px) {
  .cps-landing-hero .cps-landing-hero__content {
    display: flex;
    flex-direction: column-reverse;
    padding: 80px 20px;
    gap: 40px;
  }
  .cps-landing-hero .cps-landing-hero__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .cps-landing-hero .cps-landing-hero__info .cps-landing-hero__title {
    text-align: center;
  }
  .cps-landing-hero .cps-landing-hero__info .cps-landing-hero__body {
    text-align: center;
  }
  .cps-landing-hero .cps-landing-hero__image {
    width: auto;
  }
}

.cps-landing-services .cps-landing-services__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.cps-landing-services .cps-landing-services__item {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cps-landing-services .cps-landing-services__item-img {
  width: 320px;
  height: 320px;
  margin-bottom: 20px;
}
.cps-landing-services .cps-landing-services__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cps-landing-services .cps-landing-services__item-title {
  font-weight: bold;
  font-size: 34px;
  line-height: 115%;
  color: #282828;
  margin-bottom: 12px;
}
.cps-landing-services .cps-landing-services__item-description {
  font-weight: normal;
  font-size: 18px;
  line-height: 134%;
  color: #282828;
}
@media (max-width: 940px) {
  .cps-landing-services .cps-landing-services__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cps-landing-services .cps-landing-services__item {
    max-width: 600px;
  }
  .cps-landing-services .cps-landing-services__item .cps-landing-services__item-title {
    text-align: center;
  }
  .cps-landing-services .cps-landing-services__item .cps-landing-services__item-description {
    text-align: center;
  }
}

.cps-landing-mission {
  display: flex;
  flex-direction: column;
}
.cps-landing-mission .cps-landing-mission__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: bold;
  font-size: 38px;
  line-height: 115%;
  color: #282828;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .cps-landing-mission .cps-landing-mission__title {
    margin-bottom: 0px;
  }
}

.cps-landing-partners {
  display: flex;
  flex-direction: column;
}
.cps-landing-partners .cps-landing-partners__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: bold;
  font-size: 38px;
  line-height: 115%;
  color: #282828;
  margin-bottom: 40px;
}
.cps-landing-partners .cps-landing-partners__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.cps-landing-partners .cps-landing-partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cps-landing-partners .cps-landing-partners__item {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cps-landing-partners .cps-landing-partners__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .cps-landing-partners .cps-landing-partners__title {
    text-align: center;
  }
}

.cps-section-hero {
  height: 300px;
  position: relative;
}
.cps-section-hero .cps-section-hero__bk {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cps-section-hero .cps-section-hero__bk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cps-section-hero .cps-section-hero__content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 45px;
}
.cps-section-hero .cps-section-hero__title {
  font-weight: bold;
  font-size: 38px;
  line-height: 130%;
  text-align: center;
  color: #282828;
}
.cps-section-hero .cps-section-hero__description {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #282828;
}

.cps-contact-footer {
  height: 200px;
  display: flex;
  position: relative;
}
.cps-contact-footer .cps-contact-footer__bk {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cps-contact-footer .cps-contact-footer__bk img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
}
.cps-contact-footer .cps-contact-footer__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.cps-contact-footer .cps-contact-footer__title {
  font-weight: bold;
  font-size: 28px;
  line-height: 130%;
  display: flex;
  align-items: flex-end;
  text-align: center;
  color: #FFFFFF;
}
.cps-contact-footer .cps-contact-footer__cta {
  width: 100%;
  max-width: 200px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #358ECD;
  text-decoration: none;
  border-radius: 200px;
  margin-top: 24px;
  box-shadow: 0px 2px 8px rgba(58, 155, 234, 0.8);
}

.cps-footer {
  background-color: #252525;
}
.cps-footer .cps-footer__content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
}
.cps-footer .cps-footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cps-footer .cps-footer__info .cps-footer__logo {
  max-width: 250px;
}
.cps-footer .cps-footer__info .cps-footer__logo img {
  width: 240px;
  height: 36px;
  object-fit: contain;
}
.cps-footer .cps-footer__nav, .cps-footer .menu {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  margin: 0;
}
.cps-footer .cps-footer__nav .cps-footer__nav-item, .cps-footer .menu .cps-footer__nav-item {
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
  text-decoration: none;
}
.cps-footer .cps-footer__nav .menu-item, .cps-footer .menu .menu-item {
  list-style-type: none;
}
.cps-footer .cps-footer__nav .menu-item a, .cps-footer .menu .menu-item a {
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
  text-decoration: none;
}
.cps-footer .cps-footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
}
.cps-footer .cps-footer__social-media {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.cps-footer .cps-footer__email {
  font-weight: normal;
  font-size: 14px;
  line-height: 115%;
  text-align: right;
  color: #FFFFFF;
}
.cps-footer .cps-footer__site {
  font-weight: normal;
  font-size: 14px;
  line-height: 115%;
  text-align: right;
  color: #FFFFFF;
}
.cps-footer .cps-footer__bottom {
  background-color: #0C0C0C;
  padding: 6px;
}
.cps-footer .cps-footer__bottom .cps-footer__bottom-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 115%;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 680px) {
  .cps-footer .cps-footer__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .cps-footer .cps-footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cps-footer .cps-footer__nav, .cps-footer .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cps-footer .cps-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.cps-fancy-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.cps-fancy-list .cps-fancy-list__item {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cps-fancy-list .cps-fancy-list__item:nth-child(odd) {
  align-self: flex-start;
  flex-direction: row;
}
.cps-fancy-list .cps-fancy-list__item:nth-child(odd) .cps-fancy-list__item-image {
  height: auto;
  border-radius: 0px 12px 12px 0px;
}
.cps-fancy-list .cps-fancy-list__item:nth-child(even) {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.cps-fancy-list .cps-fancy-list__item:nth-child(even) .cps-fancy-list__item-image {
  border-radius: 12px 0px 0px 12px;
}
.cps-fancy-list .cps-fancy-list__item-image {
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.cps-fancy-list .cps-fancy-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cps-fancy-list .cps-fancy-list__item-body {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}
.cps-fancy-list .cps-fancy-list__item-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 115%;
  color: #282828;
}
.cps-fancy-list .cps-fancy-list__item-description {
  font-weight: normal;
  font-size: 16px;
  line-height: 134%;
  color: #282828;
}
@media (max-width: 940px) {
  .cps-fancy-list {
    padding: 20px;
    gap: 40px;
  }
  .cps-fancy-list .cps-fancy-list__item {
    display: flex;
    flex-direction: column !important;
  }
  .cps-fancy-list .cps-fancy-list__item .cps-fancy-list__item-image {
    border-radius: 12px !important;
  }
  .cps-fancy-list .cps-fancy-list__item .cps-fancy-list__item-body {
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 1500px) {
  .cps-fancy-list {
    max-width: 1200px;
    margin: 0 auto;
  }
  .cps-fancy-list .cps-fancy-list__item .cps-fancy-list__item-image {
    border-radius: 12px !important;
  }
}

.cps-value-benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cps-value-benefits .cps-value-benefits__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: bold;
  font-size: 38px;
  line-height: 115%;
  text-align: center;
  color: #282828;
  margin-bottom: 40px;
}
.cps-value-benefits .cps-value-benefits__content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.cps-value-benefits .cps-value-benefits__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}
.cps-value-benefits .cps-value-benefit-item {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cps-value-benefits .cps-value-benefit-item .cps-value-benefit-item__image {
  width: 280px;
  height: 280px;
}
.cps-value-benefits .cps-value-benefit-item .cps-value-benefit-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cps-value-benefits .cps-value-benefit-item .cps-value-benefit-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cps-value-benefits .cps-value-benefit-item .cps-value-benefit-item__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.cps-value-benefits .cps-value-benefit-item .cps-value-benefit-item__subtitle {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  opacity: 0.5;
}

.cps-solutions__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: bold;
  font-size: 38px;
  line-height: 115%;
  color: #282828;
  margin-bottom: 20px;
}

.cps-solutions-info {
  width: 100%;
  display: flex;
  background-color: rgba(103, 200, 235, 0.1);
}
.cps-solutions-info .cps-solutions-info__content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 60px;
}
.cps-solutions-info .cps-solutions-info__item {
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cps-solutions-info .cps-solutions-info__item .cps-solutions-info__item-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 115%;
  color: #282828;
}
.cps-solutions-info .cps-solutions-info__item .cps-solutions-info__item-description {
  font-weight: normal;
  font-size: 16px;
  line-height: 134%;
  color: #282828;
}
@media (max-width: 940px) {
  .cps-solutions-info {
    margin-bottom: 0px;
  }
  .cps-solutions-info .cps-solutions-info__content {
    display: flex;
    flex-direction: column;
  }
  .cps-solutions-info .cps-solutions-info__item {
    width: 100%;
    max-width: 100%;
  }
}

.cps-solutions {
  margin-bottom: 40px;
}
@media (max-width: 940px) {
  .cps-solutions {
    margin-bottom: 20px;
  }
}

.cps-about-info {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  margin-top: 20px;
}
.cps-about-info .cps-about-info__content {
  width: 100%;
  max-width: 940px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}
.cps-about-info .cps-about-info__image {
  width: 300px;
  height: 300px;
  min-width: 300px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  overflow: hidden;
}
.cps-about-info .cps-about-info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cps-about-info .cps-about-info__content {
    display: flex;
    flex-direction: column;
  }
}

.cps-about-members-of {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
}
.cps-about-members-of .cps-about-members-of__content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 40px;
  padding: 0px 20px;
}
.cps-about-members-of .cps-about-members-of__title {
  font-weight: bold;
  font-size: 38px;
  line-height: 115%;
  text-align: center;
  color: #282828;
}
.cps-about-members-of .cps-about-members-of__body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 940px) {
  .cps-about-members-of {
    margin-bottom: 20px;
  }
}

.cps-contact-body {
  width: 100%;
  display: flex;
  margin: 40px 0px;
}
.cps-contact-body .cps-contact-body__content {
  width: 100%;
  max-width: 900px;
  padding: 20px;
  display: flex;
  gap: 40px;
  margin: 0 auto;
}
.cps-contact-body .cps-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cps-contact-body .cps-contact-form__input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cps-contact-body .cps-contact-form__input-group.input-required .cps-contact-form__label::before {
  content: "*";
  font-weight: bold;
  color: red;
  margin-right: 4px;
}
.cps-contact-body .cps-contact-form__input-group.input-error .cps-contact-form__input {
  border: 1px solid #FF0000;
}
.cps-contact-body .cps-contact-form__input-group.input-error::after {
  content: "This field is required";
  font-weight: normal;
  font-size: 12px;
  line-height: 130%;
  color: #FF0000;
}
.cps-contact-body .cps-contact-form__input-group .cps-contact-form__label {
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
}
.cps-contact-body .cps-contact-form__input-group .cps-contact-form__input {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  border: 1px solid #C4C4C4;
  border-radius: 4px;
  padding: 0px 12px;
  outline: none;
}
.cps-contact-body .cps-contact-form__input-group .cps-contact-form__textarea {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  border: 1px solid #C4C4C4;
  border-radius: 4px;
  padding: 0px 12px;
  outline: none;
  resize: vertical;
}
.cps-contact-body .wpforms-field-label {
  font-weight: normal !important;
  font-size: 14px !important;
}
.cps-contact-body .wpforms-field input {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 4px !important;
}
.cps-contact-body .cps-contact-form__submit {
  height: 45px;
  width: 100%;
  background: #3A9BEA;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.cps-contact-body .wpforms-submit {
  font-family: "Poppins", sans-serif !important;
  height: 45px !important;
  width: 100% !important;
  background: #3A9BEA !important;
  border-radius: 100px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: white !important;
  text-decoration: none !important;
  font-weight: bold !important;
}
.cps-contact-body .cps-contact-info {
  width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cps-contact-body .cps-contact-info .cps-contact-info__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #000000;
}
.cps-contact-body .cps-contact-info .cps-contact-info__description {
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #000000;
}
.cps-contact-body .cps-contact-info .cps-contact-info__whatsapp-cta {
  height: 72px;
}
.cps-contact-body .cps-contact-info .cps-contact-info__whatsapp-cta img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 780px) {
  .cps-contact-body {
    margin: 20px 0px;
  }
  .cps-contact-body .cps-contact-body__content {
    display: flex;
    flex-direction: column;
  }
  .cps-contact-body .cps-contact-info {
    width: auto;
  }
}

.cps-resources-body {
  width: 100%;
  display: flex;
  margin: 40px 0px;
}
.cps-resources-body .cps-resources-body__content {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}
.cps-resources-body .cps-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.cps-resources-body .cps-resource-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 18px;
}
.cps-resources-body .cps-resource-item .cps-resource-item__image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cps-resources-body .cps-resource-item .cps-resource-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cps-resources-body .cps-resource-item .cps-resource-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #000000;
}
@media (max-width: 1200px) {
  .cps-resources-body {
    margin: 0px 0px;
    margin-bottom: 20px;
  }
}

.cps-privacy-body {
  width: 100%;
  display: flex;
  margin: 40px 0px;
}
.cps-privacy-body .cps-privacy-body__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media (max-width: 1200px) {
  .cps-privacy-body {
    margin: 20px 0px;
  }
}
