@import 'Montserrat-Raleway.css';

body {

  font-weight: 300;
  font-size: 110%;
  counter-reset: section;
}

:root {
  --block-flow-sm: min(2rem, 4vh);
  --block-flow-md: min(4rem, 8vh);
  --block-flow-lg: min(8rem, 16vh);
  --padding-sm: clamp(1rem, 3%, 1.5rem);
  --padding-md: clamp(1.5rem, 6%, 3rem);
  --padding-lg: clamp(3rem, 12%, 6rem);
  --layout-gap-sm: clamp(1rem, 3vmax, 1.5rem) --layout-gap-md: clamp(1.5rem, 6vmax, 3rem);
  --layout-gap-lg: clamp(3rem, 8vmax, 4rem);
}

.p-auto-sm {
  padding-inline: clamp(1rem, 3%, 1.5rem);
}

.p-auto-md {
  padding: clamp(1.5rem, 6%, 3rem);
}

.p-auto-lg {
  padding: clamp(3rem, 12%, 6rem);
}

section,
.auto-y {
  padding-block: min(50px, calc(1.5vw + 2vh));
}

.m-auto-sm {
  margin: clamp(1rem, 3%, 1.5rem);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: Montserrat;
  margin-bottom: 0.8em;
}

.bg-primary {
  background-color: #CDDAD9 !important;
  background-color: #c5d5db !important;
}

.bg-secondary {
  background-color: #ce9ea1 !important;
}

a:hover {
  color: #ce9ea1 !important;
}

.btn-primary {
  border-color: #6fa8a3;
  background-color: #6fa8a3;
  color: #fff;
}

.btn-outline-primary,
.text-primary {
  color: #6fa8a3 !important;
  border-color: #6fa8a3;
}

.btn-outline-primary:hover {
  color: #ffffff !important;
  border-color: #CDDAD9;
  background-color: #CDDAD9;
}

.xborder {
  border-width: 3vw !important;
  border-radius: 4vw !important;
}
/* === Blog ===*/
.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  height: 240px;
}

.content {
  align-self: center;
  padding: 0em 2em;
}

/* === Teamgalerie ===*/
.media>img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
  aspect-ratio: 1.7 / 1;
}

.container-auto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.container-auto>* {
  flex: 1 1 250px;
}

.card-auto {
  display: flex;
  flex-wrap: wrap;
  flex-basis: calc(960px * 999 - 100% * 999);
  margin: 1em;
}

.card-auto>* {
  flex: 1 1 250px;
}

.content {
  align-self: center;
  padding: 1em 2em;
}

#team {
  background: linear-gradient(to bottom, #fff 0%, #fff 34%, #ddd 34%, #ddd 100%);
}

@media only screen and (max-width: 975px) {
  .card-auto {
    margin-inline: 5vw;
  }
}

/* === Navtabs ===*/
.nav-tabs,
.nav-link.active {
  border: transparent;
  background: transparent !important;
}


.nav-link.active {
  color: #6fa8a3 !important;
  font-weight: bold;
}

.tab-pane {
  margin: 1rem;
  max-width: 90ch;
}

/* === Back to top Icon ===*/

.scrollToTopBtn {
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 40px;
  /* place it at the bottom right corner */
  position: fixed;
  bottom: 20px;
  right: 0px;
  line-height: 40px;
  margin-left: 0px;
  /* keep it at the top of everything else */
  z-index: 100;
  /* hide with opacity */
  opacity: 0;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  transition: all .5s ease;
  background: rgba(255, 255, 255, 0.4);
  fill: rgba(139, 139, 139, 0.6);
}

.showBtn {
  opacity: 1;
  transform: translateY(0)
}

.list-item {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 30px;
  background-position: 0px 7px;
  background-size: auto;
  background-repeat: no-repeat;
}

.cross {
  background-image: url("../img/cross.svg");
}

.check {
  background-image: url("../img/check.svg");
}

.arrow {
  background-image: url("../img/arrow.svg");
}

.check,
.arrow {
  list-style: none;
}

ul {
  list-style: square;
  padding-left: 1.25rem;

}

li::marker {
  color: #6fa8a3;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: bold;
  color: #6fa8a3;
  text-transform: uppercase;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

/* === Steps ===*/
.step::before {
  counter-increment: section;
  content: counter(section);
  display: inline-block;
  color: white;
  background: #CDDAD9;
  border: 5px solid #CDDAD9;
  padding: 1px 15px;
  margin-right: 16px;
  border-radius: 50%;
}

.arrow.lead {
  margin-left: 1rem;
}

.phase-no {
  font-size: 4rem;
  opacity: 0.2;
  font-weight: 900;
  color: #6fa8a3;
}

.border-cstm {
  border-color: #CDDAD9;
  border-width: 2rem;
  border-left-style: solid;
  margin-left: -2rem;
}