:root {
  --font-family: "Nunito", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Raleway", sans-serif;
  --font3: "Open Sans", sans-serif;
  --font4: "Roboto", sans-serif;
  --font5: "Jua", sans-serif;

  --green: #2c7865;
  --orange: #ff9800;
  --black: #232323;
  --ffffff: #fff;
  --bg-card: #fdfaf6;
  --blue: #008dda;
  --link: #0040ff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
}

img {
  display: block;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--black);
  background: var(--ffffff);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-cps {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-cps {
  position: relative;
  width: 375px;
  padding: 40px 16px;
}

.section-title-cps {
  border: 0.5px solid var(--orange);
  border-radius: 50px;
  padding: 6px 12px 6px 28px;
  display: inline-block;

  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: var(--orange);
  position: relative;

  margin-bottom: 8px;
}

.section-title-cps::before {
  background: var(--orange);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;

  position: absolute;
  top: 11px;
  left: 13px;
}

.section-subtitle-cps {
  font-weight: 700;
  font-size: 22px;
  line-height: 155%;
}

@media screen and (min-width: 1440px) {
  .container-cps {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    padding: 90px 88px;
  }

  .section-title-cps {
    font-size: 16px;
    line-height: 150%;
  }

  .section-subtitle-cps {
    font-size: 32px;
  }
}
