@charset "UTF-8";
/*
Theme Name: Growthcon
Text Domain: growthcon
Version: 1.0
Tested up to: 6.9.1
Requires PHP: 7.4
Description: Custom WordPress theme for Growthcon
Author: Rosca Bogdan
Author URI: https://www.rbpixel.com
Theme URI: https://www.rbpixel.com
*/
/* ==========================================================================
Main Stylesheet 
========================================================================== */
/* Abstracts - Variables first */
:root {
  /* Color Palette - Base SCSS Variables */
  --color-primary: #000;
  --color-secondary: rgba(255, 124, 3, 1);
  --color-tertiary: rgba(255, 66, 16, 1);
  --color-text: #FFF;
  --color-grey: #7E7E7E;
  --color--footer: #1C1A1A;
  --color-text-secondary: #000;
  --color-background: var(--color-primary);
  --color-background--secondary: rgba(28, 26, 26, 1);
  --color-border: var(--color-text);
  --linear-gradient: linear-gradient(90deg, #FF3A44 0%, #FE9115 100%);
  --linear-gradient-vertical: linear-gradient(182.96deg, #FF2F4A 35.74%, rgba(255, 182, 1, 0) 82.34%);
  --linear-gradient-vertical-reverse: linear-gradient(0deg, #FF2F4A 35.74%, rgba(255, 182, 1, 0) 82.34%);
  /* Link Colors */
  --color-link: var(--color-text);
  --color-link--hover: var(--color-secondary);
  --color-white: #ffffff;
  --color-black: #000000;
  --font-primary: "Syne", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: "Syne", var(--font-primary);
  --font-mono: 'Fira Code', 'Courier New', monospace;
  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.2;
  --lh-snug: 1.375;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
  /*  Border Widths */
  --border-width: 1px;
  --border-width-thick: 2px;
  --border-width-thicker: 4px;
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.625rem;
  --radius-xxl: 2rem;
  --radius-xxxl: 2rem;
  --radius-full: 9999px;
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slowest: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  /* Easing Functions */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /*  Spacing System */
  --space-2xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.375rem); /* 4px → 6px */
  --space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.625rem); /* 8px → 10px */
  --space-sm: clamp(0.75rem, 0.7rem + 0.25vw, 1rem); /* 12px → 16px */
  --space-md: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); /* 16px → 20px */
  --space-lg: clamp(1.5rem, 1.3rem + 1vw, 2.5rem); /* 24px → 40px */
  --space-xl: clamp(2rem, 1.6rem + 2vw, 4rem); /* 32px → 64px */
  --space-2xl: clamp(3rem, 2.4rem + 3vw, 6rem); /* 48px → 96px */
  --space-3xl: clamp(4rem, 3.2rem + 4vw, 8rem); /* 64px → 128px */
  --space-4xl: clamp(6rem, 4.8rem + 6vw, 12rem); /* 96px → 192px */
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* Base - Reset and foundations */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: var(--lh-normal);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.wpcf7-form label {
  color: var(--color-text-secondary);
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form textarea,
.wpcf7-form input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--color-grey);
}
.wpcf7-form textarea:focus,
.wpcf7-form input:focus {
  border-color: var(--color-secondary);
  outline: none;
  color: var(--color-gray);
}
.wpcf7-form .wpcf7-submit {
  border: 1px solid var(--color-text);
  background-color: #000;
  color: var(--color-text);
  text-align: center;
  border-radius: 6.25rem;
  padding: 0.75rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
  background-image: linear-gradient(45deg, var(--color-tertiary), var(--color-secondary));
  border-style: none;
}
.wpcf7-form .wpcf7-submit:hover {
  -webkit-transition: background-position 0.6s ease;
  transition: background-position 0.6s ease;
  background-image: linear-gradient(-45deg, var(--color-tertiary), var(--color-secondary));
  color: var(--color-text);
}
.wpcf7-form .wpcf7-response-output {
  color: var(--color-text-secondary);
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  text-wrap: balance;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
  margin-bottom: 0;
}

h1, .h1 {
  font-size: clamp(2.5rem, 3.7037037037vw + 1.6666666667rem, 5rem);
}

h2, .h2 {
  font-size: clamp(1.5rem, 0.7407407407vw + 1.3333333333rem, 2rem);
}

h3, .h3 {
  font-size: clamp(1.125rem, 0.5555555556vw + 1rem, 1.5rem);
}

h4, .h4 {
  font-size: clamp(1.125rem, 1.2962962963vw + 0.8333333333rem, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

h6, .h6 {
  font-size: 1.125rem;
}

a {
  color: var(--color--text);
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
a:hover {
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
  color: var(--color-secondary);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: clamp(0.75rem, 0.5555555556vw + 0.625rem, 1.125rem);
}
p:last-child {
  margin-bottom: 0;
}
p {
  text-wrap: pretty;
}

.lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

small,
.text-small {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.text-xs {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
}

::-moz-selection {
  background-color: var(--color-secondary);
  color: #FFF;
}

::selection {
  background-color: var(--color-secondary);
  color: #FFF;
}

::-moz-selection {
  background-color: var(--color-secondary);
  color: #FFF;
}

em {
  font-style: italic;
}

strong {
  font-weight: var(--fw-bold);
}

mark {
  background-color: var(--color-warning-light);
  color: var(--color-warning-dark);
  padding: 0.125em 0.25em;
  border-radius: var(--radius-sm);
}

blockquote {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--color-primary-300);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--color-text-primary);
}
blockquote p {
  margin-bottom: var(--space-sm);
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: var(--fw-medium);
  color: var(--color-text-tertiary);
}
blockquote cite::before {
  content: "— ";
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul a {
  text-decoration: none;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

iframe {
  max-width: 100%;
}

.container {
  max-width: 92.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Flexbox Utilities */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Layout */
.site-header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background-color: var(--color-primary);
  z-index: var(--z-sticky);
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-menu {
  position: relative;
  overflow: hidden;
}

.site-menu__logo {
  display: none;
}

.site-menu__bg {
  position: absolute;
  bottom: -20%;
  right: -10%;
  display: block;
}
@media screen and (min-width: 768px) {
  .site-menu__bg {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: calc(var(--z-sticky) + 1);
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.mobile-menu-toggle[aria-expanded=true] span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded=true] span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    background-color: var(--color-primary);
    z-index: var(--z-sticky);
    padding: 6rem 1.5rem 2rem;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease, visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.4s ease, visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0s 0.4s;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0s 0.4s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .site-menu.is-open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.4s ease, visibility 0s 0s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.4s ease, visibility 0s 0s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0s 0s;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0s 0s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .site-menu .site-menu__logo {
    display: block;
    margin-bottom: 2rem;
  }
  .site-menu .site-menu__logo img {
    height: 2rem;
    width: auto;
  }
  .site-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .site-menu li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
  }
}
.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: clamp(1.25rem, 1.1111111111vw + 1rem, 2rem);
  margin-bottom: 2.5rem;
}
.section-title--big {
  font-size: clamp(1.25rem, 2.037037037vw + 0.7916666667rem, 2.625rem);
}

.gc-content {
  background-color: var(--color-background--secondary);
  border-radius: 1.5rem;
  padding: 4rem 1.5rem 1.5rem;
  margin-top: 2.125rem;
}
@media screen and (min-width: 480px) {
  .gc-content {
    border-radius: 3.125rem;
    padding: 5.625rem 3rem;
  }
}
.gc-content p {
  font-size: 1rem;
}

.gc-footer {
  margin-top: clamp(2.5rem, 4.6296296296vw + 1.4583333333rem, 5.625rem);
  margin-bottom: clamp(1.25rem, 1.8518518519vw + 0.8333333333rem, 2.5rem);
}
.gc-footer__wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 480px) {
  .gc-footer__wrapper {
    border-radius: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .gc-footer__wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}
.gc-footer__left {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  color: var(--color--footer);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .gc-footer__left {
    padding: 4.5rem;
  }
}
.gc-footer__right {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 480px) {
  .gc-footer__right {
    border-radius: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .gc-footer__right {
    padding: 4.5rem;
  }
}
.gc-footer__links {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gc-footer__links ul a {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color--footer);
}
.gc-footer__links ul a:hover {
  color: var(--color-secondary);
}
.gc-footer__copyright {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  color: var(--color-grey);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gc-footer__form-header h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.gc-footer__social {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gc-footer__social h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.gc-footer__social-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Components */
.button {
  border: 1px solid var(--color-text);
  background-color: #000;
  color: var(--color-text);
  text-align: center;
  border-radius: 6.25rem;
  padding: 0.75rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
.button:hover {
  color: var(--color-text);
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
@media screen and (min-width: 480px) {
  .button {
    font-size: 1.5rem;
  }
}

.button.is-icon {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.button.is-icon.is-gradient {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-image: linear-gradient(45deg, var(--color-tertiary), var(--color-secondary));
  border-style: none;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
.button.is-icon.is-gradient:hover {
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
  background-image: linear-gradient(-45deg, var(--color-tertiary), var(--color-secondary));
}

.buton-icon {
  width: 1rem;
  height: 1rem;
}

.buton-icon.is-absolute {
  position: absolute;
  inset: 0%;
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: clamp(2.625rem, 4.4444444444vw + 1.625rem, 5.625rem);
}
@media screen and (min-width: 768px) {
  .section-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.section-header h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 6.25rem);
}
.section-header .section-subtitle {
  font-size: 1.25rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .section-header .section-subtitle {
    max-width: 14rem;
  }
}

.site-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
.site-menu ul a {
  font-size: 1.25rem;
  line-height: 1.5;
  border: 1px solid transparent;
  padding: 5px 20px;
  border-radius: var(--radius-lg);
  display: inline-block;
}
.site-menu ul a:hover {
  border-color: var(--color-secondary);
}
.site-menu ul .current_page_item a {
  border: 1px solid var(--color-white);
}
.site-menu ul .current_page_item a:hover {
  border-color: var(--color-secondary);
}

.gc-hero__component {
  background-color: var(--color-background--secondary);
  border-radius: 1.5rem;
  padding: 4rem 1.5rem 1.5rem;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .gc-hero__component {
    padding: 5.625rem 2.5rem;
    border-radius: 3.125rem;
  }
}

.gc-hero__top-content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 480px) {
  .gc-hero__top-content {
    font-size: 1.375rem;
  }
}

.gc-hero__title {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 480px) {
  .gc-hero__title {
    font-size: 1.375rem;
  }
}
.gc-hero__title h1 {
  font-weight: 800;
  font-size: 25px;
}
@media screen and (min-width: 480px) {
  .gc-hero__title h1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 640px) {
  .gc-hero__title h1 {
    font-size: clamp(2.5rem, 3.7037037037vw + 1.6666666667rem, 5rem);
  }
}
.gc-hero__title div {
  max-width: 55rem;
}
.gc-hero__title span {
  background: var(--linear-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cta-wrapper {
  z-index: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}

.gc-hero__svg {
  z-index: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: auto -30% -20% auto;
  width: 17rem;
  height: 17rem;
}
@media screen and (min-width: 480px) {
  .gc-hero__svg {
    inset: auto -9% -26% auto;
    width: 24rem;
    height: 24rem;
  }
}
@media screen and (min-width: 992px) {
  .gc-hero__svg {
    width: 33.5625rem;
    height: 33.25rem;
  }
}

.gc-partners__wrapper {
  background-color: var(--color-background--secondary);
  border-radius: 1.5rem;
  padding: 4rem 1.5rem 1.5rem;
  margin-top: 2.125rem;
}
@media screen and (min-width: 480px) {
  .gc-partners__wrapper {
    border-radius: 3.125rem;
    padding: 5.625rem 3rem;
  }
}
.gc-partners--main {
  padding: 0.875rem 0 2.5rem;
}
.gc-partners__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  max-width: 29.5625rem;
  margin: 0 auto clamp(2.5rem, 4.6296296296vw + 1.4583333333rem, 5.625rem);
}
.gc-partners__main:last-of-type {
  margin: 0 auto;
}
.gc-partners__cat {
  max-width: 29.5625rem;
  margin: 0 auto clamp(1.25rem, 1.8518518519vw + 0.8333333333rem, 2.5rem);
}
.gc-partners__cat--main div {
  text-align: center;
}
.gc-partners__cat--main .gc-partners__cat_img {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gc-partners__cat--main:last-of-type {
  margin-bottom: 0;
}
.gc-partners__cat--main:last-of-type .gc-partners__cat_img {
  margin: 0;
}
.gc-partners__cat div {
  margin-bottom: 1.25rem;
}
.gc-partners__cat_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .gc-partners__cat_img {
    gap: 2.5rem;
  }
}

.gc-speakers {
  padding: 2.5rem 0 2.5rem;
}
.gc-speakers .gc-speakers__list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
@media screen and (min-width: 480px) {
  .gc-speakers .gc-speakers__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .gc-speakers .gc-speakers__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .gc-speakers .gc-speakers__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.gc-speakers .gc-speakers__list-speaker {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 480px) {
  .gc-speakers .gc-speakers__list-speaker {
    border-radius: 3.125rem;
  }
}
.gc-speakers .gc-speakers__list-speaker:hover .gc-speakers__list-speaker-content {
  cursor: pointer;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.gc-speakers .gc-speakers__list-speaker-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  padding: 1.875rem 1.25rem;
  background: var(--linear-gradient-vertical-reverse);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 480px) {
  .gc-speakers .gc-speakers__list-speaker-content {
    padding: 2.5rem 1.25rem;
  }
}
.gc-speakers .gc-speakers__list-speaker-name {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .gc-speakers .gc-speakers__list-speaker-name {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
.gc-speakers .gc-speakers__list-speaker-desc {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  display: none;
}
.gc-speakers .gc-speakers__list-speaker-sm img {
  height: 32px;
}
.gc-speakers .gc-speakers__list .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.gc-attend-grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  margin-bottom: clamp(2.625rem, 7.2222222222vw + 1rem, 7.5rem);
}
@media screen and (min-width: 992px) {
  .gc-attend-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gc-attend-grid__item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--color-background--secondary);
  border-radius: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .gc-attend-grid__item {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    border-radius: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .gc-attend-grid__item {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .gc-attend-grid__item {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}
.gc-attend-grid__item--nopadding {
  padding: 0;
}
.gc-attend-grid__item--nopadding img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gc-attend-grid__item-number {
  background: linear-gradient(182.96deg, #FF2F4A 35.74%, rgba(255, 182, 1, 0) 82.34%);
  color: var(--color-secondary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 6rem;
  line-height: 1;
  position: absolute;
  inset: auto auto -10% 0%;
}
@media screen and (min-width: 480px) {
  .gc-attend-grid__item-number {
    font-size: 12rem;
    inset: auto auto -20% 0%;
  }
}
@media screen and (min-width: 768px) {
  .gc-attend-grid__item-number {
    font-size: 18.75rem;
    inset: auto auto -30% 0%;
  }
}
.gc-attend-grid__item-content {
  -ms-flex-item-align: end;
      align-self: flex-end;
  max-width: 16rem;
  font-size: 1rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .gc-attend-grid__item-content {
    max-width: 20rem;
  }
}
@media screen and (min-width: 992px) {
  .gc-attend-grid__item-content {
    max-width: 20rem;
  }
}
.gc-attend-grid__item-content p {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .gc-attend-grid__item-content p {
    font-size: 1.125rem;
  }
}

.gc-connect__wrapper {
  background-color: var(--color-background--secondary);
  border-radius: 1.5rem;
  padding: 4rem 1.5rem 1.5rem;
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 480px) {
  .gc-connect__wrapper {
    padding: 5.625rem 3rem;
    border-radius: 3.125rem;
  }
}
.gc-connect__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .gc-connect__grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}
.gc-connect__content {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 480px) {
  .gc-connect__content {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }
}
.gc-connect__content-header {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gc-connect__content-header p {
  font-size: 1.125rem;
}
.gc-connect__content-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  font-size: 1.25rem;
}
@media screen and (min-width: 480px) {
  .gc-connect__content-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }
}
.gc-connect__form {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 3rem 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 480px) {
  .gc-connect__form {
    border-radius: 3.125rem;
    padding: 3rem 2.75rem;
  }
}
@media screen and (min-width: 767px) {
  .gc-connect__form {
    padding: 5rem 3.75rem;
  }
}
.gc-connect__map img {
  width: 100%;
}

.yt-lightbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.yt-lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}
.yt-lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
}
.yt-lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.8;
}
.yt-lightbox__close:hover {
  opacity: 1;
}
.yt-lightbox__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.yt-lightbox__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */