:root {
  /*colors*/
  --color-dark: #212121;
  --color-gold: #D4AF37;
  --color-light-grey: #ededed;
  --color-grey: #d6d6d6;
  --color-light: #F3F3F3;
  --color-primary: #15191E;
  --color-secondary: #234B59;
  --color-secondary-dark: #193742;
  --color-secondary-r: #232759;
  --color-secondary-g: #594c23;
  --color-secondary-b: #233959;
  --color-ternary: #69B1B5;
  --color-ternary-light: #69B1B566;
  --color-wall: #eeeeee;
  --color-blueprint: #186fb6;
  --color-form-input: hsl(213, 18%, 10%, 6.5%);
  --color-form-hover: #548e91;
  --color-form: #526270;
  --color-form-dark: #404c57;
  --color-form-grey: rgba(254, 254, 254, .3);
  /*scale-up service styling*/
  --color-scale-up-gold: #bf9000;
  --color-royalblue: #002366;
  --color-royalblue-dark: #00102f;

  /*images*/
  --image-Service1: url(/media/service1.jpg);
  --image-Service2: url(/media/service2.jpg);
  --image-Service3: url(/media/service3.jpg);
  --image-Service4: url(/media/service4.jpg);
  --backgroundService4: url(/media/background_index_section4.jpg);
  /*banners*/
  --banner-main: url(/media/banner_main.jpg);
  --banner-service1: url(/media/banner_service1.jpg);
  --banner-service2: url(/media/banner_service2.jpg);
  --banner-service3: url(/media/banner_service3.jpg);
  --banner-service4: url(/media/banner_service4.jpg);
  --banner-blog: url(/media/banner_blog.png);
  --banner-contact: url(/media/banner_contact.jpg);

  /*icons*/
  --icon-Hamburger: url(/media/icon_hamburger.png);
  --icon-Close: url(/media/icon_close.png);
  --icon-Language-en: url(/media/icon_flag_en.svg);
  --icon-Language-nl: url(/media/icon_flag_nl.svg);
  --icon-left: url(/media/icon_arrow_left.png);
  --icon-right: url(/media/icon_arrow_right.png);
  /*animation time*/
  --animation-time: 850ms;
  --animation-time-button: 250ms;
  --animation-time-hrline: 150ms;
  --animation-time-nav: 250ms;
  /*styling*/
  --border-radius: 8px;
  --padding-standard: 50px;
  /*start scrolling in default in case main.js fails for scroll animation*/
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline: none !important;
}

body {
  min-height: 100%;
  min-height: 100svh;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

/*------------------------- ANIMATION CLASSES -------------------------*/
/*add animated class to call IntersectionObserver*/
/* Fade animation */
.fade-in,
.fade-in-long,
.fade-in-longer,
.fade-in-longest {
  opacity: 0;
}

.fade-in.appear,
.fade-in-long.appear,
.fade-in-longer.appear,
.fade-in-longest.appear {
  opacity: 1;
}

.fade-in {
  transition: opacity var(--animation-time) ease-in;
}

.fade-in-long {
  transition: opacity var(--animation-time) ease-in;
  transition-delay: calc(var(--animation-time)*1.7);
}

.fade-in-longer {
  transition: opacity var(--animation-time) ease-in;
  transition-delay: calc(var(--animation-time)*3);
}

/* Translate animation */
.translate-up,
.translate-down,
.translate-left,
.translate-right {
  opacity: 0;
  transition: transform var(--animation-time) ease-in-out, opacity var(--animation-time) ease-in;
}

.translate-up.appear,
.translate-down.appear,
.translate-left.appear,
.translate-right.appear {
  opacity: 1;
}

.translate-up.appear,
.translate-down.appear {
  transform: translateY(0);
}

.translate-left.appear,
.translate-right.appear {
  transform: translateX(0);
}

.translate-up {
  transform: translateY(50px);
}

.translate-down {
  transform: translateY(-50px);
}

.translate-left {
  transform: translateX(-100px);
}

.translate-right {
  transform: translateX(100px);
}

.svganimation {
  content: none;
}

.svganimation {
  content: normal;
}

/*stop animation during resizing of window*/
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

.bounce-in-down {
  animation: bounce-in-down 1.7s ease-in-out;
  display: inline-block;
}

@keyframes bounce-in-down {
  0% {
    opacity: 0;
  }

  40% {
    transform: translateY(-1000px);
  }

  60% {
    opacity: 1;
    transform: translateY(10px);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

/*------------------------- HEADER & NAVIGATION -------------------------*/
/*contains logo| navbar with list: nav__list-item, using links, dropdown-link & language button*/
header {
  --text: var(--color-light);
  --text-inverse: var(--color-primary);
  --background: rgb(0, 0, 0, 0.25);
  /* transparent if image is used*/

  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  padding: 1em 5em 1em 2em;
  background: var(--background);
  color: var(--text);
  margin-top: 25px;
  border-radius: 0px 20px 20px 0px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  transition: all var(--animation-time-nav) ease-in-out;
}

/*site logo*/
.site-logo {
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}

/*menu name used for screen readers and hamburger icon only visible on mobile*/
.sr-only {
  display: none;
}

.mobile-nav-toggle {
  display: none;
}

/*navigation list*/
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__list[data-visible="true"] {
  transform: translateX(0%);
}

/*navigation list - language icon*/
#enButton,
#nlButton {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 2rem;
  border: 1px solid var(--color-secondary);
  background: transparent;
  background-size: cover;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  transition: var(--animation-time-button) ease;
}

#enButton:hover,
#nlButton:hover {
  transform: scale(1.1);
}

#enButton {
  background-image: var(--icon-Language-en);
}

#nlButton {
  background-image: var(--icon-Language-nl);
}

/*dropdown menu link*/
.dropdown {
  position: relative;
}

.dropdown.active {
  color: var(--color-form-hover);
}

.nav__button {
  background: none;
  border: none;
  text-decoration: none;
  color: inherit;
  letter-spacing: 2px;
  font-size: 1rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 169%;
  background-color: var(--background);
  color: var(--text);
  padding: 1rem;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, .2);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--animation-time-nav) ease-in-out, transform var(--animation-time-nav) ease-in-out;
}

.dropdown-menu a {
  white-space: nowrap;
}

.dropdown-menu .nav__link {
  padding: 1rem;
}

.dropdown.active>.nav__button+.dropdown-menu {
  opacity: 1;
  transform: translateY(-1.5px);
  pointer-events: auto;
}

/*link styling*/
.nav__link {
  --spacing: 1em;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: calc(var(--spacing) / 2) var(--spacing);
  position: relative;
  letter-spacing: 2px;
  font-size: .9rem;
}

.nav__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--spacing);
  right: var(--spacing);
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform var(--animation-time-hrline) ease-in-out;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/*scrolling effect on header element - add variables for styling*/
.nav-scrolled {
  --text: var(--color-primary);
  --text-inverse: var(--color-light);
  --background: var(--color-light);
}

@media screen and (max-width: 768px) {
  .nav__list {
    position: fixed;
    flex-direction: column;
    align-items: center;
    inset: 0 0 0 0;
    background: hsl(213, 18%, 10%, 0.9);
    backdrop-filter: blur(1rem);
    padding: min(30vh, 10rem) 2rem;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform var(--animation-time-nav) ease;
  }

  .site-logo {
    display: none;
  }

  .nav__link {
    margin: 1.25rem 0 0 0;
    color: var(--color-light);
    font-size: 1.33rem;
  }

  #enButton,
  #nlButton {
    margin: 2rem 0;
  }

  .mobile-nav-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    width: 3rem;
    height: 3rem;
    background-color: hsl(213, 18%, 10%, 0.3);
    backdrop-filter: blur(1rem);
    border-radius: 50%;
    border: 3px solid var(--color-light);
    overflow: hidden;
  }

  .mobile-nav-toggle .hamburger {
    transition: translate 250ms, rotate 250ms;
  }

  .mobile-nav-toggle[aria-expanded="true"] .hamburger {
    translate: 0px -2px;
    rotate: 0.125turn;
  }

  .hamburger .line {
    transition: 1s;
    stroke-dasharray: 60 31 60 300;
  }

  .hamburger[aria-expanded="true"] .line {
    stroke-dasharray: 60 105 60 300;
    stroke-dashoffset: -90;
  }

  header {
    background: none;
    box-shadow: none;
  }

  .dropdown {
    display: flex;
    flex-direction: column;
  }

  .nav__button {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    box-shadow: none;
    display: none;
  }

  .dropdown.active>.nav__button+.dropdown-menu {
    display: flex;
  }

  .dropdown.active>button {
    color: var(--color-form-hover);
  }

  .dropdown.active>.dropdown-menu a {
    color: var(--color-ternary);
  }

  .dropdown-menu .nav__link {
    padding: .1rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .site-logo {
    display: none;
  }
}

/*------------------------- INDEX PAGE SECTION 0: Above the fold -------------------------*/
#section-index-0 {
  background-color: var(--color-light-grey);
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--banner-main);
  background-attachment: fixed;
  background-size: cover;
  background-position: 0% 40%;
  background-repeat: no-repeat;
  color: var(--color-light);
  min-height: 100vh;
}

@media (pointer: coarse) {
  #section-index-0 {
    background-attachment: initial;
  }
}

#section-index-0 div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 4%;
}

#section-index-0>div:nth-child(1) {
  min-height: 75vh;
  justify-content: start;
}

#section-index-0>div:nth-child(2) {
  min-height: fit-content;
  justify-content: center;
  background-color: rgba(25, 80, 90, 0.7);
  position: relative;
}

#section-index-0 h1 {
  font-size: clamp(2.5rem, 6vw, 8rem);
  letter-spacing: .25rem;
  width: max-content;
  max-width: 80%;
  margin-top: 20vh;
  text-shadow: 0px 3px 5px rgb(0, 0, 0, .8);
  margin-bottom: 2rem;
}

#section-index-0 h2 {
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  letter-spacing: .125rem;
  width: max-content;
  max-width: 65%;
  margin-bottom: 1rem;
  text-shadow: 0px 1px 3px rgb(0, 0, 0, .8);
}

#section-index-0 h3 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  letter-spacing: .125rem;
  width: max-content;
  max-width: 95%;
  text-shadow: 0px 1px 3px rgb(0, 0, 0, .8);
  padding: 2rem;
}

@media screen and (max-width: 1200px) {
  #section-index-0 {
    background-position: 55% 0%;
  }
}

/*------------------------- INDEX PAGE SECTION EBOOK -------------------------*/

#section-ebook {
  background-color: var(--color-gold);
  padding: var(--padding-standard);
  color: var(--color-light);
}

#section-ebook a {
  text-decoration: none;
  color: var(--color-primary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#section-ebook img {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 1rem;
}

/* popup form */

.container_ebookForm {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-form);
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 10vw;
  z-index: 999;
  color: var(--color-light);
}

.container_ebookForm span:nth-of-type(1) {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.container_ebookForm span:nth-of-type(2) {
  font-size: clamp(.9rem, 2vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.container_ebookForm span:nth-of-type(3) {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  text-transform: none;
  margin-bottom: 2rem;
}

.container_ebookForm a {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-form-grey);
}

.container_ebookForm a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.container_ebookForm form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
  height: fit-content;
  margin: 4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

#exitEbookForm {
  display: block;
  cursor: pointer;
  margin-left: auto;
  margin-bottom: 1rem;
}

#exitEbookForm svg:hover {
  fill: var(--color-gold);
}

.show {
  opacity: 1;
  position: fixed;
  max-height: 100%;
  overflow: auto !important;
  animation: FormAppear 400ms ease-in;
}

@keyframes FormAppear {
  from {
    opacity: 0;
    max-height: 50%;
  }

  to {
    opacity: 1;
    max-height: 100%;
  }
}

/* prevent select */
.prevent-select {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

/* autofill styles */
.container_ebookForm input:-webkit-autofill,
.container_ebookForm input:-webkit-autofill:hover,
.container_ebookForm input:-webkit-autofill:focus,
.container_ebookForm input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--color-grey) !important;
  -webkit-box-shadow: 0 0 0 30px var(--color-form-dark) inset !important;
}

.container_ebookForm label {
  display: block;
  margin-bottom: .75rem;
}

.container_ebookForm .container-checkbox {
  display: block;
  position: relative;
  padding-left: 42px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 612px;
  font-size: clamp(0.7rem, 2vw, .8rem);
}

/* Hide the browser's default checkbox */
.container_ebookForm .container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.container_ebookForm .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid var(--color-form-grey);
  border-radius: var(--border-radius);
}

/* On mouse-over, add a grey background color */
.container_ebookForm .container-checkbox:hover input~.checkmark {
  border: 1px solid var(--color-light);
}

/* When the checkbox is checked, add a blue background */
.container_ebookForm .container-checkbox input:checked~.checkmark {
  background-color: var(--color-gold);
}

/* Create the checkmark/indicator (hidden when not checked) */
.container_ebookForm .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container_ebookForm .container-checkbox input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid var(--color-light);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_ebookForm input {
  width: 600px;
  max-width: 80vw;
  padding: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  background-color: transparent;
  border: 1px solid var(--color-form-grey);
  border-radius: var(--border-radius);
  color: var(--color-light);
}

.container_ebookForm input:hover,
.container_ebookForm input:focus {
  border: 1px solid var(--color-light);
}

.container_ebookForm button {
  width: fit-content;
  background-color: transparent;
  color: var(--color-light);
  align-self: center;
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  border: 1px solid var(--color-light);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 200ms ease-in;
  margin-top: 1.5rem;
}

.container_ebookForm button:hover {
  background-color: var(--color-light);
  border: 1px solid var(--color-light);
  color: var(--color-form);
}

@media screen and (width<=624px){
  .container_ebookForm form {
    margin: 2rem 0;
  }
}
/*------------------------- INDEX PAGE SECTION 1: Below the fold -------------------------*/
#section-index-1 {
  background-color: var(--color-secondary-dark);
  padding: 100px 0;
}

#section-index-1 div {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
}

#section-index-1 h2 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: .125rem;
  width: 85%;
  text-align: center;
  margin: 1rem 0;
}

#section-index-1 span {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-gold);
  text-transform: uppercase;
}

/*------------------------- INDEX PAGE SECTION 2: Services Links-------------------------*/
#section-index-2 {
  background-color: var(--color-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#section-index-2 h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  letter-spacing: .125rem;
  color: var(--color-gold);
}

/* services containers*/
.containerServices {
  max-width: 1200px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 150px 0;
}

.containerServices:nth-child(even) {
  flex-direction: row-reverse;
}

.imageServices {
  width: 50%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--border-radius);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 0;
}

#imageService1 {
  background-image: var(--image-Service1);
}

#imageService2 {
  background-image: var(--image-Service2);
}

#imageService3 {
  background-image: var(--image-Service3);
}

#imageService4 {
  background-image: var(--image-Service4);
}

.textServices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 400px;
  background-color: var(--color-primary);
  color: #fff;
  margin-left: -80px;
  margin-right: -80px;
  padding: var(--padding-standard);
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: .125rem;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .containerServices {
    flex-direction: column;
    height: auto;
  }

  .imageServices {
    width: 100%;
    height: 350px;
  }

  .textServices {
    width: 90%;
    margin: 0;
    margin-top: -60px;
    letter-spacing: 0;
    padding: calc(var(--padding-standard)*.75);
  }

  .containerServices:nth-child(even) {
    flex-direction: column;
  }
}

/*------------------------- INDEX PAGE SECTION 3: Core Values -------------------------*/
#section-index-3 {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

#section-index-3 .containerTitle h1 {
  color: var(--color-light);
}

.containerCorevalues {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  padding-bottom: 150px;
}

.containerCorevalues div {
  width: 400px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-light);
  color: var(--color-primary);
  margin: var(--padding-standard);
  padding: var(--padding-standard);
  border-radius: 20px 0 20px 0;
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.5), 0px 60px 48px -29px rgba(0, 0, 0, 0.5);
  transition: transform 500ms ease-in-out;
}

.containerCorevalues div:hover {
  transform: scale(1.04);
}

.containerCorevalues div:hover h2::after {
  transform: scaleX(1);
}

.containerCorevalues p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
}

.containerCorevalues h2 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 600;
  word-break: keep-all;
  letter-spacing: .125rem;
  position: relative;
  color: var(--color-secondary);
  width: max-content;
}

.containerCorevalues h2::after {
  content: "";
  position: absolute;
  left: calc(var(--padding-standard) * -1);
  bottom: -8px;
  height: 4px;
  width: calc(100% + var(--padding-standard));
  background: var(--color-ternary);
  transition: transform 500ms ease;
  transform: scaleX(0);
  transform-origin: left;
}

.containerCorevalues div hr {
  width: 80%;
  border: 0;
  border-bottom: 2px solid var(--color-ternary);
}

@media screen and (max-width: 480px) {
  .containerCorevalues div {
    width: 300px;
    margin-top: 0;
  }
}

/*------------------------- INDEX PAGE SECTION 4: Customer Experiences -------------------------*/
#section-index-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  background-color: var(--color-wall);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), var(--backgroundService4);
  background-size: cover;
  /*background-attachment: fixed;*/
}

#section-index-4 .containerTitle {
  margin-bottom: -1rem;
  max-width: 100vw;
  width: 100vw;
  padding: 2rem var(--padding-standard);
  background: var(--color-light);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.5);
}

/* customer experience slider*/
.containerCardSlider {
  display: flex;
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
  height: 850px;
  position: relative;
  z-index: 1;
}

.cardSlider {
  display: flex;
  flex-direction: row;
  transition: all 500ms ease;
  padding-top: 100px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  height: 100%;
}

.cardInside {
  display: flex;
  position: relative;
  flex-direction: column;
  border-radius: var(--border-radius);
  width: 500px;
  height: fit-content;
  padding: var(--padding-standard);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
  box-shadow: 0px 60px 48px -29px rgba(0, 0, 0, 0.5), rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: transform 500ms ease-in-out;
}

.cardInside:hover {
  transform: scale(1.05);
}

.imgProfile {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  align-self: flex-end;
  border: solid 3px var(--color-secondary);
  margin-bottom: 1.5rem;
  box-shadow: 0px 30px 28px -20px rgba(0, 0, 0, 0.5);
}

.imgLogo {
  display: block;
  position: absolute;
  width: 120px;
  top: 140px;
  left: 50px;
  transform: translateY(-50%);
  padding: 10px;
  background-color: #ffffff;
  border: solid 3px var(--color-secondary);
  border-radius: 8px;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.5), rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cardInside h1 {
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  width: max-content;
}

.cardInside h1::after {
  content: "";
  position: absolute;
  left: calc(var(--padding-standard) * -1);
  bottom: -8px;
  height: 4px;
  width: calc(100% + var(--padding-standard));
  background: var(--color-ternary);
}

.cardInside h2 {
  margin-top: .75rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: clamp(.9rem, 3vw, 1.25rem);
  margin-bottom: 1rem;
}

.cardInside p {
  margin-top: 1rem;
  font-size: clamp(.87rem, 2vw, 1rem);
}

.btnSlider {
  position: absolute;
  z-index: 1;
  top: 45%;
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius);
  background-color: #fff;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: -5px -5px 20px rgba(255, 255, 255, .4), 5px 5px 15px rgba(0, 0, 0, .4);
  cursor: pointer;
  background-size: cover;
}

.btnSlider:hover {
  transition: box-shadow 300ms ease-in-out;
  box-shadow: -2px -2px 5px rgba(255, 255, 255, .4), 2px 2px 5px rgba(0, 0, 0, .4);
}

.btnSlider:active {
  box-shadow: inset -1px -1px 2px rgba(0, 0, 0, .4), inset -1px -1px 2px rgba(255, 255, 255, .4);
}

#btnSliderLeft {
  right: 1.5em;
  background-image: var(--icon-right);
}

#btnSliderRight {
  left: 1.5em;
  background-image: var(--icon-left);
}

@media screen and (max-width:768px) {
  .containerCardSlider {
    width: 100%;
    height: 850px;
  }

  .cardInside {
    width: 330px;
  }

  .cardInside:hover {
    transform: scale(1);
  }

  .imgProfile {
    width: 140px;
    height: 140px;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
    margin-right: -20px;
  }

  .imgLogo {
    top: 105px;
    left: 30px;
    width: 100px;
  }

  .cardInside h1,
  .cardInside p {
    margin-top: .5rem;
  }

  .background-bottom {
    height: 400px;
    margin-top: -180px;
  }

  .btnSlider {
    background-color: transparent;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
  }

  #btnSliderLeft {
    right: .4em;
  }

  #btnSliderRight {
    left: .4em;
  }
}

/* logo slider*/
.containerLogoSlider {
  overflow: hidden;
  padding: 40px 0;
  width: 100%;
  white-space: nowrap;
  position: relative;
  margin: -40px 0 60px 0;
}

.containerLogoSlider:before,
.containerLogoSlider:after {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  content: "";
  z-index: 2;
}

.containerLogoSlider:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #cecece);
}

.containerLogoSlider:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #cecece);
}

.containerLogoSlider:hover .logoSlider {
  animation-play-state: paused;
}

.logoSlider {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.logoSlider img {
  height: 120px;
  max-width: 250px;
  margin: 0 30px;
  padding: 15px 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.logoSlider img:nth-of-type(3) {
  height: 120px;
  padding: 15px 10px;
}

.logoSlider img:nth-of-type(6) {
  height: 120px;
  padding: 25px 25px;
}

.logoSlider img:hover {
  transform: scale(1.1);
  transition: var(--animation-time-button) ease;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width:768px) {
  .logoSlider {
    animation: 20s slide infinite linear;
  }
}

/*--------------------- SERVICES PAGE --------------------*/
.servicesBanner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 8%;
  background-color: #000;
  color: var(--color-light);
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right 50%;
}

.servicesBanner>div {
  width: 100%;
}

#servicesBanner1 {
  background-image: var(--banner-service1);
}

#servicesBanner2 {
  background-image: var(--banner-service2);
}

#servicesBanner2 div h1 {
  color: var(--color-secondary);
}

#servicesBanner3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--banner-service3);
}

/* added subtitle*/
.servicesBannerSubtitle {
  height: 175px;
  background-color: var(--color-royalblue);
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--color-scale-up-gold);
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.btn.masters {
  background-color: var(--color-royalblue);
}

.btn.masters:hover {
  background-color: var(--color-scale-up-gold);
  border-color: var(--color-scale-up-gold);
}

@media (width <=768px) {
  .btn.masters {
    margin-top: 1rem;
  }
}

#servicesBanner4 {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 70%), var(--banner-service4);
}

#blogBanner {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 70%), var(--banner-blog);
}

#blogBanner h1 {
  font-size: clamp(3rem, 5vw, 4rem);
}

.servicesBanner div h1 {
  letter-spacing: .25rem;
  max-width: 70%;
  font-size: clamp(1.8rem, 8vw, 3rem);
}

@media screen and (max-width:600px) {
  .servicesBanner div h1 {
    margin-top: -120px;
  }

  #servicesBanner2 {
    background-position: 88% 0%;
  }

  #servicesBanner3 {
    background-position: 90% 0%;
    min-height: 350px;
  }

  .servicesBannerSubtitle {
    height: 150px;
  }

  #servicesBanner4 {
    background-position: 95% 0%;
  }

  #blogBanner {
    background-position: 90% 0%;
  }
}

.containerServicesPage {
  max-width: 1200px;
  width: 85%;
}

/*Question section*/
.servicesQuestions {
  background-color: var(--color-light-grey);
}

.gridQuestions {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--color-secondary);
  margin: 100px 0;
}

.servicesQuestions p {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.servicesQuestions h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 600;
}

.servicesQuestions h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  margin-bottom: 2rem;
}

.servicesQuestions h4 {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.servicesQuestions span {
  color: var(--color-scale-up-gold);
  font-weight: 600;
}

.servicesQuestions ul {
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.servicesQuestions ul li {
  margin-bottom: 1rem;
}

.servicesQuestions ul li::marker {
  color: var(--color-gold);
}

/*Highlight section darker background*/
.service1Highlight {
  background-color: var(--color-secondary-b);
  padding: 3rem 0;
}

.service1Highlight div {
  max-width: 1200px;
  width: 85%;
}

.service2Highlight {
  background-color: var(--color-secondary-b);
  padding: 3rem 0;
}

.service2Highlight div {
  max-width: 1200px;
  width: 85%;
}

.service3Highlight {
  background-color: var(--color-royalblue);
  padding: 3rem 0;
}

.service3Highlight div {
  max-width: 1200px;
  width: 85%;
}

.service4Highlight {
  background-color: var(--color-secondary-b);
  padding: 3rem 0;
}

.service4Highlight div {
  max-width: 1200px;
  width: 85%;
}

.gridService4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  column-gap: 2rem;
}

.gridService4 div:nth-of-type(2) {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}

.gridService4 img {
  width: 80%;
  height: 80%;
}

#gridService4_svg {
  height: auto;
  max-width: 75%;
  align-self: flex-start;
  border-radius: 8px;
}

.gridService4 a {
  justify-self: center;
}

.servicesText {
  padding: 4rem 0;
  color: var(--color-secondary);
}

.servicesText p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  padding-bottom: 1rem;
}

.servicesText h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  padding: 4rem 0 6rem 0;
}

.servicesText h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  max-width: 90%;
}

.servicesText h4 {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 600;
  max-width: 90%;
  margin: 1rem 0;
}

.servicesText h5 {
  font-size: clamp(1.3rem, 2.2vw, 1.5rem);
  font-weight: 600;
  max-width: 90%;
  margin: 2rem 0;
}

.servicesText h2:last-of-type {
  text-align: center;
}

.servicesText ol {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.gridTimeInvestment div p {
  max-width: 20rem;
}

/*Text sections with dark style*/
.darkBackground {
  background-color: var(--color-primary);
  color: var(--color-gold);
}

.gridTimeInvestment {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  margin-bottom: 3rem;
}

.gridTimeInvestment div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
}

.gridTimeInvestment img {
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
}

.gridTimeInvestment p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.containerServicesPage ul {
  list-style-type: none;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  margin-left: 5%;
}

.containerServicesPage ul li {
  margin-bottom: 1rem;
}

.containerServicesPage ul li:before {
  content: "✓ ";
  font-size: 1.7rem;
  margin-left: -1.7rem;
}

.btnMeeting {
  color: var(--color-primary);
  background-color: var(--color-ternary);
  margin-top: var(--padding-standard);
}

.btnMeeting:hover {
  background-color: var(--color-gold);
}

/*--------------------- BLOG PAGE--------------------*/
.sectionBlogIntro {
  background-color: var(--color-secondary-dark);
  color: var(--color-light);
  padding-bottom: 100px;
}

.sectionBlogIntro div {
  width: 85%;
}

/*id blogIntro needed to overwrite containerTitle layout*/
#blogIntro {
  color: var(--color-light);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
}

.sectionBlogIntro div {
  max-width: 1000px;
}

.sectionBlogIntro p {
  margin-bottom: 2rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.sectionBlog {
  background-color: var(--color-wall);
}

.blogFilter {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
  row-gap: 1rem;
  padding: 2rem 0;
  flex-wrap: wrap;
  color: var(--color-secondary);
  background-color: #bbbbbb;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.filter-item {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  background-color: var(--color-wall);
  transition: background-color var(--animation-time-button) ease;
  box-shadow: #234B59CC 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.4) 0px 2px 0px inset;
}

.active-filter {
  background-color: var(--color-gold);
  color: white;
  box-shadow: #234B59 0px 0px 0px 2px, rgba(0, 0, 0, 0.5) 0px 1px 5px inset;
}

.containerBlog {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  grid-gap: 80px;
  padding: 100px;
  margin: 0 auto;
  max-width: 1200px;
}

.blogGridSpace {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.blogCard {
  height: 450px;
  width: 450px;
  font-size: 1.5em;
  color: white;
  border-radius: var(--border-radius);
  padding: 1em;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.3), 0px 60px 48px -29px rgba(0, 0, 0, 0.5);
  transition: all 500ms;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.blogCard:hover {
  transform: rotate(0) scale(1.01);
}

.blogCard h2 {
  font-size: 2rem;
}

.blogCard p {
  font-size: 0.75em;
  margin-top: 0.5em;
  line-height: 1.5em;
}

.blogCard .tags {
  display: flex;
  margin-top: .5rem;
}

.blogCard .tags .tag {
  font-size: clamp(0.6em, 2vw, 0.75em);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.3rem;
  padding: 0 0.5em;
  margin-right: 0.5em;
  line-height: 1.5em;
}

.blogCard:hover .tags .tag {
  background: var(--color-gold);
  color: var(--color-light);
}

.blogCard .date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75em;
  padding: 1em;
  line-height: 1em;
  opacity: .8;
}

.blogCard:before,
.blogCard:after {
  content: '';
  transform: scale(0);
  transform-origin: top left;
  border-radius: 50%;
  position: absolute;
  left: -50%;
  top: -50%;
  z-index: -5;
  transition: all 500ms;
  transition-timing-function: ease-in-out;
}

.blogCard:before {
  background: #ddd;
  width: 250%;
  height: 250%;
}

.blogCard:after {
  background: white;
  width: 200%;
  height: 200%;
}

.blogCard:hover {
  color: var(--color-primary);
}

.blogCard:hover:before,
.blogCard:hover:after {
  transform: scale(1);
}

.sectionBlogEnd {
  padding: 100px 0;
  background-color: var(--color-primary);
  color: var(--color-light);
}

.sectionBlogEnd div {
  max-width: 1000px;
  text-align: center;
}

.sectionBlogEnd p {
  margin-bottom: 2rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .containerBlog {
    padding: 4rem 0;
  }

  .blogCard {
    width: 340px;
  }
}

/*--------------------- BLOGPOST PAGE--------------------*/
.blogPostBanner {
  background-color: var(--color-secondary);
  color: var(--color-light);
  height: 400px;
  width: 100%;
}

.blogPostBanner>div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 1000px;
  width: 85%;
  height: 400px;
  padding-left: 2rem;
  position: relative;
}

.blogPostBanner>div>h1 {
  max-width: 360px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-shadow: 0 5px 5px rgba(0, 0, 0, .3);
  padding-top: 2rem;
}

.blogPostBanner>div>h2 {
  right: 0;
  bottom: var(--padding-standard);
  color: var(--color-gold);
  position: absolute;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  text-shadow: 0 5px 5px rgba(0, 0, 0, .3);
}

.blogPostBanner>div>img {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  bottom: calc(2 * var(--padding-standard));
  filter: drop-shadow(0px 5px 5px rgb(0, 0, 0, 0.3));
}

.titleBarBlogPost {
  width: 33%;
  height: .4rem;
  background-color: var(--color-gold);
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.blogPostContainer {
  background: linear-gradient(180deg, var(--color-secondary) 150px, var(--color-wall) 150px);
  padding-bottom: 100px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.blogPostContainer>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
  max-width: 1000px;
}

.blogPostText {
  height: fit-content;
  margin-bottom: 100px;
  padding: calc(1.5 * var(--padding-standard));
  background-color: var(--color-light);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.blogPostText h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: calc(1.5 * var(--padding-standard));
  color: var(--color-secondary-dark);
}

.blogPostText h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-secondary-dark);
}

.quote {
  background-color: var(--color-secondary-b);
  color: var(--color-light);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.125rem;
  padding: var(--padding-standard);
  border-radius: var(--border-radius);
  position: relative;
}

.quote:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -29px;
  right: 60px;
  background-color: inherit;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

.blogPostText p {
  margin-bottom: 2.5rem;
}

.blogPostText ol {
  margin: 0 0 1.5rem 2rem;
}

.blogPostText li {
  margin-bottom: 1rem;
}

.blogPostText ol>li::marker {
  font-weight: bold;
  color: var(--color-secondary);
}

.blogPostText hr {
  width: 5rem;
  height: 4px;
  background-color: var(--color-gold);
  border: none;
  margin-top: 2rem;
}

.blogHighlight {
  background-color: var(--color-ternary-light);
  margin: 0 calc(-1.5 * var(--padding-standard)) 1.5rem calc(-1.5 * var(--padding-standard));
  padding: 1.5rem calc(1.5 * var(--padding-standard)) 0.1rem calc(1.5 * var(--padding-standard));
}

@media (max-width: 768px) {
  .blogPostBanner>div>img {
    width: 40px;
    height: 40px;
  }

  .blogPostBanner>div {
    width: 90%;
  }

  .blogPostText {
    padding: 2.5rem;
  }

  .blogHighlight {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .quote {
    padding: 2.5rem;
  }
}

/*--------------------- ABOUT PAGE--------------------*/
/*Video section*/
#section-about-1 {
  /*min-height: 600px;*/
  /*height:60vh;*/
  height: 50px;
  background: var(--color-grey);
  align-items: center;
  justify-content: center;
}

#section-about-1 video {
  margin-top: 100px;
  max-width: 80%;
  max-height: 80%;
  display: none;
}

/*Text | Image section*/
#section-about-2 {
  background: var(--color-grey);
  padding-top: 100px;
}

.containerAbout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  max-width: 1200px;
  margin-bottom: 100px;
  row-gap: 100px;
}

/*About - title*/
#titleAbout {
  margin: 0 0 4rem 0;
  padding: 0;
  width: 100%;
}

#titleAbout h1 {
  color: var(--color-primary);
  letter-spacing: .25rem;
}

/*About - text*/
.aboutText {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aboutTextCard {
  width: 80%;
  max-width: 80vw;
  height: fit-content;
  margin: 0 var(--padding-standard);
  padding: var(--padding-standard);
  background-color: var(--color-light);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.aboutTextCard h1,
.aboutTextCard h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--color-secondary-dark);
  margin-bottom: var(--padding-standard);
  text-align: start;
  font-weight: 600;
}

.aboutTextCard hr {
  width: 5rem;
  height: 4px;
  background-color: var(--color-gold);
  border: none;
}

.aboutTextCard p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  padding-bottom: 2rem;
}

/*About - image*/
.aboutImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.aboutImg img {
  max-width: 90%;
  max-height: 650px;
  border-radius: var(--border-radius);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/*Contact section*/
#section-about-3 {
  min-height: 300px;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#section-about-3 p {
  color: var(--color-light);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 2rem 2rem;
  text-align: center;
}

.btnContact {
  color: var(--color-primary);
  background-color: var(--color-ternary);
}

.btnContact:hover {
  background-color: var(--color-gold);
}

@media (max-width:768px) {
  .aboutTextCard {
    width: 95%;
    max-width: 95vw;
  }
}

/*--------------------- CONTACT PAGE --------------------*/
#section-contact-0 {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), var(--banner-contact);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 43%;
  height: 400px;
  justify-content: center;
}

#section-contact-0 h1 {
  color: var(--color-light);
  font-size: clamp(2.5rem, 6vw, 6rem);
  text-align: center;
  margin-top: 50px;
}

#section-contact-0 span {
  color: var(--color-gold);
}

/*form section*/
#section-contact-1 {
  background-color: var(--color-light);
}

.containerContact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1200px;
  padding: 100px 2rem;
  position: relative;
}

/*form styling*/
.contact-heading {
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.contact-heading h2 {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.contact-heading h2 span {
  color: var(--color-ternary);
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.contact-heading p {
  color: var(--color-secondary);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 1rem;
}

.contact-heading a {
  color: var(--color-ternary);
  transition: var(--animation-time-button);
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-heading a:hover {
  color: var(--color-form-hover);
}

.contact-heading a:hover .footerIcon {
  transform: scale(1.1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1rem;
}

.form-img {
  aspect-ratio: 1;
  height: 1rem;
  margin-left: 1rem;
}

.input-wrap {
  position: relative;
}

.input-wrap.w-100 {
  grid-column: span 2;
}

.contact-input {
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--color-form-input);
  padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
  font-family: inherit;
  border-radius: var(--border-radius);
  color: var(--color-secondary);
  font-size: .95rem;
  border: 2px solid transparent;
  box-shadow: 0 0 0 0px var(--color-ternary);
  transition: .3s;
}

.contact-input:hover {
  background-color: var(--color-form-hover);
}

.input-wrap label {
  position: absolute;
  top: 50%;
  left: calc(1.35rem + 2px);
  transform: translateY(-50%);
  color: var(--color-primary);
  pointer-events: none;
  transition: .25s;
}

.input-wrap img {
  position: absolute;
  right: calc(1.35rem + 2px);
  top: 50%;
  transform: translateY(-50%);
}

textarea.contact-input {
  resize: none;
  width: 100%;
  min-height: 150px;
}

textarea.contact-input~label {
  top: 1.2rem;
  transform: none;
}

textarea.contact-input~.icon {
  top: 1.3rem;
  transform: none;
}

.input-wrap.focus .contact-input {
  background-color: var(--color-light);
  border: 2px solid var(--color-ternary);
  box-shadow: 0 0 5px 5px var(--color-form-input);
}

.input-wrap.focus label {
  color: var(--color-ternary);
}

.input-wrap.focus .form-img {
  filter: saturate(3000%) hue-rotate(300deg) brightness(150%);
}

.input-wrap.not-empty label {
  font-size: .7rem;
  top: 0.75rem;
  transform: translateY(0);
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  margin-top: 1rem;
  width: 100%;
  grid-column: span 2;
}

.btnForm {
  display: inline-block;
  padding: 1.1rem 2rem;
  background-color: var(--color-ternary);
  color: var(--color-light);
  border-radius: var(--border-radius);
  border: none;
  font-family: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--animation-time-button);
}

.btnForm:hover {
  background-color: var(--color-gold);
}

.btnForm.upload {
  position: relative;
  background-color: var(--color-form-input);
  color: var(--color-primary);
}

.btnForm.upload:hover {
  background-color: var(--color-form-hover);
}

.btnForm.upload input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
}

@media (max-width:900px) {
  .containerContact {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
    padding: 2rem 0;
  }

  .input-wrap {
    grid-column: span 2;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
    row-gap: .75rem;
  }

  .contact-heading {
    padding: 0 0 0 2rem;
  }

  #section-contact-1 .top img {
    height: 180px;
    width: auto;
  }
}

/*------------------------- Footer -------------------------*/
footer {
  width: 100%;
  background: var(--color-secondary);
  color: var(--color-light);
  padding: 100px 0 30px;
}

footer hr {
  width: 90%;
  border: 0;
  border-bottom: 1px solid var(--color-light);
  margin: 20px auto;
}

.containerFooter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.footerCol {
  padding: 10px 100px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footerCol a {
  text-decoration: none;
  color: var(--color-light);
  transition: 300ms;
}

.footerCol a:hover {
  color: var(--color-ternary);
}

.footerCol a:hover .footerIcon {
  filter: sepia(50%) saturate(2000%) hue-rotate(150deg) brightness(80%);
  transform: scale(1.1);
}

.footerCol h3 {
  width: fit-content;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.footerCol p {
  font-size: clamp(1rem, 1vw, 1.1rem);
  padding: 0.3rem 0;
}

.footerIcon {
  width: 1.5rem;
  margin: .5rem 1rem 0 0;
  cursor: pointer;
  transition: var(--animation-time-button);
  transform: translateY(25%);
}

.copyright {
  text-align: center;
  font-size: .8rem;
  color: var(--color-form-hover);
}

.copyright a {
  text-decoration: none;
  color: var(--color-form-hover);
}

.copyright a:hover {
  color: var(--color-ternary);
}

@media (max-width: 768px) {
  .containerFooter {
    flex-wrap: wrap;
  }

  .footerCol {
    flex-basis: 100%;
    padding: 0 0 0 30px;
    align-items: start;
  }

  .footerCol:nth-of-type(1) {
    align-items: center;
    padding: 0;
  }
}

/*------------------------- PRIVACY -------------------------*/
#section-privacy {
  min-height: 100vh;
  margin-top: 100px;
  margin-bottom: 100px;
}

.containerPrivacy {
  width: 80%;
  max-width: 1200px;
}

.containerPrivacy h1 {
  color: var(--color-secondary);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  margin: 3rem 0 2rem 0;
}

.containerPrivacy h2 {
  color: var(--color-secondary);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 1rem;
}

.containerPrivacy p {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
}

/*------------------------- Styles -------------------------*/
/* Title & Title-Bar */
.containerTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 4.5rem 0;
  max-width: 1200px;
}

.containerTitle h1 {
  color: var(--color-dark);
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: .2em;
  text-align: center;
}

.containerTitle h2 {
  color: var(--color-light);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
}

.containerTitle h3 {
  color: #C1DFE1;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.titleBar {
  width: 10%;
  height: .4rem;
  background-color: var(--color-ternary);
  margin-top: 1rem;
}

.titleBar2 {
  width: 15%;
  height: .3rem;
  background-color: var(--color-secondary);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.titleBarGold {
  width: 15%;
  height: .4rem;
  background-color: var(--color-gold);
  margin-top: 1rem;
}

.titleBarServices {
  width: 55%;
  height: .3em;
  background-color: var(--color-gold);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  text-align: center;
  letter-spacing: .125rem;
  font-size: clamp(1.1rem, 3vw, 1.24rem);
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--color-light);
  overflow: hidden;
  transition: all 0.5s;
  box-shadow: 0px 10px 5px rgba(0, 0, 0, .4);
  border-radius: 10px;
}

.btn:hover {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
  box-shadow: 0px 10px 5px rgba(0, 0, 0, .4);
}

.btn:active {
  box-shadow: 0px 5px 5px rgba(0, 0, 0, .9);
  transform: translateY(2px);
}

.btn-label {
  display: inline-block;
  position: relative;
  padding-right: 0;
  transition: padding-right 500ms;
  color: var(--color-light);
}

.btn-label:after {
  content: "";
  position: absolute;
  right: -50px;
  opacity: 0;
  top: 22%;
  width: 10px;
  height: 10px;
  margin-right: -10px;
  background: rgba(0, 0, 0, 0);
  border: 3px solid var(--color-light);
  border-top: none;
  border-right: none;
  transition: opacity 500ms, top 500ms, right 500ms;
  transform: rotate(225deg);
}

.btn:hover .btn-label,
.btn:active .btn-label {
  padding-right: 30px;
  color: var(--color-light);
}

.btn:hover .btn-label:after,
.btn:active .btn-label:after {
  transition: opacity 0.5s, top 0.5s, right 0.5s;
  opacity: 1;
  right: 10px;
  top: 22%;
}

/* grid display: .row .left | .row .right with .background in color*/
.row {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 50px 30px;
  margin-bottom: 60px;
}

.row .left {
  display: flex;
  align-items: start;
  letter-spacing: .125rem;
}

.row .right {
  position: relative;
  padding: .5rem 0;
  display: flex;
  align-items: start;
}

.background {
  position: absolute;
  top: -1rem;
  left: -2rem;
  bottom: 0rem;
  right: -2rem;
  z-index: -1;
  border-radius: 0 2rem 2rem 0;
  background: var(--color-ternary-light);
}

@media (max-width:768px) {
  .row {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

/* ----- added styling for Scale-Up Masters*/

/* sections with class="serviceText masters" and div elements class="frameworkText masters" */
.servicesText.masters {
  color: var(--color-royalblue-dark);
}

/* change background color and text color of 'background' and 'content' class */
.background.masters {
  background: var(--color-scale-up-gold);
}

.content.masters p {
  color: white;
}

/* change quote for scale up masters, located in section with class: 'servicesQuestions' */
.quote.masters {
  background-color: var(--color-royalblue);
  width: fit-content;
  margin: 2rem auto;
}

.textMasters {
  margin: 100px 0;
  max-width: 1200px;
  width: 85%;
  color: var(--color-royalblue-dark);
}

/* added styling for servicesQuestions class by adding masters*/
.servicesQuestions.masters {
  background-color: var(--color-royalblue);
}

.servicesQuestions.masters .textMasters {
  color: var(--color-light);
}

/* center contact button in masters*/
.containerBtnMasters {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------- UNDER CONSTRUCTION -------------------------*/
.underConstruction {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background-color: var(--color-secondary);
  background: linear-gradient(0deg, var(--color-primary) 15%, var(--color-secondary) 85%);
  color: var(--color-light);
}

.underConstruction h1 {
  font-size: clamp(1.25rem, 5vw, 4rem);
  letter-spacing: 1rem;
  margin-bottom: 2rem;
}

.underConstruction p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

/*------------------------- FRAMEWORK ANIMATION -------------------------*/
.full-screen-section {
  height: 80vh;
  position: relative;
  width: 100%;
}

#yourbenefits {
  height: fit-content;
}

.frameworkText {
  margin: 100px 0;
  max-width: 1200px;
  width: 85%;
}

#top-section {
  height: 550px;
  text-align: center;
}

/*background colors for different animation sections 1-8*/
#_0 {
  height: 1px;
}

/*
#_1st {
  background-color: #f2f2f2;
}
#_2nd {
  background-color: #d9d9d9;
}
#_3rd {
  background-color: #c0c0c0;
}
#_4th {
  background-color: #a7a7a7;
}
#_5th {
  background-color: #8e8e8e;
}
#_6th {
  background-color: #757575;
}
#_7th {
  background-color: #5c5c5c;
}
#_8th {
  background-color: #434343;
}
*/
.containerImagePopup {
  position: relative;
  overflow-x: clip;
  background-color: var(--color-light-grey);
}

#sticky-arrow {
  position: sticky;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 100px 0;
  top: 80%;
  z-index: 11;
}

.down-arrow {
  margin-top: 50px;
}

.down-arrow span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid var(--color-secondary);
  border-right: 5px solid var(--color-secondary);
  transform: rotate(45deg);
  margin: -10px;
  animation: scrollarrow 2s infinite;
}

.down-arrow span:nth-child(2) {
  animation-delay: -.2s;
}

.down-arrow span:nth-child(3) {
  animation-delay: -.4s;
}

@keyframes scrollarrow {
  0% {
    opacity: 1;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

#imagePopup {
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top: 50%;
  left: 30%;
  margin-top: 200px;
  transform: translate(-50%, -40%);
  z-index: 9;
  max-width: min(50vw, calc(100vh - 110px));
  max-height: min(50vw, calc(100vh - 110px));
  margin-left: 2.5vw;
  perspective: 200vw;
}

#imagePopup:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -35px;
  height: 16px;
  width: 80%;
  border-radius: 8px;
  background-color: #bbb;
  box-shadow: rgba(0, 0, 0, .5) 0px 0px 5px 0px inset;
  opacity: clamp(0, calc(var(--fadeOutNorm)), 1);
}

#imagePopup:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -35px;
  height: 16px;
  width: calc(1% * var(--percentageAnimation) * 0.8);
  border-radius: 8px;
  background-color: var(--color-blueprint);
  opacity: clamp(0, calc(var(--fadeOutNorm)), 1);
}

#imagePopup img {
  max-width: 80%;
  z-index: 3;
  height: auto;
  background-color: var(--color-blueprint);
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.3), 0px 60px 48px -29px rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius);
  transform-style: preserve-3d;
  transform: rotateX(calc(-1deg * var(--percentageRotation))) rotateX(calc(var(--percentageAnimation) * -.1deg));
  opacity: clamp(0, var(--fadeOutNorm), 1);
}

/*text popup style*/
#hide-popuptext {
  margin-top: 300px;
}

.textPopup>div {
  position: fixed;
  height: fit-content;
  width: 30vw;
  margin: 0 2.5vw 10vw 0;
  top: calc(50% + 30px);
  right: 15%;
  transform: translate(15%, -50%);
  z-index: 10;
  transition: translate 250ms ease-in-out, opacity 250ms ease-in-out;
  border-radius: var(--border-radius);
  opacity: 0;
}

.textPopup-inside {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--padding-standard);
  position: relative;
}

.textPopup-inside>h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

.textPopup-inside>h3 {
  position: absolute;
  top: 30px;
  right: 30px;
}

.textPopup-inside>p {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/*text popup when div with [data-text-to-show] in view*/
.textPopup>.show {
  translate: 0 0;
  opacity: 1;
  transition: opacity var(--animation-time) ease-in;
}

@media (max-width: 768px) {
  .textPopup>div {
    width: 100vw;
    transform: translate(0%, -100%);
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 0;
    top: 100vh;
    padding: calc(var(--padding-standard)*.5);
  }

  .textPopup-inside>h2 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }

  .textPopup-inside>h3 {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
  }

  .textPopup-inside>p {
    font-size: clamp(.9rem, 2vw, 1.1rem);
  }

  #imagePopup {
    top: 90px;
    transform: translate(0%, 0%);
    max-width: 100vw;
    max-height: 60vh;
    margin: 0;
  }

  #imagePopup img {
    max-width: 95%;
  }

  #sticky-arrow {
    top: 65%;
    opacity: 0.5;
  }
}

/*needed to remove textPopup after scrolling past sections*/
#text-0,
#text-9 {
  display: none;
}

/*element used to trigger transition of popup*/
[data-text-to-show] {
  position: absolute;
  top: 0%;
}

/*------------------------- QUESTIONNAIRE -------------------------*/
.container-questions {
  width: 100%;
  margin: 0;
}

.question {
  margin: 2rem auto 2rem auto;
  max-width: 1200px;
  width: 90vw;
}

.result {
  margin-top: 20px;
  font-weight: bold;
}

.selection {
  display: inline-block;
  padding: 8px 16px;
  background-color: #e0e0e0;
  cursor: pointer;
  border-radius: 4px;
}

input[type="radio"] {
  display: none;
}

.checked {
  background-color: #4caf50;
  color: white;
}