/* SCSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Arial", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font-size: 125%;
  --primary-color: #121037;
  --secondary-color: #d0cba4;
  --gray-color: #707070;
  --white-color: white;
  --white: var(--white-color);
  --font-color: var(--primary-color);
  --global-padding: 1rem;
  --global-margin: 1rem;
  --container-size:1700px;
  --container-padding:0;
}

html {
  font-size: var(--font-size);
}

body {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  padding-top: 120px;
  line-height: 1.5;
  color: var(--font-color);
}

h2 {
  margin-block: 2.49rem;
}

p {
  margin-block: 1rem;
}

img {
  width: 100%;
}

address {
  font-style: normal;
}

.hidden {
  display: none;
}

.container {
  max-width: var(--container-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 640px) {
  .container {
    --container-padding: 1rem;
  }
}
.container--medium {
  --container-size: 1300px;
}

.container--small {
  --container-size: 1000px;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}

.off-canvas {
  display: flex;
  flex-direction: column;
  color: var(--white);
  padding: 0 30px 0 30px;
}

svg#logo_compleet path,
svg#clubb-logo path {
  fill: var(--primary-color);
}

.off-canvas_close {
  flex: 0 0 100px;
}
.off-canvas_close .burger--close {
  position: absolute;
  top: 90px;
  right: 60px;
  top: 20px;
  right: 20px;
}
.off-canvas_close .burger--close span {
  background-color: var(--white);
}
.off-canvas_close .burger--close:before {
  background-color: var(--white);
}

@media (min-width: 640px) {
  .off-canvas {
    padding: 0 40px 0 90px;
  }
  .off-canvas_close .burger--close {
    top: 90px;
    right: 60px;
  }
}
.main-nav {
  flex: 1 1 auto;
}
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav ul li {
  margin: 20px 0;
}
.main-nav ul li a {
  display: inline-block;
  font-size: 2.6rem;
  font-size: 2em;
  line-height: 1em;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.main-nav ul li a:hover {
  transform: translateX(0.5rem);
}

@media (min-width: 1024px) {
  .main-nav {
    flex: 1 1 auto;
  }
  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .main-nav ul li {
    margin: 20px 0;
  }
  .main-nav ul li a {
    font-size: 2.6rem;
    line-height: 1em;
    text-decoration: none;
    color: var(--secondary-color);
  }
}
.off-canvas_meta {
  flex: 1 1 150px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
}
.off-canvas_meta li {
  margin: 1em 1em 1em 0;
}
.off-canvas_meta li h2 {
  margin: 5px 0;
  font-weight: 900;
}
.off-canvas_meta li a {
  font-weight: 300;
  text-decoration: none;
  color: inherit;
}
.off-canvas_meta li a:hover {
  text-decoration: underline;
}

.intro {
  padding-bottom: 250px 0;
}
.intro .cell {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.intro .cell h2 {
  font-size: 2em;
  font-weight: 900;
  line-height: 0.9em;
}

.intro__cell--icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro__cell--icon svg {
  width: 300px;
}
.intro__cell--icon img {
  max-width: 600px;
}

.cell--content {
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .intro {
    padding: 80px 0;
  }
  .intro .cell {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  .intro .cell h2 {
    font-size: 3em;
  }
}
.bgi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bgi img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-image {
  position: relative;
  height: 500px;
}

@media (min-width: 640px) {
  .footer-image {
    position: relative;
    height: auto;
  }
  .footer-image .bgi {
    position: relative;
  }
}
@media screen and (max-width: 640px) {
  .footer-image.triangle:before {
    display: none;
    background-color: green;
  }
}
:root {
  --offcanvas-width: 100%;
}

.off-canvas {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: var(--offcanvas-width);
  transform: translateX(var(--offcanvas-width));
  transition: transform 0.5s ease;
  background-color: var(--primary-color);
  z-index: 13;
}
.off-canvas.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  transform: translate(0, 0);
}
.off-canvas.is-closed {
  visibility: hidden;
}

@media (min-width: 1024px) {
  .off-canvas {
    --offcanvas-width: 600px;
  }
}
body {
  font-family: proxima-nova, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 300;
}

h1 {
  font-size: 2.76em;
  color: var(--primary-color);
  text-align: center;
  margin: 1.5em 0;
}

.title {
  font-size: 3rem;
  text-align: center;
  line-height: 1em;
  margin-block: 3.1rem;
}

.title--small {
  font-size: 1.8em;
  text-align: left;
  font-weight: 900;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .title--small {
    font-size: 2.45rem;
  }
}
.title--large {
  font-size: 5em;
  text-align: left;
  font-weight: 900;
}

.title--light {
  font-weight: 300;
}

.sub-text {
  font-weight: 700;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.spaced {
  padding-top: 200px;
  padding-bottom: 200px;
}

.spaced--bottom {
  padding-top: 0;
  padding-bottom: 200px;
}

.big-text {
  font-size: 1.8rem;
  line-height: 1.2em;
}

@media (min-width: 640px) {
  .big-text {
    font-size: 2.5rem;
  }
}
.button-wrapper {
  display: flex;
  margin: 5rem auto;
  justify-content: center;
}

.button {
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 900;
  padding: 0.7em 1.3em;
  border: 3px solid var(--primary-color);
  text-decoration: none;
  color: var(--primary-color);
  text-transform: uppercase;
}
.button:hover {
  background-color: var(--primary-color);
  border: 3px solid var(--primary-color);
  color: var(--white);
}

.button--white {
  border-color: var(--white);
  color: var(--white);
}
.button--white:hover {
  background-color: var(--white);
  border: 3px solid var(--white);
  color: var(--primary-color);
}

.content {
  margin-bottom: 100px;
  padding-left: var(--global-padding);
  padding-right: var(--global-padding);
}
.content a {
  color: inherit;
}
.content .text_block {
  width: 100%;
  padding-bottom: 5em;
}
.content .text_block p {
  line-height: 1.5em;
}

.header {
  position: relative;
  height: 1000px;
}
.header img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.header video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.header .intro {
  animation: fadeIn 1.3s ease-in;
  position: absolute;
  bottom: 80px;
  width: 100%;
  padding: 0 30px;
  color: var(--white);
}
.header .intro__title {
  line-height: 0.9em;
  font-size: 2em;
  font-weight: 900;
  margin: 0;
}
.header .intro__body {
  font-size: 1rem;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.1em;
}

@media (min-width: 640px) {
  .header .intro {
    position: absolute;
    right: 80px;
    bottom: 80px;
    width: 600px;
    color: var(--white);
  }
  .header .intro__title {
    font-size: 3em;
  }
  .header .intro__body {
    font-size: 1.2rem;
  }
}
.header--small {
  height: 500px;
}

.footer {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0 100px 0;
  font-size: 0.8em;
}

.footer__cell {
  width: calc(100% - 1rem);
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 40px 0;
}
.footer__cell p {
  margin: 0;
  padding: 0;
}
.footer__cell a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.footer__cell a:hover {
  text-decoration: underline;
}
.footer__cell span {
  display: inline-block;
}
.footer__cell__text {
  text-align: center;
}
.footer__cell__text p {
  text-align: center;
}

@media (min-width: 640px) {
  .footer__cell {
    width: calc(100% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .footer__cell--phone,
  .footer__cell--marker {
    width: calc(50% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .footer__cell {
    padding: 0;
    width: calc(25% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .footer__cell--marker {
    width: calc(41.6666666667% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .footer__cell--phone {
    width: calc(33.3333333333% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
.footer__cell__text--logo svg {
  height: 30px;
}

@media (min-width: 640px) {
  .footer__cell__text--logo svg {
    height: 36px;
  }
}
.footer__cell--marker::before {
  display: inline-block;
  content: url("/site/templates/assets/marker.svg");
  height: 50px;
  width: 50px;
  margin-right: 20px;
}

.footer__cell--phone::before {
  display: inline-block;
  content: url("/site/templates/assets/phone.svg");
  height: 50px;
  width: 50px;
  margin-right: 20px;
}

@media (min-width: 640px) {
  .footer__cell {
    flex-direction: row;
  }
  .footer__cell__text {
    text-align: left;
  }
  .footer__cell__text p {
    text-align: left;
  }
  .footer__cell--phone::before {
    margin-bottom: 20px;
  }
  .footer__cell--marker::before {
    margin-bottom: 20px;
  }
}
.topnav {
  transition: all 0.3s ease;
  position: fixed;
  z-index: 11;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background-color: rgb(255, 255, 255);
  height: 120px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 40px;
  padding: 10px 20px;
}
.topnav_logo {
  position: relative;
  height: 100%;
  flex: 0 0 110px;
}
.topnav_logo svg {
  transition: all 0.3s ease-in;
  height: 120px;
}
.topnav_logo svg path#logo {
  display: none;
}
.topnav__lang {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 18px;
  font-weight: 400;
  align-items: center;
  justify-content: flex-end;
}
.topnav__lang a {
  display: inline-block;
  color: var(--font-color);
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
.topnav__lang__icon {
  height: 31px;
}
.topnav__lang__icon svg {
  height: 100%;
}
.topnav_burger_wrap {
  margin-left: 20px;
  flex: 0 0 auto;
}

.ext-header {
  padding-top: 0;
}
.ext-header .header {
  max-height: 100vh;
}
.ext-header .topnav {
  background-color: rgba(255, 255, 255, 0);
}
.ext-header .topnav_logo svg {
  height: 220px;
  height: 140px;
}
.ext-header .topnav_logo svg path#logo {
  display: block;
}
.ext-header.scrolled .topnav {
  background-color: rgb(255, 255, 255);
}
.ext-header.scrolled .topnav_logo svg {
  height: 150px;
}
.ext-header.scrolled .topnav_logo svg path#logo {
  display: none;
}

@media (min-width: 640px) {
  .ext-header .topnav_logo svg {
    height: 220px;
  }
  .topnav__lang {
    font-size: 24px;
  }
  .topnav_logo svg {
    height: 150px;
  }
}
:root {
  --bar-height: 2px;
  --bar-margin: 10px;
  --bar-width: 36px;
  --bar-color: var(--primary-color);
}

.burger {
  display: block;
  width: 40px;
  height: auto;
  cursor: pointer;
}
.burger::before {
  top: 0;
  content: "";
  display: block;
  width: var(--bar-width);
  height: var(--bar-height);
  margin: var(--bar-margin) 0;
  background-color: var(--bar-color);
}
.burger::after {
  content: "";
  display: block;
  width: var(--bar-width);
  height: var(--bar-height);
  margin: var(--bar-margin) 0;
  background-color: var(--bar-color);
}
.burger span {
  display: block;
  width: var(--bar-width);
  margin: var(--bar-margin) 0;
  height: var(--bar-height);
  background-color: var(--bar-color);
}
.burger--close::after {
  display: none;
}
.burger--close::before {
  transform: rotate(-45deg) translate(-8px, 0);
}
.burger--close span {
  transform: rotate(45deg) translate(-8px, 0);
}

.overlay:after {
  transition: all 0.4s ease;
  content: "";
  position: absolute;
  background: linear-gradient(45deg, rgba(18, 16, 55, 0.7) 40%, rgba(208, 203, 164, 0.7) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.corner {
  position: absolute;
  width: 300px;
  height: 200px;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.corner img {
  display: block;
  width: 100%;
  height: 100%;
}

.triangle {
  position: relative;
}
.triangle:before {
  content: "";
  transition: all 0.4s ease;
  transform-origin: bottom right;
  width: 250px;
  width: 249px;
  height: 144px;
  height: 138px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("/site/templates/assets/corner.svg");
  background-repeat: no-repeat;
}
.triangle--primary:before {
  background-image: url("/site/templates/assets/corner.svg");
}
.triangle--secondary:before {
  background-image: url("/site/templates/assets/corner-secondary.svg");
}
.triangle--bottom-left:before {
  transform: scale(-1, 1);
  left: 0;
  transform-origin: inherit;
}
.triangle--top-left:before {
  transform: scale(-1, -1);
  left: 0;
  top: 0;
  transform-origin: inherit;
}
.triangle--top-right:before {
  transform: scale(1, -1);
  right: 0;
  top: 0;
  transform-origin: inherit;
}

.card_logo {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 2.3rem;
}
.card_logo svg path {
  fill: var(--white);
}

.img_block {
  position: relative;
  top: 0;
  left: 0;
}
.img_block img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.text_block {
  color: var(--primary-color);
  position: relative;
  width: 80%;
  padding: var(--global-padding);
  z-index: -1;
}
.text_block.single-tb {
  margin-top: calc(3 * var(--global-margin));
  margin-bottom: calc(3 * var(--global-margin));
}
.text_block p {
  margin: 0;
}
.text_block_title {
  font-size: 1.25rem;
  font-size: 2em;
  line-height: 1em;
  font-weight: 900;
  word-wrap: break-word;
}
.text_block_title span.sub-text {
  display: block;
  text-align: left;
  margin: 0;
  font-size: 0.7em;
  font-weight: normal;
}
.text_block--primary, .vcards_wrapper--serie .vcard:nth-child(even) .text_block {
  background-color: var(--primary-color);
  color: var(--white);
}
.text_block--primary.triangle:before, .vcards_wrapper--serie .vcard:nth-child(even) .triangle.text_block:before {
  background-image: url("/site/templates/assets/corner-secondary.svg");
}
.text_block--secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.text_block--secondary.triangle:before {
  background-image: url("/site/templates/assets/corner.svg");
}

@media (min-width: 640px) {
  .text_block {
    padding: 50px 80px;
  }
}
.vcard {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% - 1rem);
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 500px;
  font-weight: 500;
  margin-bottom: 6rem;
  z-index: 10;
}

.vcard--reverse, .vcards_wrapper--serie .vcard:nth-child(even) {
  flex-direction: row-reverse;
}

.vcard__text_block {
  line-height: 1.4em;
  flex: 0 0 100%;
  padding-bottom: 100px;
}

.vcard__img_block {
  height: 400px;
  flex: 0 0 100%;
}

@media (min-width: 640px) {
  .vcard {
    width: calc(100% - 3.7rem);
    margin-left: 1.85rem;
    margin-right: 1.85rem;
  }
}
@media (min-width: 1024px) {
  .vcard {
    flex-wrap: nowrap;
  }
  .vcard__text_block {
    line-height: 1.4em;
    flex: 0 0 50%;
  }
  .vcard__img_block {
    height: auto;
    flex: 0 0 50%;
  }
}
.card {
  position: relative;
  min-height: 310px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.card .card_text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  color: var(--white);
  font-size: 1.6rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  padding: 0 40px 40px 40px;
  text-align: right;
}
.card .card_text p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1em;
}
.card .card_text_title {
  font-size: 1.6rem;
  line-height: 1em;
  font-weight: 900;
  margin: 0;
}
.card .card_logo svg#clubb-logo path {
  fill: var(--white);
}
.card .card_img {
  width: 100%;
  height: 100%;
}
.card:hover .triangle:before {
  transform: scale(0.8);
  transform-origin: bottom right;
}
.card:hover .overlay::after {
  opacity: 0;
}

@media (min-width: 640px) {
  .card {
    width: calc(50% - 3.7rem);
    margin-left: 1.85rem;
    margin-right: 1.85rem;
  }
}
@media (min-width: 1024px) {
  .card {
    width: calc(33.3333333333% - 3.7rem);
    margin-left: 1.85rem;
    margin-right: 1.85rem;
  }
}
.cards_wrapper--large .card {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 640px) {
  .cards_wrapper--large .card {
    width: calc(100% - 3.7rem);
    margin-left: 1.85rem;
    margin-right: 1.85rem;
    min-height: 450px;
  }
  .cards_wrapper--large .card .inner {
    padding-left: 150px;
  }
  .cards_wrapper--large .card .card_logo {
    width: 3.5rem;
  }
  .cards_wrapper--large .card .card_text p {
    font-size: 1.3em;
  }
  .cards_wrapper--large .card .card_text_title {
    font-size: 1.3em;
  }
}
@media (min-width: 1024px) {
  .cards_wrapper--large .card {
    width: calc(50% - 3.7rem);
    margin-left: 1.85rem;
    margin-right: 1.85rem;
  }
}
.exp__blck {
  position: relative;
  min-height: 1000px;
  text-align: center;
  color: var(--white);
}
.exp__blck .button {
  margin: 100px 0;
}

.exp__blck__title {
  padding: 100px 0;
}

.exp__blck__lettre {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
  text-decoration: none;
}
.exp__blck__lettre svg {
  width: 150px;
}
.exp__blck__lettre svg path {
  fill: var(--white);
}
.exp__blck__lettre span {
  font-size: 1.4rem;
  font-weight: 900;
  margin-top: 20px;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}

.lettre-l svg {
  width: auto;
  height: 187px;
}

@media (min-width: 640px) {
  .exp__blck__lettre {
    width: 33.3333333333%;
    margin-left: 0;
    margin-right: 0;
  }
  .exp__blck__lettre span {
    margin-top: 90px;
  }
}
.work-nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
.work-nav a {
  color: inherit;
  text-decoration: none;
}

.work-item span.title {
  display: inline-block;
  margin-bottom: 1em;
}
.work-item img {
  margin: 2em 0;
}

.work-nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
}
.work-nav__item span.text {
  display: none;
}
.work-nav__item span.icon {
  flex: 0 0 50px;
  height: 30px;
}
.work-nav__item span.icon svg {
  width: 100%;
}

.work-nav__item--prev {
  flex: 1 1 50%;
  justify-content: flex-start;
}
.work-nav__item--prev span.text {
  margin-left: 10px;
}

.work-nav__item--next {
  flex: 1 1 50%;
  justify-content: flex-end;
}
.work-nav__item--next span.text {
  margin-right: 10px;
}

@media (min-width: 640px) {
  .work-nav__item span.text {
    display: inline-block;
  }
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color);
  color: var(--white);
  flex: 1 1 21rem;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .team-card {
    flex: 0 1 19rem;
  }
}
.team-card .tm-image {
  flex: 1 1 1fr;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.team-card .tm-image img {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
}
.team-card .tm-text {
  flex: 1 0 auto;
  position: relative;
  margin-bottom: auto;
  padding: 1rem 1rem 2.5rem 1rem;
}
.team-card .tm-text .title {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.team-card .tm-text .sub-title {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 300;
  margin-top: 0.3rem;
}
.team-card .tm-text p {
  margin: 0;
}
.team-card.triangle:before {
  width: 7.5rem;
  height: 4.15rem;
  background-image: url("/site/templates/assets/corner-secondary.svg");
}
.team-card:nth-child(even) {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.team-card:nth-child(even).triangle:before {
  background-image: url("/site/templates/assets/corner.svg");
}

.ext-header .header.triangle:before {
  transform: scale(0.7);
}

@media (min-width: 640px) {
  .ext-header .header.triangle:before {
    transform: scale(1);
  }
}
#contact .vcard__text_block a {
  text-decoration: none;
}
#contact .vcard__text_block a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main-new-3.css.map */
