/* montserrat-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../lib/fonts/montserrat-v26-latin-300.woff2') format('woff2');
}

/* montserrat-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../lib/fonts/montserrat-v26-latin-500.woff2') format('woff2');
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../lib/fonts/montserrat-v26-latin-700.woff2') format('woff2');
}

/* open-sans-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../lib/fonts/open-sans-v40-latin-300.woff2') format('woff2');
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../lib/fonts/open-sans-v40-latin-regular.woff2') format('woff2');
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #000000;
}

a {
  color: #00d0a0;
  transition: 0.5s;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.member-info-content h4 a {
  transition: 0.0s;
}

a:hover,
a:active,
a:focus {
  color: #00d0a0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5, p,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1.2;
}

h4 {
  font-size: 1.5rem;
}

h5, p {
  font-size: 1.2rem;
}

.center {
  text-align: center;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.mark,
mark {
  padding: .2em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button:focus {
  outline: 0;
}

header {
  display: block;
}

[role=button],
a,
area,
button,
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #00d0a0;
}

::-webkit-scrollbar-thumb:hover {
  background: #80e8d0;
}

/*Library replacements*/

.animated {
  animation-duration: 1s;
  animation-fill-mode: both
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInLeft {
  animation-name: fadeInLeft
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInUp {
  animation-name: fadeInUp
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.fadeIn {
  animation-name: fadeIn
}

.container {
  position: relative;
  z-index: 10;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}




.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
section {
  display: block;
}

nav {
  display: grid;
  justify-content: center;
}

img {
  vertical-align: middle;
  border-style: none;
}

.col-md-6,
.col-md-12,
.col-md-4,
.col-lg-4 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-8 {
  width: 80%;
}

@media (min-width: 768px) {
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}


label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.progress-bar-custom {
  position: fixed;
  top: 50%;
  height: 2px;
  background: #00d0a0;
  z-index: 1000;
}

.count {
  position: fixed;
  top: 50%;
  width: 100%;
  text-align: center;
  font-weight: 100;
  font-size: 3em;
  margin-top: -1.33em;
  color: #00d0a0;
  z-index: 1000;
}

.done {
  top: 0;
  height: 0%;
  transition: all .33s ease;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #00d0a0;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 330;
}

.back-to-top img {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Cookie-Banner */
.cookiebanner-close {
  background-color: #000;
  padding: 12px;
  padding-left: 12px !important;
}

.cookiebanner>span {
  line-height: 40px;
}

.cookiebanner {
  max-height: 130px !important;
}

/* scroll-down Button */
.scroll-down-div {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 1;
  font-size: 40px;
  text-align: center;
  z-index: 11;
  position: absolute;
  margin: auto auto 0 auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 65px;
}

.scroll-down-btn i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .scroll-down-div {
    display: none;
  }
}

#space {
  padding: 60px 0 40px 0;
  position: relative;
}

.container {
  position: relative;
  padding: 10px;
  z-index: 10;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 14px 0;
  height: 64px;
  transition: all 0.5s;
  border-bottom: 2px solid #00d0a0;
}

#header #logo {
  float: left;
}

#header #logo div, .logo-footer {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo div a,
#header #logo div a:hover, .logo-footer a {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #00d0a0;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

.logo-footer {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.h1logo {
  visibility: hidden;
}

.menu-fix {
  visibility: visible !important;
}

#intro-text {
  position: absolute;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  color: white;
}

#intro {
  background: url("../img/background/layered-waves2.svg") center top no-repeat;
  background-color: #172733;
  background-size: cover;
  display: table;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu>li {
  float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
  display: block;
}

/* Nav Meu Container */
#nav-menu-container {
  margin: 0;
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover>a,
.nav-menu>.menu-active>a {
  color: #00d0a0;
}

.nav-menu>li {
  margin-left: 10px;
}

@media (max-width: 905px) {
  .nav-menu>li {
    margin-left: 5px;
  }
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h2 {
  font-size: 32px;

  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.black>h5,
.black>h4,
.black>h3,
.black>h2 .black>h1,
.black>* {
  color: #111;
}

.white>h5,
.white>h4,
.white>h3,
.white>h2,
.white>h1,
.white>main,
.white>* {
  color: #FFF
}



.main-color {
  background-color: #00d0a0;
  color: #000;
  border-radius: 16px;
}

.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #00d0a0;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p,
h2,
h3,
h4,
h5 {
  padding-bottom: 15px;
  border-radius: 5px;
}

@media (max-width: 576px) {

  .section-header p,
  p,
  h2,
  h3,
  h4,
  h5 {
    text-align: center;
  }
}


.hint {
  position: relative;
  color: #FF2F5F;
}

hr {  
  border: 0;
  height: 4px;
  background: linear-gradient(to right, rgb(58 104 89), #00d0a0, rgb(58 104 89));
  margin: 0;
  height: 5px;
}



/* Our groups
--------------------------------*/
.info-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.borderbackground {
  background-color: #0e1010a8;
  border: 4px solid #000;
  border-radius: 15px;
  margin: 10px 10px 10px 10px;
  padding: 0 20px 0 20px;
  width: 420px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.row {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.claim-text {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  width: 60%;
  margin: 10px auto 0 auto;
}
@media (max-width: 600px) {
  .claim-text {
    width: 80%;
    font-size: 13px;
  }
}

/* Mobile group view */
@media (max-width: 565px) {
  .mobilegroups {
    flex: 0 0 100%;
    max-width: 80%;
    margin: 0 0 25px 0 !important;
  }

  .group-img>img {
    width: 150px;
  }

  .borderbackground {
    width: 350px;
  }
}

@media (min-width: 566px) and (max-width: 760px) {
  .mobilegroups {
    flex: 0 0 50%;
    max-width: 45%;
    margin: 0 5px 25px 5px !important;
  }

  .group-img>img {
    width: 19vw;
  }
}

@media (min-width: 761px) and (max-width: 1320px) {
  .mobilegroups {
    flex: 0 0 33%;
    max-width: 32%;
    margin: 0 5px 25px 5px !important;
  }

  .group-img>img {
    width: 15vw;
  }

  .nav-menu a {
    padding: 10px 4px 10px 4px;
  }
}


.custom-offset {
  margin-left: 20%;
}

.about-cols {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}

.about-cols.groups {
  justify-content: space-evenly;
}



.button {
  text-align: center;
  margin: 10px 0 0 0;
}

button,
.button-group {
  width: 14em;
  height: 35px;
  color: white;
  cursor: pointer;
  background-color: transparent;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 2.25rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 15px 0 15px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 64px;
  border-width: 1px;
  border-color: white;
  border-style: solid;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  overflow: visible;
  vertical-align: middle;
  border-radius: 4px;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, .12);
  transition: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
  background-color: white;
  color: black;
}

button:disabled,
button:disabled:hover {
  border-color: grey;
  color: grey;
  background-color: transparent;
}

button:disabled>.cart-image-button,
button:disabled:hover>.cart-image-button {
  background-color: grey;
}

button:hover>.cart-image-button {
  background-color: black;
}

button i {
  font-weight: 300;
}

.button-group-join {
  border: none;
  margin: 35px 0 10px 0;
  color: #37caa8;
  box-shadow: none;
}

.cart-image-button {
  background-color: white;
  -webkit-mask-image: url(../img/sideblade/cd-cart.svg);
  mask-image: url(../img/sideblade/cd-cart.svg);
  height: 29px;
  width: 32px;
  display: inline-flex;
  transition: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  float: left;
}


.h2-description {
  padding-bottom: 0;
  margin: 10px 0px 5px 0;
  color: #FFF;
}

.h2-description.group-text {
  text-align: center;
}

.text-center {
  text-align: center;
}


#what-special {
  background: linear-gradient(150deg,
    #00d0a0 -100%,
    #172733 90%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Floating bubbles animation */
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0px) scale(0.3);
  }
  10% {
    opacity: 0.7;
    transform: translateY(-100px) scale(0.6);
  }
  90% {
    opacity: 0.7;
    transform: translateY(-100vh) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(1.2);
  }
}

#what-special::before,
#what-special::after {
  content: '';
  position: absolute;
  bottom: -15px;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatUp 8s infinite linear;
  z-index: 1;
}

#what-special::before {
  left: 20%;
  animation-delay: 0s;
  animation-duration: 6s;
}

#what-special::after {
  left: 80%;
  animation-delay: 1s;
  animation-duration: 8s;
}

/* Additional floating bubbles container */

#what-special .floating-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#what-special .bubble {
  position: absolute;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatUp linear infinite;
}

#what-special .bubble:nth-child(1) {
  left: 10%;
  width: 12px;
  height: 12px;
  animation-duration: 7s;
  animation-delay: 0s;
}

#what-special .bubble:nth-child(2) {
  left: 25%;
  width: 18px;
  height: 18px;
  animation-duration: 8s;
  animation-delay: 0.5s;
}

#what-special .bubble:nth-child(3) {
  left: 45%;
  width: 9px;
  height: 9px;
  animation-duration: 6s;
  animation-delay: 1s;
}

#what-special .bubble:nth-child(4) {
  left: 65%;
  width: 15px;
  height: 15px;
  animation-duration: 7.5s;
  animation-delay: 1.5s;
}

#what-special .bubble:nth-child(5) {
  left: 85%;
  width: 21px;
  height: 21px;
  animation-duration: 9s;
  animation-delay: 2s;
}

#what-special .bubble:nth-child(6) {
  left: 35%;
  width: 14px;
  height: 14px;
  animation-duration: 6.5s;
  animation-delay: 2.5s;
}

#what-special .bubble:nth-child(7) {
  left: 55%;
  width: 17px;
  height: 17px;
  animation-duration: 8.5s;
  animation-delay: 3s;
}

#what-special .bubble:nth-child(8) {
  left: 75%;
  width: 11px;
  height: 11px;
  animation-duration: 7s;
  animation-delay: 3.5s;
}

#what-special .bubble:nth-child(9) {
  left: 15%;
  width: 20px;
  height: 20px;
  animation-duration: 8s;
  animation-delay: 4s;
}

#what-special .bubble:nth-child(10) {
  left: 40%;
  width: 12px;
  height: 12px;
  animation-duration: 6.5s;
  animation-delay: 4.5s;
}

#what-special .bubble:nth-child(11) {
  left: 60%;
  width: 18px;
  height: 18px;
  animation-duration: 7.5s;
  animation-delay: 5s;
}

#what-special .bubble:nth-child(12) {
  left: 90%;
  width: 9px;
  height: 9px;
  animation-duration: 6s;
  animation-delay: 5.5s;
}

#what-special .bubble:nth-child(13) {
  left: 30%;
  width: 15px;
  height: 15px;
  animation-duration: 7.8s;
  animation-delay: 6s;
}

#what-special .bubble:nth-child(14) {
  left: 70%;
  width: 14px;
  height: 14px;
  animation-duration: 8.2s;
  animation-delay: 6.5s;
}

#what-special .bubble:nth-child(15) {
  left: 5%;
  width: 17px;
  height: 17px;
  animation-duration: 9s;
  animation-delay: 7s;
}

#what-special .container {
  position: relative;
  z-index: 2;
}

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/background/pattern-5.svg") center top repeat fixed;
  background-size: auto, cover;
  padding: 60px 0 40px 0;
  position: relative;
  background-image: url(../img/background/pattern-5.svg), linear-gradient(180deg, rgb(45 28 61) 0%, rgb(34 79 68) 100%);
  background-position: center top;
  background-repeat: repeat;
  background-attachment: fixed;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.0) 100%);
  z-index: 1;
}


/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.webp) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

.cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #00d0a0;
  border: 2px solid #00d0a0;
}


/* Contact Section
--------------------------------*/
#contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactgrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="15" cy="12" r="0.9" fill="%23ffffff" opacity="0.12"/><circle cx="38" cy="22" r="1.2" fill="%23ffffff" opacity="0.08"/><circle cx="67" cy="8" r="0.7" fill="%23ffffff" opacity="0.14"/><circle cx="82" cy="35" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="55" r="0.8" fill="%23ffffff" opacity="0.11"/><circle cx="52" cy="48" r="1.3" fill="%23ffffff" opacity="0.07"/><circle cx="78" cy="68" r="0.9" fill="%23ffffff" opacity="0.13"/><circle cx="18" cy="82" r="1.1" fill="%23ffffff" opacity="0.09"/><circle cx="45" cy="90" r="0.7" fill="%23ffffff" opacity="0.12"/><circle cx="88" cy="78" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactgrain)"/></svg>');
  z-index: 1;
}

#contact .container {
  position: relative;
  z-index: 2;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #00d0a0;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #ecf0f1;
}

#contact .contact-info h2 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #bdc3c7;
}

#contact .contact-info a {
  color: #ecf0f1;
}

#contact .contact-info a:hover {
  color: #00d0a0;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .form #sendmessage {
  color: #00d0a0;
  border: 1px solid #00d0a0;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ecf0f1;
  transition: all 0.3s ease;
}

#contact .form textarea {
  resize: none;
  min-height: 120px;
  max-height: 200px;
  overflow-y: auto;
}

#contact .form input:focus,
#contact .form textarea:focus {
  outline: none;
  border: 1px solid #00d0a0;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 208, 160, 0.1);
}

#contact .form input::placeholder,
#contact .form textarea::placeholder {
  color: rgba(236, 240, 241, 0.7);
}

#contact .form label {
  color: #bdc3c7;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

#contact .form button[type="button"] {
  background: linear-gradient(45deg, #00d0a0, #00b894);
  border: 0;
  padding: 15px 35px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  float: right;
  box-shadow: 0 4px 15px rgba(0, 208, 160, 0.3);
  white-space: nowrap;
  min-width: 180px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}



#contact .form button[type="button"]:hover {
  background: linear-gradient(45deg, #00b894, #00a085);
  box-shadow: 0 6px 20px rgba(0, 208, 160, 0.4);
  transform: translateY(-2px);
}

#contact .tadmin {
  width: 130px;
  height: auto;
}

#contact .center {
  text-align: center;
}

#contact p {
  color: #ecf0f1;
}

input {
  width: 100%;
}

textarea {
  width: 100%
}


/*--------------------------------------------------------------
# Susbcription Plans
--------------------------------------------------------------*/

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox] {
    --active: #00d0a0;
    --active-inner: #fff;
    --focus: 2px rgba(0, 208, 160, 0.3);
    --border: #bbc1e1;
    --border-hover: #00d0a0;
    --background: #fff;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 5px;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }

  input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }

  input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }

  input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }

  input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }

  input[type=checkbox]:disabled+label {
    cursor: not-allowed;
  }

  input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }

  input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
}


.choice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ppm-choice, .engagementtype-choice {
  padding-bottom: 10px;
  margin: auto;
}

.engagementtype-choice.choice-2 {
  padding-top: 20px;
}

.ppm-selection, .engagementtype-selection {
  display: flex;
  overflow: hidden;
  padding: 5px;
  width: 600px;
  justify-content: center;
}

.engagementtype-selection {
  flex-wrap: wrap;
}

.ppm-button, .engagementtype-button {
  border: 3px solid #000;
  background-color: rgb(0 0 0 / 80%);
  border-radius: 0px;
  color: #00d0a0;
  margin: 0;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s, color 0.3s;
  height: 50px;
  width: 33.33%;
}

.ppm-button:first-child,
.engagementtype-button:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.engagementtype-button:nth-child(3) {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.engagementtype-button:nth-child(4) {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.ppm-button:last-child,
.engagementtype-button:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.ppm-button {
  width: 120px;
}

.ppm-button:hover, .engagementtype-button:hover {
  background-color: #f2f2f2;
}

.ppm-button.active, .engagementtype-button.active {
  background-color: #00d0a0;
  color: black;
}

@media (max-width: 600px) {

  .ppm-selection, .engagementtype-selection {
    width: 100%;
  }

  .ppm-button, .engagementtype-button {
      font-size: 14px;
      width: 50%;
      height: 46px;
    }

  .engagementtype-button:nth-child(3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .engagementtype-button:nth-child(4) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .engagementtype-button:nth-child(1) {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .engagementtype-button:nth-child(3) {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .engagementtype-button:nth-child(5) {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .engagementtype-button:nth-child(2) {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .engagementtype-button:nth-child(4) {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .engagementtype-button:nth-child(6) {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  
}


.switch-text-wrapper {
  position: relative;
  display: inline-block;
}

.yearly-switch{
  padding-bottom: 20px;
}

#pay-yearly {
  font-size: 16px;
  font-weight: 600;
  vertical-align: middle;
}

#mark-yearly {
    background-color: #00d0a0;
    color: #000;
    border-radius: 16px;
}

#subscription-plans, #ourgroups {
  background: url("../img/background/pattern-5.svg") center top repeat fixed;
  background-color: #347868;
  background-size: auto, cover;
  padding: 60px 0 40px 0;
  position: relative;
  background-image: url(../img/background/pattern-5.svg), linear-gradient(0deg, rgb(45 28 61) 0%, rgb(34 79 68) 100%);
  background-position: center top;
  background-repeat: repeat;
  background-attachment: fixed;
}

#subscription-plans::before,
#ourgroups::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.0) 70%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.0) 70%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.0) 70%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}


@media (min-width: 1200px) {
  .container-subscriptions {
    max-width: 1500px;
  }
}

.subscription-plans {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.subscription-plan {
  background-color: #000000a8;
  border-radius: 15px;
  min-height: 560px;
  height: auto;
  padding: 5px;
  margin: 5px;
  padding-top: 20px;
  text-align: center;
  width: calc(20% - 12px);
  min-width: 250px;
  transition: transform 0.3s;
  margin-bottom: 35px;
  position: relative;
  cursor: pointer;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.subscription-plan.views {
  min-height: 400px;
}

.subscription-plan:hover {
  transform: scale(1.05);
}

.subscription-plan.bronze:hover {
  background: linear-gradient(140deg, rgba(0,0,0,0.9) 0%, rgba(192, 102, 12, 0.5) 100%);
}

.subscription-plan.silver:hover {
  background: linear-gradient(140deg, rgba(0,0,0,0.9) 0%, rgba(167, 167, 167, 0.5) 100%);
}

.subscription-plan.gold:hover {
  background: linear-gradient(140deg, rgba(0,0,0,0.9) 0%, rgba(255, 235, 0, 0.5) 100%);
}

.subscription-plan.platin:hover {
  background: linear-gradient(140deg, rgba(0,0,0,0.9) 0%, rgba(74, 255, 211, 0.4) 100%);
}

.subscription-plan.diamond:hover {
  background: linear-gradient(140deg, rgba(0,0,0,0.9) 0%, rgba(45, 73, 255, 0.4) 100%);
}

.most-popular:hover {
  transform: scale(1.10);
}

.title-subscription {
  font-size: 37px;
}

.top-part {
  margin-bottom: 40px;
  border-bottom: 1px #fff solid;
  border-radius: 1px;
  padding-bottom: 15px;
  border-block-end-width: 2px;
  margin: 0 30px;
}

.button-plan {
  max-width: 190px;
  height: 40px;
  text-wrap: nowrap;
  bottom: 6%;
  left: 50%;
  width: 80%;
  position: absolute;
  transform: translateX(-50%);
}

.cancelanytime {
  color: gray;
  font-size: 12px;
  margin-top: 2px;
}

.button-plan>button {
  width: 100%;
  height: 40px;
}

.pricing {
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  /*Black Friday
  text-decoration: line-through;*/
}

/*Black Friday*/
.discount {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    display: block;
    color: #FF2F5F;
}

.blackfriday {
  text-shadow: -5px 2px 2px black;
  animation: titlemove 2s infinite;
  animation-timing-function: ease-in-out;
  color: #FF2F5F;
  font-size: 42px;
  font-weight: bold;
  margin: 10px;
}

@keyframes titlemove {
  0% {
    transform: rotate(-3deg);
    text-shadow: 4px 2px 2px #007e60;
  }
  50% {
    transform: rotate(3deg);
    text-shadow: -4px 2px 2px #007e60;
  }
  100% {
    transform: rotate(-3deg);
    text-shadow: 4px 2px 2px #007e60;
  }
}

.monthly {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 15px;
}

.title {
  font-size: 35px;
  margin-bottom: 10px;
  font-weight: 100;
  border: 3px #00d0a070 solid;
  border-radius: 10px;
  border-block-style: none;
}

.description {
  font-size: 16px;
  line-height: 1.5;
}

.features {
  text-align: left;
  margin-top: 20px;
  margin-left: -5px;
}

.feature-item {
  list-style-type: none;
  margin-left: 0;
  padding-left: 10px;
  font-size: 1rem;
  margin-bottom: 5px;
  position: relative;
  text-align: left;
}

.feature-item:before {
  content: "✔";
  color: #00d0a0;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}

.most-popular {
  border-color: #00d0a0;
  margin: 10px;
  padding-top: 27px;
  margin-bottom: 35px;
  transform: scale(1.05);
}

.most-popular-title {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  border-radius: 5px;
}

.most-popular-title>mark {
  background-color: #00d0a0;
  border-radius: 10px;
  text-wrap: nowrap;
}

@media (max-width: 600px) {
  .subscription-plan {
    width: 80%;
    min-height: auto;
    height: auto;
    padding-bottom: 65px;
  }
}

.different-plan {
  margin: 10px 0 40px 0;
}

.different-description {
  font-weight: 500;
  padding: 30px;
  margin: auto;
}

/*--------------------------------------------------------------
# FAQ Section in Subscription Plans
--------------------------------------------------------------*/

.faq-section-plans {
  padding: 20px 0;
  margin: 10px 0;
}

.section-title-faq {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-faq h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: white;
  font-weight: 700;
}

.section-title-faq p {
  font-size: 1.8em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 208, 160, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 208, 160, 0.6);
}

.faq-question {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 208, 160, 0.2);
}


.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.6);
}

.faq-answer {
  padding: 25px;
  display: none;
  color: #e8f4f2;
  line-height: 1.7;
  font-size: 1.05em;
  background: rgba(10, 20, 25, 0.6);
}

.faq-answer p {
  margin: 0;
  color: #e8f4f2;
}

@media (max-width: 768px) {
  .faq-section-plans {
    padding: 40px 20px;
  }

  .section-title-faq h2 {
    font-size: 2em;
  }

  .section-title-faq p {
    font-size: 1em;
    padding: 0 15px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1em;
    padding-right: 50px;
  }

  .faq-answer {
    padding: 20px;
    font-size: 1em;
  }
}

/*--------------------------------------------------------------
# Related Comment System
--------------------------------------------------------------*/

#crc {
  background-size: auto, cover;
  padding: 60px 0 40px 0;
  position: relative;
  background-image: url(../img/background/pattern-5.svg), linear-gradient(0deg, rgb(45 28 61) 0%, rgb(34 79 68) 100%);
  background-position: center top;
  background-repeat: repeat;
  background-attachment: fixed;
}

#crc::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 7%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 7%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 7%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}


.crc-image {
  width: 337px;
}

.borderbackground-crc {
  width: 50%;
}

@media (max-width: 600px) {
  .borderbackground-crc {
    width: 90%;
  }
}

.row-crc {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.row-crc > div {
  margin-bottom: 20px;
}

.Iphone14-Coinbot {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(24px 22px 16px rgba(0,0,0,0.9));
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=24, OffY=22, Color='#111')";
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=24, OffY=22, Color='#111')";
}

/* Add this CSS for the purchase options */
.purchase-options {
  display: flex;
  align-items: center;
  flex-direction: column;
}

label, select, button {
  margin: 5px;
  font-size: 16px;
}

select {
  padding: 5px;
}

.row-comments {
  display: flex;
  justify-content: center;
  width: 300px;
  flex-wrap: nowrap;
  flex-direction: column;
}

.button-comments {
  height: auto;
  position: relative;
  margin-bottom: 25px;
}

.purchase-options select {
  background-color: #1a1a1a; /* Dark background color */
  color: #00d0a0; /* Main color */
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
}

.purchase-options select:focus {
  outline: none;
}

.purchase-options select option {
  background-color: #1a1a1a; /* Dark background color */
  color: #00d0a0; /* Main color */
}

/* Custom dropdown arrow */
.purchase-options select::-ms-expand {
  display: none;
}

.purchase-options select::after {
  content: '\25BC'; /* Unicode character for down arrow */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #00d0a0; /* Main color */
  pointer-events: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}



#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top h2 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h2::before,
#footer .footer-top h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h2::before {
  right: 0;
  background: #555;
}

#footer .footer-top h2::after {
  background: #00d0a0;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #00d0a0;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}