:root {
  --standard-container-width: 1357px;
}

@media (min-width: 768px) {
  :root {
    --standard-container-width: 1357px;
  }
}
@media (min-width: 1024px) {
  :root {
    --standard-container-width: 1357px;
  }
}
@media (min-width: 1279px) {
  :root {
    --standard-container-width: 1357px;
  }
}
:root {
  --white: #EEEEF2;
  --light-on-white: #FAFAFA;
  --gray-on-white: #BABACC;
  --black: #02031E;
  --grey-on-black: #34344B;
  --red: #ED1438;
  --light-on-red: #F73354;
  --grey-on-red: #A60E27;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  min-height: 3rem;
  transition: all 0.3s;
}
.btn svg path {
  transition: all 0.3s;
}
.btn--primary {
  background: #FF6A82;
  background: linear-gradient(135deg, rgb(255, 106, 130) 0%, rgb(239, 62, 91) 50%, rgb(237, 20, 56) 100%);
  border: none;
  color: var(--light-on-white);
}
.btn--primary:not(.no-hover):hover {
  background: var(--grey-on-red);
  background: linear-gradient(270deg, rgb(166, 14, 39) 0%, rgb(166, 14, 39) 100%);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--light-on-white);
  color: var(--light-on-white);
}
.btn--outline:hover {
  border-color: var(--gray-on-white);
  color: var(--gray-on-white);
}
.btn--outline:hover svg path {
  fill: var(--gray-on-white);
}

:root {
  --regular-font: "Helvetica Neue";
  --headline-font: "Impact";
  --font-optical-sizing: auto;
  --regular-font-size: 1rem;
  --regular-line-height: 1.3;
  --regular-font-weight: 400;
}

@font-face {
  font-family: "Impact";
  src: url("../../assets/fonts/Impact.woff2") format("woff2"), url("../../assets/fonts/Impact.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../../assets/fonts/HelveticaNeue-Light.woff2") format("woff2"), url("../../assets/fonts/HelveticaNeue-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../../assets/fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../../assets/fonts/HelveticaNeue-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../../assets/fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("../../assets/fonts/HelveticaNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../../assets/fonts/HelveticaNeue-Roman.woff2") format("woff2"), url("../../assets/fonts/HelveticaNeue-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../../assets/fonts/HelveticaNeue-Thin.woff2") format("woff2"), url("../../assets/fonts/HelveticaNeue-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --transition-timing: .3s;
  --border-radius: 8px;
  --header-font-size: 1.5rem ;
}

html {
  height: 100%;
  font-size: 16px;
  box-sizing: border-box;
}
html * {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  max-width: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--regular-font);
  font-size: var(--regular-font-size);
  line-height: var(--regular-line-height);
  font-weight: var(--regular-font-weight);
  font-optical-sizing: var(--font-optical-sizing);
  color: var(--gray-on-white);
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  background: var(--black);
}
body * {
  font-family: var(--regular-font);
  font-optical-sizing: var(--font-optical-sizing);
}
@media (min-width: 768px) {
  body {
    padding-bottom: 1rem;
  }
}

.container {
  width: 100%;
  padding: 0 15px;
  max-width: var(--standard-container-width);
  margin: 0 auto;
  position: relative;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  margin: 0 0 0.5em;
}

h1,
.h1 {
  font-family: var(--headline-font);
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -2px;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 7rem;
    letter-spacing: -3px;
  }
}
@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 9rem;
    letter-spacing: -4px;
  }
}

h2,
.h2 {
  font-family: var(--regular-font);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  h2,
  .h2 {
    font-size: 4.5rem;
  }
}

h3,
.h3 {
  font-family: var(--regular-font);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h3,
  .h3 {
    font-size: 2.5rem;
  }
}

h4,
.h4 {
  font-family: var(--regular-font);
  font-size: 1.5rem;
  line-height: 1;
}

h5,
.h5 {
  font-family: var(--headline-font);
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 768px) {
  h5,
  .h5 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  h5,
  .h5 {
    font-size: 5.75rem;
  }
}

.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-list > li {
  line-height: 1.5;
  font-weight: 400;
  font-size: calc(0.85rem * 1);
  color: #000000;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .brand-list > li {
    font-size: calc(1.05rem * 1);
  }
}
.brand-list > li:before {
  --bulet-background-size:1.3rem;
  content: " ";
  width: var(--bulet-background-size);
  height: var(--bulet-background-size);
  position: absolute;
  left: 0;
  top: calc(50% - var(--bulet-background-size) / 2);
  background-image: url(/wp-content/themes/sbc/assets/images/arrow.svg);
  background-repeat: no-repeat;
  background-size: var(--bulet-background-size) var(--bulet-background-size);
}

img {
  max-width: 100%;
  height: auto;
}

.section-headline {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .section-headline {
    flex-direction: row;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .section-headline__label {
    width: calc(33% - 1rem);
  }
}
.section-headline__label h6 {
  color: var(--grey-on-black);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
}
@media (min-width: 1024px) {
  .section-headline__headline {
    width: 43%;
  }
}
.section-headline__headline h2,
.section-headline__headline .h2 {
  color: #150404;
}
@media (min-width: 1024px) {
  .section-headline__copy, .section-headline__image {
    width: 20%;
  }
}
.section-headline__copy p, .section-headline__image p {
  margin: 0;
}
.section-headline.dark-option h6,
.section-headline.dark-option h2,
.section-headline.dark-option .h2 {
  color: var(--light-on-white);
}

.editable-content {
  font-family: var(--regular-font);
  color: var(--brand-dark-blue);
}
.editable-content h1 {
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 2.25rem;
  max-width: 45rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .editable-content h1 {
    font-size: 3.1rem;
    margin: 0 auto 1rem;
  }
}
.editable-content h1 {
  line-height: 1.2;
  font-weight: 400;
  color: var(--brand-dark);
  margin: 0 auto 1.5rem;
  font-size: calc(2rem * 1.5);
}
@media (min-width: 1024px) {
  .editable-content h1 {
    font-size: calc(2.25rem * 1.5);
  }
}
.editable-content h2 {
  line-height: 1.2;
  font-weight: 400;
  color: var(--brand-dark);
  margin: 0 auto 1.5rem;
  font-size: calc(2rem * 1.25);
}
@media (min-width: 1024px) {
  .editable-content h2 {
    font-size: calc(2.25rem * 1.25);
  }
}
.editable-content h3 {
  line-height: 1.2;
  font-weight: 400;
  color: var(--brand-dark);
  margin: 0 auto 1.5rem;
  font-size: calc(2rem * 1);
}
@media (min-width: 1024px) {
  .editable-content h3 {
    font-size: calc(2.25rem * 1);
  }
}
.editable-content h4, .editable-content h5, .editable-content h6 {
  line-height: 1.2;
  font-weight: 400;
  color: var(--brand-dark);
  margin: 0 auto 1.5rem;
  font-size: calc(2rem * 0.75);
}
@media (min-width: 1024px) {
  .editable-content h4, .editable-content h5, .editable-content h6 {
    font-size: calc(2.25rem * 0.75);
  }
}
.editable-content p {
  margin: 0 0 1rem;
}
.editable-content p:last-child {
  margin: 0;
}
.editable-content li {
  margin-bottom: 0.25rem;
}
.editable-content li:last-child {
  margin: 0;
}

.wp-block-group__inner-container {
  width: 100%;
  padding: 0 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.container-narrow .wp-block-group__inner-container {
  max-width: 800px;
}

main.site-main {
  overflow: hidden;
}

a {
  color: inherit;
  transition: all 0.3s;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.1rem;
}
.form-wrap .b-input-block.full {
  width: 100%;
}
.form-wrap .b-input-block.one-half {
  width: 100%;
}
@media (min-width: 768px) {
  .form-wrap .b-input-block.one-half {
    width: calc(50% - 0.5rem);
  }
}
.form-wrap .b-input-block.submit-block {
  text-align: center;
  margin-top: 1rem;
}
.form-wrap .b-input-block label {
  color: var(--grey-on-black);
  display: inline-block;
  margin-bottom: 0.17rem;
}
.form-wrap .b-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-on-white);
  background: transparent;
  font-size: 1rem;
  line-height: 1.3;
  padding: 0.8rem;
}
.form-wrap .b-input:focus, .form-wrap .b-input:focus-visible {
  border: 1px solid var(--grey-on-black);
  outline: none;
}
.form-wrap .b-file-upload::file-selector-button {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: 1s;
  background: #FF6A82;
  background: linear-gradient(135deg, rgb(255, 106, 130) 0%, rgb(239, 62, 91) 50%, rgb(237, 20, 56) 100%);
  border: none;
  color: var(--light-on-white);
}
.form-wrap .b-file-upload::file-selector-button:hover {
  background: var(--grey-on-red);
  background: linear-gradient(270deg, rgb(166, 14, 39) 0%, rgb(166, 14, 39) 100%);
  border: none;
}
.form-wrap textarea.b-input {
  resize: none;
  max-height: 7rem;
}

.radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 7px;
}
.radio__text {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  color: var(--black);
}
.radio__text:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: transparent;
}
.radio__text:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transition: 0.2s;
}

.radio input:checked + .radio__text:after {
  opacity: 1;
}

/* Search page styles */
body.search main {
  padding: 7rem 0 3rem;
}
@media (min-width: 768px) {
  body.search main {
    padding: 10rem 0 5rem;
  }
}
body.search h1.page-title {
  font-size: 2.5rem;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Helvetica Neue";
  color: var(--white);
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  body.search h1.page-title {
    font-size: 4.5rem;
  }
}
body.search h1.page-title span {
  font-weight: 300;
  text-decoration: underline;
}
body.search .search-results__list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 2rem;
}
body.search .search-results__item h5 {
  font-size: 1.5rem;
  color: var(--white);
}
@media (min-width: 768px) {
  body.search .search-results__item h5 {
    font-size: 2rem;
  }
}
body.search .search-results__item a {
  color: var(--white);
  text-decoration: none;
}
body.search .search-results__item a:hover {
  color: var(--gray-on-white);
}
body.search .search-results__item svg {
  margin-left: 0.5rem;
}
body.search .search-results__item svg path {
  fill: var(--gray-on-white);
}

/* Single Blog post styles */
.blog-header {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .blog-header {
    margin-top: 7.5rem;
  }
}
.blog-header .back-btn {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  text-decoration: none;
  color: var(--white);
}
@media (min-width: 768px) {
  .blog-header .back-btn {
    margin-bottom: 4.5rem;
  }
}
.blog-header .back-btn svg {
  transform: rotate(90deg);
}
.blog-header__date-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .blog-header__date-row {
    margin-bottom: 3rem;
  }
}
.blog-header .date,
.blog-header .time-to-read {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-on-white);
}
.blog-header .date svg,
.blog-header .time-to-read svg {
  transform: translateY(-2px);
}
.blog-header .date svg path {
  stroke: var(--gray-on-white);
}
.blog-header .time-to-read svg path {
  fill: var(--gray-on-white);
}
.blog-header__title {
  color: var(--white);
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .blog-header__title {
    margin-bottom: 5rem;
  }
}
.blog-header__img {
  width: 100%;
}
.blog-header__img img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-header__img img {
    border-radius: 2rem;
  }
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .header {
    padding-top: 1rem;
  }
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 1rem 3.5rem 1rem 1rem;
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .header__wrap {
    border-radius: 1rem;
    padding: 0.5rem 1rem;
  }
}
.header__logo {
  display: flex;
  max-width: 167px;
}
@media (min-width: 768px) {
  .header__logo {
    max-width: none;
  }
}
.header__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 1.5rem 1.5rem 2rem;
    background-color: var(--white);
    border-radius: 0 0 1rem 1rem;
    display: none;
  }
}
.header__menu-btn {
  position: absolute;
  right: 1rem;
}
@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
}
.header__menu-btn .sandwitch {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.header__menu-btn .sandwitch .sw-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  transition: transform 0.5s, top 0.2s;
  border-radius: 10px;
}
.header__menu-btn .sandwitch .sw-topper {
  top: 0;
}
.header__menu-btn .sandwitch .sw-bottom {
  top: 50%;
  margin-top: -1px;
  width: 70%;
  left: auto;
  right: 0;
}
.header__menu-btn .sandwitch .sw-footer {
  bottom: 0;
}
.header__menu-btn.is-active .sw-line {
  background: #fff;
}
.header__menu-btn.is-active .sw-topper {
  top: 9px;
  transform: rotate(45deg);
}
.header__menu-btn.is-active .sw-bottom {
  width: 100%;
  top: auto;
  bottom: 8px;
  transform: rotate(-45deg);
}
.header__menu-btn.is-active .sw-footer {
  opacity: 0;
  top: 0;
  transform: rotate(180deg);
}
.header .nav-menu {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media (min-width: 1024px) {
  .header .nav-menu {
    gap: 1rem;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1279px) {
  .header .nav-menu {
    gap: 2rem;
  }
}
.header .nav-menu .menu-item {
  width: 100%;
}
@media (min-width: 1024px) {
  .header .nav-menu .menu-item {
    width: auto;
  }
}
.header .nav-menu .menu-item.lang-item {
  width: auto;
  margin-top: 1rem;
  display: inline-block;
}
@media (min-width: 1024px) {
  .header .nav-menu .menu-item.lang-item {
    display: none;
  }
}
.header .nav-menu .menu-item.lang-item.current-lang {
  opacity: 0.6;
}
.header .nav-menu a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .header .nav-menu a {
    color: var(--gray-on-white);
    font-weight: 400;
  }
}
.header .nav-menu a:hover {
  color: var(--red);
}
@media (min-width: 1024px) {
  .header .nav-menu a:hover {
    color: var(--light-on-white);
  }
}
.header .nav-menu > .menu-item.gradient > a {
  background: #FF6A82;
  background: linear-gradient(135deg, rgb(255, 106, 130) 0%, rgb(239, 62, 91) 50%, rgb(237, 20, 56) 100%);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .nav-menu > .menu-item.with-icon > a {
  position: relative;
  padding-left: 35px;
}
.header .nav-menu > .menu-item.with-icon > a img {
  position: absolute;
  max-width: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .nav-menu > .menu-item.menu-item-has-children {
  position: relative;
}
.header .nav-menu > .menu-item.menu-item-has-children > a {
  padding-right: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children > a {
    padding-right: 1.5rem;
  }
}
.header .nav-menu > .menu-item.menu-item-has-children > a .subnav-icon.b-is-active {
  transform: scale(-1, -1);
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children > a .subnav-icon.b-is-active {
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children > a .subnav-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
}
.header .nav-menu > .menu-item.menu-item-has-children > a .subnav-icon path {
  fill: var(--black);
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children > a .subnav-icon path {
    fill: var(--gray-on-white);
  }
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children > a:hover .subnav-icon path {
    fill: var(--white);
  }
}
.header .nav-menu > .menu-item.menu-item-has-children .sub-menu {
  list-style-type: none;
  padding: 1rem 0 0 1rem;
  display: none;
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children .sub-menu {
    position: absolute;
    background: rgba(6, 3, 30, 0.9);
    box-shadow: 0px 4px 4px 0px rgba(66, 68, 90, 0.25);
    min-width: 200px;
    display: flex !important;
    flex-direction: column;
    gap: 0.7rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    left: -1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
}
.header .nav-menu > .menu-item.menu-item-has-children .sub-menu .menu-item {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .header .nav-menu > .menu-item.menu-item-has-children .sub-menu .menu-item {
    margin-bottom: 0;
  }
}
.header .nav-menu > .menu-item.menu-item-has-children .sub-menu .menu-item:last-child {
  margin-bottom: 0;
}
.header .nav-menu > .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header .button-side {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1279px) {
  .header .button-side {
    gap: 2rem;
  }
}
.header .button-side .desktop-lang-menu {
  display: none;
}
@media (min-width: 1024px) {
  .header .button-side .desktop-lang-menu {
    display: block;
  }
}
.header .button-side .nav-menu > .menu-item > a {
  text-transform: uppercase;
}
.header .button-side .nav-menu > .menu-item .lang-item {
  display: none;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .header .button-side .nav-menu > .menu-item .lang-item {
    display: block;
  }
}
.header .button-side .nav-menu > .menu-item .lang-item.current-lang {
  opacity: 1;
}
.header .button-side .nav-menu > .menu-item.menu-item-has-children .sub-menu {
  min-width: 120px;
}
@media (max-width: 768px) {
  .header .popup-btn {
    font-size: 0.875rem;
    min-height: auto;
    padding: 0.4rem 0.9rem;
  }
  .header .popup-btn svg {
    display: none;
  }
}

.page-in-scroll .header__wrap {
  background: rgba(6, 3, 30, 0.9);
  box-shadow: 0px 4px 4px 0px rgba(66, 68, 90, 0.25);
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}

.footer {
  background-color: var(--light-on-white);
  color: var(--grey-on-black);
  padding: 4rem 0 3rem;
  border-radius: 2rem;
  position: relative;
  z-index: 1;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 3rem 0 8rem;
  border-radius: 2rem 2rem 0 0;
}
@media (min-width: 768px) {
  .footer {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 5.7rem 0 4.5rem;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 3rem;
    border-radius: 2rem;
  }
}
.footer .section-headline__headline {
  display: none;
  width: 60%;
}
@media (min-width: 768px) {
  .footer .section-headline__headline {
    display: block;
  }
}
.footer .section-headline__headline h3 {
  color: var(--black);
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  flex-direction: column-reverse;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
    margin-top: 5.4rem;
  }
}
@media (min-width: 768px) {
  .footer__copyright {
    width: calc(33% - 1rem);
  }
}
.footer__copyright p {
  margin: 0;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer__navigation .nav-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -moz-column-gap: 2.9rem;
       column-gap: 2.9rem;
  row-gap: 1rem;
  -moz-column-count: 2;
       column-count: 2;
}
@media (min-width: 768px) {
  .footer__navigation .nav-menu {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.footer__navigation .nav-menu .menu-item {
  margin-bottom: 1rem;
}
.footer__navigation .nav-menu .menu-item.gradient > a {
  background: #FF6A82;
  background: linear-gradient(135deg, rgb(255, 106, 130) 0%, rgb(239, 62, 91) 50%, rgb(237, 20, 56) 100%);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__navigation .nav-menu a {
  color: var(--grey-on-black);
  text-decoration: none;
  font-weight: 500;
}
.footer__navigation .nav-menu a:hover {
  background: #FF6A82;
  background: linear-gradient(135deg, rgb(255, 106, 130) 0%, rgb(239, 62, 91) 50%, rgb(237, 20, 56) 100%);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__navigation .nav-menu .linkedin a {
  position: relative;
  padding-left: 30px;
}
.footer__navigation .nav-menu .linkedin a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/linkedin1.svg);
  width: 21px;
  height: 21px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer__navigation .nav-menu .linkedin a:hover:before {
  background-image: url(../../assets/images/linkedin-hover.svg);
}
.footer__image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 12rem;
}
@media (min-width: 768px) {
  .footer__image {
    max-width: 265px;
  }
}

.mfp-bg {
  background: var(--black);
  opacity: 40%;
}

.custom-popup {
  max-width: 908px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2rem;
  position: relative;
}
.custom-popup .mfp-close {
  top: 0.5rem;
  right: 0.5rem;
  font-family: inherit;
  font-size: 40px;
  font-weight: 300;
  opacity: 1;
}
@media (min-width: 768px) {
  .custom-popup .mfp-close {
    top: 1.75rem;
    right: 1.875rem;
  }
}
.custom-popup .mfp-close:hover {
  opacity: 0.7;
}
.custom-popup--form {
  padding: 3rem 2rem;
  background-image: url(../../assets/images/form-frame.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 768px) {
  .custom-popup--form {
    padding: 4rem 7.75rem;
  }
}
.custom-popup--form .form-popup__headline {
  color: var(--black);
  text-align: center;
  max-width: 26rem;
  margin: 0 auto 2rem;
}
.custom-popup--form .form-popup__copy {
  color: var(--grey-on-black);
  text-align: center;
  max-width: 35rem;
  margin: -0.5rem auto 2.5rem;
}
.custom-popup--form .switchable-forms__switchers {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .custom-popup--form .switchable-forms__switchers {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.custom-popup--form .switchable-forms__item {
  display: none;
}
.custom-popup--form .switchable-forms__item.is-active {
  display: block;
}/*# sourceMappingURL=styles.css.map */