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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--fontFamily);
  line-height: 1.6;
  font-weight: 400;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.wrapper {
  /*max-width: calc(71.25rem + var(--layoutGap) * 2);*/
  max-width: calc(100rem + var(--layoutGap) * 2);
  width: 100%;
  padding-right: var(--layoutGap);
  padding-left: var(--layoutGap);
  margin: 0 auto;
}

.wrapper--sm {
  max-width: 45.625rem;
}
.wrapper--md {
  max-width: 63.75rem;
}

.wrapper {
  max-width: 100rem;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  width: 100%;
  margin: 0 auto;
}
#my_video{
  margin: 0 -1em;
}
.rtopVideoPlayerWrapper .rtopVideoPlayer .rtopVideoHolder{
  padding-bottom: 30.25% !important;
}
.rtopVideoPlayerWrapper .rtopVideoPlayer .rtopVideoHolder video{
  object-fit: cover;
}
.hasFAIcons:after{
  display: none !important;
}
.columns {
  display: flex;
  flex-direction: column;
  margin-right: calc(var(--layoutGap) * -1);
  margin-left: calc(var(--layoutGap) * -1);
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 768px) {
  .columns {
    flex-direction: row;
  }
  .rtopVideoPlayerWrapper .rtopVideoPlayer .rtopVideoHolder video{
    object-fit: contain !important;
  }
}

.column {
  flex-basis: 100%;
  padding: var(--layoutGap);
}

.column--6 {
  flex: 1 1 50%;
}

:root {
  --layoutGap: 0.9375rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins";
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}



.button {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 0.5rem 1.5rem;
}
.button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}
.button--signup {
  background: #00b19d;
  color: #fff;
}
.button--signup-alt {
  background: #000;
  color: #fff;
  padding: 0.8125rem 1.5rem;
}
.button--login {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #000;
  background: #d9d9d9;
}
.button--contact-us {
  background: #fff;
  color: #000;
  padding: 0.8125rem 1rem;
}

.heading {
  font-family: "Poppins";
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}
.heading--h1 {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .heading--h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .heading--h1 {
    font-size: 2.525rem;
    font-weight: 600;
  }
}
.heading--h2 {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #000;
}
@media (min-width: 768px) {
  .heading--h2 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 992px) {
  .heading--h2 {
    font-size: 2.5rem;
  }
}
.heading--h3 {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000;
}

.full-width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.navbar {
  height: 5.3125rem;
  position: relative;
}
@media (min-width: 992px) {
  .navbar {
    background: #000;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .navbar ul {
    display: flex;
  }
}
.navbar li {
  margin-bottom: 1.375rem;
}
@media (min-width: 992px) {
  .navbar li {
    margin-bottom: 0;
    margin-right: 1.375rem;
  }
}
.navbar ul a {
  color: #fff;
  transition: color 200ms ease-out;
  display: inline-block;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.0909090909;
}
.navbar ul a:hover, .navbar ul a.active {
  color: #00b19d;
}
.navbar__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 0.9375rem 0;
  position: relative;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
  width: 100vw;
  margin-left: -15px;
  padding-left: 15px;
  background: #000;
  position: relative;
}
.navbar__content--stack {
  z-index: 9999;
}
.navbar__button-group{
  position: relative;
  top: -30em;
}
@media (min-width: 992px) {
  .navbar__content {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 0;
    transform: none;
    transition: none;
    opacity: 1;
    width: auto;
    margin-left: 0;
    padding-left: 0;
    background: transparent;
  }
  .navbar__button-group{
    position: relative;
    top: unset;
  }
}
.navbar__content--active {
  transform: translateX(0);
  opacity: 1;
}
.navbar__content .menu-close {
  position: absolute;
  right: 20px;
  top: 36px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #fff;
}
@media (min-width: 992px) {
  .navbar__content .menu-close {
    display: none;
  }
}
.navbar__content .menu-close svg {
  width: 100%;
  height: 100%;
}

.navbar__button-group > :nth-child(1) {
  margin-right: 1.25rem;
}

.header__site-logo {
  background: #00b19d;
  display: flex;
  margin-top: -5.3125rem;
  justify-content: center;
}
.header__site-logo .site-logo {
  width: 180px;
  height: 115px;
  position: relative;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 992px) {
  .header__site-logo {
    margin: 0;
  }
}
.header__site-logo .menu {
  position: absolute;
  right: 20px;
  top: 36px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
}
@media (min-width: 992px) {
  .header__site-logo .menu {
    display: none;
  }
}
.header__site-logo .menu svg {
  width: 100%;
  height: 100%;
}

.section-hero {
  background: #00b19d;
}
.section-hero__playback {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.section-hero__playback .close {
  position: absolute;
  z-index: 99999;
  background: #00b19d;
  right: 20px;
  top: 36px;
  width: 40px;
  height: 40px;
  color: #fff;
  cursor: pointer;
}
.section-hero__playback .close svg {
  width: 100%;
  height: 100%;
}
.section-hero__playback .video {
    position: absolute;
    width: 95vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.section-hero__playback .video::before {
  content: "";
  padding-top: 2%;
  display: block;
}
.section-hero__playback iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-hero__header {
  margin-bottom: 1.875rem;
}
@media (min-width: 992px) {
  .section-hero__header {
    margin-bottom: 2.5rem;
  }
}
.section-hero__body {
  position: relative;
}
.section-hero__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  cursor: pointer;
  width: 120px;
  height: 120px;
}
.section-hero__icon svg {
  width: 100%;
  height: 100%;
}
.section-hero__media {
  height: 49.53vh;
  position: relative;
}
.section-hero__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.section-hero__media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-contact {
  background: #00b19d;
  color: #ffffff;
  text-align: center;
  padding-bottom: 2.5rem;
}
.section-contact .wrapper {
  max-width: 46.5625rem;
}
.section-contact__header {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 992px) {
  .section-contact__header {
    padding-top: 2.5rem;
  }
}
.section-contact__body {
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.section-contact .button-group {
  max-width: 445px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 620px) {
  .section-contact .button-group {
    display: flex;
    justify-content: space-between;
    margin: 0 1em;
  }
  .section-contact  a.button.button {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .section-contact__body {
    font-size: 1.875rem;
  }
}
.section-contact__footer {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  position: relative;
  z-index: 2;
}
.section-contact__footer .button:nth-child(1) {
  /*margin-right: 0.875rem;*/
}

.section-feature {
  --layoutGap: 1.125rem;
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-feature {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
@media (min-width: 992px) {
  .section-feature {
    padding-top: 3.25rem;
    padding-bottom: 5rem;
  }
}
.section-feature .wrapper {
  max-width: 62.8125rem;
}
.section-feature__header {
  margin-bottom: 3.75rem;
}
.section-feature__title {
  color: #6eb100;
  margin-bottom: 1.75rem;
}
.section-feature__blurb {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 0 3.125rem;
}
.feature-card {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: #000;
  background: #fff;
  padding: 2.375rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 17.8125rem;
  transition: background 200ms ease-out, color 200ms ease-out;
}
.feature-card:hover {
  background: #00b19d;
  color: #fff;
}
.feature-card:hover .feature-card__icon {
  background: transparent;
  transition-duration: 0;
}
.feature-card__header {
  margin-bottom: 1.25rem;
}
.feature-card__icon {
  background: #00b19d;
  display: inline-block;
  width: 75px;
  height: 50px;
  margin-bottom: 2.1875rem;
  transition: background 100ms ease-out;
}
.feature-card__icon svg {
  width: 100%;
  height: 100%;
}
.feature-card__title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2rem;
  text-transform: capitalize;
}
.feature-card__title--lg {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.0625;
}
.feature-card__body {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.33rem;
  padding: 0 2rem;
}
.feature-card__body--sm {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1, 0.25;
}

.section-publishers,
.section-advertisers {
  text-align: center;
  background: rgba(0, 177, 157, 0.3);
  padding-top: 4.6875rem;
  padding-bottom: 4.0625rem;
}
.section-publishers .wrapper,
.section-advertisers .wrapper {
  max-width: 61rem;
}
.section-publishers__title,
.section-advertisers__title {
  margin-bottom: 1.5rem;
}
.section-publishers__sub-title,
.section-advertisers__sub-title {
  margin-bottom: 3.125rem;
}
.section-publishers__body,
.section-advertisers__body {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 1.875rem;
}
.section-publishers__button,
.section-advertisers__button {
  line-height: 1.5;
  font-weight: 500;
  /*padding: 0.625rem 2.9125rem;*/
}

.section-advertisers {
  text-align: center;
  background: rgba(0, 177, 157, 0.3);
  padding-top: 4.6875rem;
  padding-bottom: 4.0625rem;
}
.section-advertisers .wrapper {
  max-width: 61rem;
}
.section-advertisers__header {
  margin-bottom: 3.4375rem;
}
.section-advertisers__title {
  margin-bottom: 1rem;
}
.section-advertisers__blurb {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.section-advertisers__body {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 1.875rem;
  letter-spacing: 0.02em;
}
.section-advertisers__button {
  line-height: 1.5;
  font-weight: 500;
  padding: 0.625rem 2.9125rem;
  background: #00b19d;
  color: #fff;
}

.section-about-us {
  padding-top: 100px;
  padding-bottom: 40px;
  background: #fff;
}
.section-about-us__header {
  margin-bottom: 80px;
}
.section-about-us__title {
  margin-bottom: 30px;
}
.section-about-us__blurb {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 0 4.375rem;
}
@media (min-width: 992px) {
  .section-about-us__blurb {
    padding: 0 8.375rem;
  }
}
.section-about-us__body {
  position: relative;
}
@media (min-width: 992px) {
  .section-about-us__body {
    max-height: 520px;
    height: 100%;
    min-height: 520px;
    margin-top: 130px;
  }
}
.section-about-us__body .image {
  display: none;
}
@media (min-width: 992px) {
  .section-about-us__body .image {
    display: block;
    position: absolute;
    width: 170px;
    height: 525px;
    left: 50%;
    top: 50%;
    margin-top: -60px;
    transform: translate(-50%, -50%);
  }
}
.section-about-us__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section-about-us__row {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.service-card {
  position: relative;
  margin-bottom: 30px;
  max-width: 28.75rem;
  padding: 0 15px 0 65px;
}
@media (min-width: 768px) {
  .service-card {
    flex: 1 1 50% !important;
  }
}
@media (min-width: 992px) {
  .service-card:nth-child(odd) {
    padding: 0 65px 0 15px;
    margin-right: 200px;
  }
}
@media (min-width: 992px) {
  .service-card:nth-child(odd) .service-card__aside {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .service-card:nth-child(odd) .service-card__title, .service-card:nth-child(odd) .service-card__body {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .service-card {
    flex: 1 1 50%;
  }
}
.service-card__header {
  margin-bottom: 1rem;
}
.service-card__title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: left;
}
.service-card__body {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.33;
}
.service-card__aside {
  position: absolute;
  left: 0;
  top: 0;
}
.service-card__icon {
  width: 50px;
  height: 50px;
  background: #00b19d;
  border-radius: 9999px;
  position: relative;
}
.service-card__icon > svg {
  width: 60%;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  padding-top: 3.125rem;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 5rem;
  }
}
@media (min-width: 992px) {
  .footer {
    padding-top: 120px;
  }
}
.footer .full-width {
  background: #d9d9d9;
}
.footer__header {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer__header {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 992px) {
  .footer__header {
    margin-bottom: 80px;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.125rem;
}
.footer__contact > * {
  width: 100%;
  max-width: 26rem;
  text-align: center;
  padding: 10px;
}
.footer__contact a{
  color: #00b19d;
}
@media (min-width: 768px) {
  .footer__contact {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 992px) {
  .footer__contact {
    margin-bottom: 9.375rem;
  }
}
.footer__contact p {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000000;
}
.footer__brands {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .footer__brands {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 992px) {
  .footer__brands {
    margin-bottom: 9.375rem;
  }
}
.footer__image-container {
  width: 135px;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.footer__image-container img {
  position: absolute;
  left: -75px;
  top: 0;
  width: 270px;
  height: 120px;
  display: inline-block;
  max-width: none;
}
.footer__footer {
  align-items: center;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__footer {
    padding: 12px 0;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__icon {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.footer__icon svg {
  width: 100%;
  height: 100%;
}

#goToTop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  background: #00b19d;
  box-shadow: 0 0 0 1px #fff;
}
#goToTop svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.section-publishers__footer{
  display: flex;
  justify-content: space-around;
  column-gap: 1em;
  max-width: 475px;
  margin: 0 auto;
}
.section-publishers__footer .section-publishers__button{
  padding: 10px 23px !important;
}
@media (max-width: 620px) {
  div.section-publishers__footer .section-publishers__button  {
    font-size: 16px;
  }
  div.section-publishers__footer .section-publishers__button a{
    padding: 8px 22px;
  }
}
.cpahope-ads-aff-main {
  max-width: 600px;
  margin: 2em auto 0;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap; /* Allows items to wrap to the next line on smaller screens */
}

.cpahope-ads-aff-main .cpahope-ads-aff-main-title h2 {
  width: 100%; /* Make the title span the full width */
  margin-bottom: 20px;
  font-size: 32px;
}

.cpahope-ads-aff-main .image-container {
  display: flex;
  width: 100%; /* Make the container span the full width */
  justify-content: space-between;
  max-width: 450px;
}

.cpahope-ads-aff-main a {
  width: 48%; /* Adjust the width as needed for spacing */
  margin-bottom: 10px;
}

.cpahope-ads-aff-main img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 190px;
}

/* Media query for mobile responsiveness */
@media only screen and (max-width: 600px) {
  .cpahope-ads-aff-main .cpahope-ads-aff-main-title h2 {
    font-size: 24px; /* Adjust the font size for smaller screens */
  }
}
