:root {
  --heading-color: #0A2A40;
  --para-color: #646464;
  --textover-color: #00A0F9;
  --bg-alt: #F5FBFE;
  --white: #fff;
  --black: #000;
  --anchor-color: #2EB7E5;
  --footer-border-color: #DADADA;
  --upper-nav-bg: #003A5A;
  --dropdown-border-color: #F2F2F2;
  --sml-menu-border-color: #EAEAEA ;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  margin: 0;
  color: var(--para-color);
}

body.no-scroll {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  color: var(--heading-color);
}

h1 {
  font-size: 43px;
  line-height: 52.03px;
  margin-bottom: 20px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.bg-alt + .bg-alt {
  padding-top: 0;
}
section:not(.bg-alt) + :not(.bg-alt) {
  padding-top: 0;
}

.section-title {
  max-width: 828px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 32px;
  line-height: 38.72px;
  margin: 0;
}
.section-title h2 + p {
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 28px;
}

p {
  line-height: 28px;
}

.btn-cta {
  padding: 16px 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.5s ease-in-out;
}
.btn-cta:hover {
  opacity: 0.8;
}
.btn-cta.white {
  background: var(--white);
  color: var(--black);
}
.btn-cta.outlined {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.cpg-text-over {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.13em;
  color: var(--textover-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  display: inline-block;
}

.bg-alt {
  background: var(--bg-alt);
}

.cp-logo {
  display: inline-block;
}

a {
  transition: 0.5s ease-in-out;
}
a:hover {
  opacity: 0.8;
}