:root {
  --blue: #3332ff;
  --black: #000000;
  --dark: #010101;
  --gray: #353535;
  --white: #ffffff;
  --violet: #a346ff;
  --violet-gradient: linear-gradient(
    180deg,
    rgba(51, 50, 255, 0.45) 0%,
    rgba(100, 29, 145, 0.45) 189.18%
  );

  /* 2026 colors */
  --color-black: #0f0f0f;
  --color-blue: #3333ff;
  --color-purple: #a346ff;
  --color-sky-blue: #14cbf5;
  --color-light-blue: #ebfaff;
  --color-pink: #ef32af;
  --color-light-pink: #ffa8e2;
  --color-orange: #ff640b;
  --color-salmon: #ffa57d;

  /* Fonts */
  --font-rigsta: "Rigsta", serif;
  --font-gilroy-semibold: "Gilroy-Bold", serif;
  --font-gilroy-bold: "Gilroy-Bold", serif;
  --font-helvetica-neue: "Helvetica Neue", serif;
  --font-helvetica-neue-medium: "HelveticaNeue-Medium", serif;
  --font-helvetica-neue-regular: "HelveticaNeue-Regular", serif;
  --font-helvetica-neue-bold: "HelveticaNeue-Bold", serif;
  --font-helvetica-neue-ltstd: "HelveticaNeue-LTStd", serif;
  --font-helvetica-neue-ltbold: "HelveticaNeue-LTBoldExtended", serif;
  --font-articulatcf-semibold: "ArticulatCF-SemiBold", serif;
  --font-articulatcf-bold: "ArticulatCF-SemiBold", serif;
  --font-articulatcf-normal: "ArticulatCF-Normal", serif;
  --font-articulatcf-regular: "ArticulatCF-Regular", serif;

  /* Roobert Variables */
  --font-roobert: "Roobert", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 20px;
}

body {
  background-color: var(--color-black);
  font-family: var(--font-helvetica-neue);
  font-size: 1.25rem;
}

a {
  text-decoration: none !important;
}

h1 {
  font-family: var(--font-roobert);
  font-weight: 900;
  font-size: 70px;
  line-height: 75px;
}

h2 {
  font-family: var(--font-roobert);
  font-weight: 900;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: 1px;
}

h3 {
  font-family: var(--font-roobert);
  font-weight: 900;
  font-size: 3.625rem;
  line-height: 3.625rem;
}

h5 {
  font-size: 2.25rem;
  line-height: 2.25rem;
  margin-bottom: 0.625rem;
}

h6 {
  font-size: 1.875rem;
  line-height: 2.125rem;
  margin-bottom: 1.5625rem;
}

.subtitle {
  text-transform: none !important;
}

[role="button"] {
  font-size: 16px;
  letter-spacing: 1.4px;
  font-family: var(--font-helvetica-neue);
  font-weight: 700;
  border-radius: 6px;
  width: fit-content;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  text-transform: uppercase;

  &:hover {
    transition: 0.25s ease-out;
  }
}

section,
.p-section {
  padding-bottom: 85px;
  padding-top: 85px;
}

li,
ul {
  margin: auto;
  padding: revert;
  list-style: disc;
}

#footer li,
#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin-bottom: 1.5625rem;
}

.col p:last-child {
  margin-bottom: 0;
}

.white-background {
  background-color: var(--white);
}

.copy {
  font-family: "HelveticaNeue";
  font-size: 1.875rem;
  line-height: 2.125rem;
}

.wrapper {
  min-height: 500px;
  padding-top: 3.125rem;
}

.primary-button-light-bkg {
  background: var(--color-blue);
  border: 2px solid var(--color-blue);
  padding: 12px 25px;

  &:hover {
    background: transparent;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    opacity: 1;
  }
}

.primary-button-dark-bkg {
  line-height: 28px;
  background: var(--color-blue);
  border: 2px solid var(--color-blue);
  padding: 10px 25px;
  color: white;

  &:hover {
    background: transparent;
    border: 2px solid white;
    color: white;
    opacity: 1;
  }
}

/* NAVBAR */

#header.main-header.animation img {
  height: 40px !important;
}

.navbar-brand img {
  height: 1.9rem;
}

.navbar.custom-navbar {
  background: none;
}

.navbar.custom-navbar.opened {
  background-color: var(--color-black);
}

.navbar .navbar-nav .menu-item {
  display: flex !important;
  align-items: center !important;
}
.navbar .navbar-nav .menu-item a {
  font-size: 14px !important;
}

.navbar .navbar-nav .menu-item a.button {
  font-weight: 600;
}

/* HEADER */

.navbar-brand img {
  height: 1.7rem;
}

.navbar.fixed {
  background-color: rgba(0, 0, 0);
}

.hasDot:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--blue);
  display: block;
  margin-top: 5rem;
  margin-bottom: 3.125rem;
}

.hasDot--marginTop {
  padding-top: 1.875rem;
}

button,
.button {
  background: var(--blue);
  border-color: var(--blue);
}

.button:hover {
  border-color: var(--blue);
  color: var(--blue);
  color: #fff !important;
}

.button.button__on-dark-bg:hover,
button.button__on-dark-bg:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
}
.button.button__all-white:hover,
button.button__all-white:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  color: #fff !important;
}
.button.button__just-border,
button.button__just-border {
  border-color: var(--blue);
  color: var(--blue);
}
.button.button__just-border:hover,
button.button__just-border:hover {
  background: var(--blue);
  color: var(--white);
}

.page-header {
  padding-top: 205px;
  padding-bottom: 120px;
}

.navbar .navbar-nav .menu-item a {
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

#footer {
  padding: 25px 0;
  background-color: rgba(74, 74, 74, 0.3);
}
#footer h3 {
  font-family: "Helvetica-Bold", sans-serif;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 11px;
}
#footer p,
#footer a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.button {
  font-family: var(--font-helvetica-neue);
  font-weight: 700;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
}

.bg-blue-transparent {
  background: linear-gradient(
    180deg,
    rgba(51, 50, 255, 0.45) 0%,
    rgba(163, 70, 255, 0.45) 164.11%
  );
}

.bg-red-transparent {
  background: linear-gradient(
    180deg,
    rgba(130, 130, 130, 0.2) 0%,
    rgba(242, 94, 114, 0.114)
  );
}

.bg-purple-transparent {
  background: linear-gradient(
    180deg,
    rgba(51, 50, 255, 0.45) 0%,
    rgba(163, 70, 255, 0.45) 121.76%
  );
}

.p-section {
  padding-bottom: 82px;
  padding-top: 82px;
}

.subtitle {
  font-size: 22px;
  line-height: 22px;
}

.image-text-white {
  letter-spacing: 1px;
  background-position-x: 0%;
  background-position-y: 50%;
  background-size: cover;
  line-height: 52px;
  font-size: 48px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
}

.image-text {
  -webkit-background-clip: text;
  background-position-x: 0%;
  background-position-y: 50%;
  background-size: cover;
  font-family: "Rigsta", serif;
  line-height: 56px;
  font-size: 50px;
  margin-bottom: 20px;
  background-color: white;
  font-family: var(--font-roobert);
  text-transform: uppercase;
}

#apply_to_speak_modal .close {
  position: absolute;
  right: 15px;
  top: 0;
}

.general-container {
  background-repeat: no-repeat;
  background-position:
    -540px -70px,
    -830px -480px,
    -540px 1800px,
    240px 1260px,
    -540px 3500px,
    -765px 3330px,
    680px 4460px,
    1000px 4680px;
}

.grecaptcha-badge {
  display: none !important;
}

.general-padding {
  padding-top: 88px;
  padding-bottom: 50px;
}

/* POPOVER */

.overflow-overlay {
  overflow-y: overlay !important;
}
#popover {
  padding: 0 !important;
  color: #000;
}
#popover h4 {
  font-family: "Rigsta", serif;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 5px;
  color: var(--black);
  font-style: normal;
  font-weight: bolder;
  font-size: 40px;
  line-height: 52px;
}
#popover .modal-dialog {
  max-width: 570px;
}
#popover .modal-content {
  padding: 45px;
  border-radius: 0;
}
#popover .subtitle {
  margin-bottom: 35px;
}
#popover .close {
  position: absolute;
  right: 14px;
  top: 0;
}
#popover .close:hover {
  opacity: 1;
  color: #444 !important;
}
#popover label {
  font-family: "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  text-align: left;
  width: 100%;
}
#popover input {
  padding: 9px;
  border: 1px solid #3332ff;
  border-radius: 6px;
  text-align: left;
  font-size: 18px;
  line-height: 35px;
  width: 100%;
  outline: none;
  margin-bottom: 14px;
}

#popover input[type="submit"] {
  border: 2px solid #006fea;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  height: 3rem;
  -webkit-transition:
    background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition:
    background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--blue);
  border-color: var(--blue);
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding-left: 70px;
  padding-right: 70px;
  width: auto;
  margin-left: 14%;
  margin-top: 30px;
  margin-bottom: 0;
}
#popover input[type="submit"]:hover {
  background: rgba(0, 111, 234, 0);
  text-decoration: none;
  opacity: 1;
  border-color: var(--blue) !important;
  color: #3332ff !important;
}
#popover .wpcf7-not-valid-tip {
  font-family: "Helvetica Neue", sans-serif;
  margin-top: -10px;
  margin-bottom: 3px;
  font-size: 14px;
}

.wpcf7-not-valid-tip {
  font-size: 16px;
}

#popover .wpcf7-response-output {
  border: none;
  font-family: "Helvetica Neue", sans-serif;
  color: #0e73e8;
  font-weight: bold;
  padding: 0;
  margin-top: 11px;
}
#popover .wpcf7 form.invalid .wpcf7-response-output,
#popover .wpcf7 form.unaccepted .wpcf7-response-output {
  border: none;
  font-family: "Helvetica Neue", sans-serif;
  color: #ff2323;
  font-weight: bold;
  padding: 0;
  margin-top: 11px;
}
#popover form > p:nth-child(3) {
  margin-bottom: 25px;
  padding: 0;
}
#popover .wpcf7-form.sent > *:not(.wpcf7-response-output) {
  display: none;
}
#popover .wpcf7 .ajax-loader {
  position: absolute;
  margin-top: 10px;
}

#popover .wpcf7-checkbox > span {
  font-size: 13px !important;
}

#popover .wpcf7-checkbox > span > input {
  width: 32px !important;
  margin-bottom: 0 !important;
}

#popover p {
  margin-bottom: 0;
  font-size: 16px;
}

#popover .subtitle {
  padding: 0 82px;
}

.the-fest .wpcf7-checkbox > span {
  font-size: 16px;
}

.the-fest .wpcf7-checkbox > span > input {
  width: 32px;
  margin-bottom: 0;
}

/* FOOTER */

.social li a:before {
  content: url("../images/linkedin-footer-logo.png");
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  margin-top: 2px;
}

.social li a span {
  padding-left: 2rem;
}

.social li:last-child {
  margin-bottom: 0;
}

.social li.facebook a:before {
  content: url("../images/facebook-footer-logo.png");
}

.social li.twitter a:before {
  content: url("../images/twitter-footer-logo.png");
}

/* Cobranding Logo Footer Styles */
.cobranding-logo-section {
  text-align: center;
}

.cobranding-logo {
  max-width: 120px;
  max-height: 105px;
  height: auto;
  width: auto;
}

.slick-prev,
.slick-next {
  width: 27px;
  height: 19px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  z-index: 999;
}

.slick-prev {
  left: 15px;
  background: url("../images/left-arrow.svg") no-repeat center center;
}
.slick-next {
  right: 15px;
  background: url("../images/right-arrow.svg") no-repeat center center;
}

.slick-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Mobile styles for cobranding logo */
@media (max-width: 991px) {
  .cobranding-logo-section {
    text-align: left;
    padding-top: 0;
    margin-bottom: 20px;
  }

  .cobranding-logo {
    max-width: 180px;
    max-height: 140px;
    height: auto;
    width: auto;
  }
}
