/* ========================================================================== */
/* Reset styles																  */
/* ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
menu,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: 300;
  vertical-align: baseline;
  background: transparent;
  cursor: default;
}
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: inherit;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
*:after,
*::before {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-Regular-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-Light-Italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
/* ============================================================================= */
/* Color definitions															 */
/* ============================================================================= */
/*#978e85*/
/*#be2f37*/
/*#832f37*/
/* unused */
/* 60rem; */
/* 25rem; */
.mt-b-xxl {
  margin-top: 2.808rem;
}
/* ================================================================ */
/* Header															*/
/* ================================================================ */
.header-nav-item {
  display: inline-table;
}
.header-nav-item a {
  display: table-cell;
  padding: 3.5rem 0.5rem 0.5rem 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #978e85;
  position: relative;
}
.logo {
  position: absolute;
  background: no-repeat url('img/v3_logo.svg');
  background-size: contain;
  right: 1rem;
  top: 1.2rem;
  height: 5.7rem;
  width: 15.9rem;
  padding: 0;
  display: block;
}
/* ============================================================================= */
/* Adaptions for various screen sizes											*/
/* ============================================================================= */
@media screen and (min-width: 1170px) {
  .menu-trigger,
  .menu-bar {
    display: none;
  }
  .header-nav-item:first-child a {
    padding-left: 0;
  }
  .header-nav-item a:hover,
  .header-nav-item a:active {
    opacity: 1;
    color: #be2f37;
  }
  .header-nav-item a:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #be2f37;
    /*rgba(0,0,0,0.1);*/
    content: '';
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(5px);
  }
  .header-nav-item a:hover:after {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media screen and (max-width: 1170px) {
  header,
  .header-nav,
  .menu-bar img,
  .header-nav-item a {
    width: 100%;
  }
  header,
  .header-nav-item,
  .header-nav-item a {
    display: block;
  }
  header {
    position: fixed;
    z-index: 1000;
    height: auto;
    left: 0;
    top: 0;
    background: #ffffff;
    margin: 0;
    max-width: 100%;
  }
  header:after {
    display: block;
    content: '';
    width: 100%;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(222, 219, 216, 0.4), rgba(255, 255, 255, 0));
    position: absolute;
    z-index: -1;
  }
  .logo {
    position: relative;
    top: 0;
    left: 0;
    width: 4.7rem;
    height: 4rem;
    background-image: url('img/v3_logo_nt.svg');
    margin: 1rem;
  }
  .menu-trigger {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    /* hide checkbox */
    pointer-events: none;
  }
  .menu-trigger:checked ~ .header-nav {
    transform: scaleY(1);
    display: block;
  }
  .menu-bar {
    position: absolute;
    right: 1rem;
    top: 1rem;
    height: 2rem;
    width: 2rem;
    border-radius: 3px;
    padding: 0.3rem;
    cursor: pointer;
  }
  .menu-bar img {
    height: 100%;
  }
  .header-nav {
    position: absolute;
    border-top: 1px solid #92907B;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: transform 1s ease;
  }
  .header-nav-item {
    background: #ffffff;
    border-bottom: 1px solid #92907B;
    cursor: pointer;
    padding: 0;
  }
  .header-nav-item a {
    padding: 0.5em;
  }
  .header-nav-item a:hover {
    background: rgba(222, 219, 216, 0.7);
  }
}
/* ============================================================================ */
/* Footer																		*/
/* ============================================================================ */
footer {
  bottom: 0;
  clear: both;
  position: absolute;
  width: 100%;
  padding: 1rem 0;
  background-color: #dedbd8;
  font-size: 0.9rem;
}
.bl {
  margin: 1rem 0;
}
.bl > li {
  position: relative;
  margin-left: 1rem;
}
.bl > li:before {
  position: absolute;
  content: '';
  left: -0.8rem;
  top: 0.65rem;
  display: inline-block;
  border-radius: 0.125rem;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #be2f37;
}
@media screen and (min-width: 1170px) {
  .horizontal-bl li {
    display: inline;
  }
  .horizontal-bl li + li:before {
    content: '•';
    color: #832f37;
    margin: 0 0.4em;
  }
}
.flex-center {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1170px) {
  .flex {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
  }
  .flex.spread {
    justify-content: space-between;
    align-items: baseline;
  }
  .asym .flex-item:first-child {
    width: 66%;
  }
  .asym .flex-item:last-child {
    width: 34%;
  }
  .sym .flex-item {
    flex: 1 1 0;
  }
  .flex-item + .flex-item {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 1170px) {
  .flex.spread {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
.column-wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.column {
  flex: 1 1 0;
  text-align: center;
  color: #383430;
  padding: 0em 1em 1em 1em;
  transition: all 0.3s ease-in-out;
}
.column:hover {
  color: #383430;
}
.c-title {
  font-size: 1.797rem;
  color: #832f37;
  padding-bottom: 1rem;
  white-space: nowrap;
}
.column:hover .c-title {
  color: #be2f37;
}
.c-subtitle {
  line-height: 1.55;
}
.column:before {
  display: block;
  margin: 0 auto 1rem auto;
  content: '';
  background-size: cover;
  background-repeat: no-repeat;
  width: 6rem;
  height: 6rem;
  opacity: 1;
}
.c-web:before {
  background-image: url('img/web.svg');
}
.c-pm:before {
  background-image: url('img/pm.svg');
}
.c-analytics:before {
  background-image: url('img/analytics.svg');
}
.c-web:hover:before {
  background-image: url('img/web-hover.svg');
}
.c-pm:hover:before {
  background-image: url('img/pm-hover.svg');
}
.c-analytics:hover:before {
  background-image: url('img/analytics-hover.svg');
}
@media screen and (max-width: 1170px) {
  .column-wrapper {
    display: block;
  }
}
@media screen and (max-width: 1170px) and (min-width: 410px) {
  .column {
    display: block;
    text-align: left;
    position: relative;
    margin-left: 5rem;
    margin-bottom: 1rem;
  }
  .column:before {
    position: absolute;
    width: 5rem;
    height: 5rem;
    margin: 0 1rem 0 0;
    left: -5rem;
  }
  .c-title {
    padding: 1rem 0 0 0;
  }
}
/* ============================================================================= */
/* Referenzen																	*/
/* ============================================================================= */
.bl.references > li {
  margin-bottom: 0.8rem;
}
.tag-wrapper span {
  background-color: rgba(222, 219, 216, 0.7);
  font-size: 0.9rem;
  padding: 0.25rem 0.4rem 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 400;
  line-height: 1;
}
/* ============================================================================ */
/* overview.less																		*/
/* ============================================================================ */
.overview {
  display: flex;
  flex-flow: row wrap;
}
.overview-item {
  display: block;
  width: 32%;
  padding: 1em;
  transition: background-color 0.3s ease-in-out;
}
.overview-item:hover {
  background-color: rgba(222, 219, 216, 0.7);
}
.overview-item:hover span {
  color: #ffffff;
}
.overview-item-title {
  font-size: 1.25rem;
  color: #832f37;
  margin: 0 0 0.5em 0;
  line-height: 1;
}
.overview-item p {
  font-size: 0.9em;
  color: #383430;
  margin: 1em 0 0 0;
}
.overview-img-credit {
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  font-size: 70%;
}
.overview-img {
  position: relative;
  width: 100%;
  height: 9em;
  background-repeat: none;
  background-size: cover;
  background-position: 0% 30%;
}
.overview-img-box {
  width: 100%;
  overflow: hidden;
}
.overview-img {
  /*background-position:center; */
  transition: all 0.1s ease-in;
}
.overview-item:hover .overview-img {
  transform: scale(1.1);
  transition: all 2s cubic-bezier(0.23, 0.24, 0.16, 0.77);
}
@media screen and (max-width: 1170px) {
  .overview-item {
    width: 100%;
    display: block;
  }
}
/* ============================================================================= */
/* Screenshots																	 */
/* ============================================================================= */
.screenshots {
  float: right;
  margin-bottom: 4rem;
}
.screenshots li {
  display: inline-block;
}
.screenshot {
  opacity: 1;
  border: 0.2em solid #ffffff;
  box-shadow: 0.2em 0.2em 0.4em #000000;
  width: 12em;
  position: relative;
}
.screenshots .first {
  transform: rotate(-3deg);
  margin: 0 0 0 1em;
}
.screenshots .second {
  margin: 0 0 -4rem -8rem;
  width: 5rem;
  box-shadow: none;
  z-index: 1;
  border: none;
}
.screenshots .third {
  transform: rotate(3deg);
  margin: 2em 0 0 -5em;
}
.screenshots li:only-child > img {
  transform: rotate(3deg);
  width: 20em;
  margin: 0em 0 0.5em 1em;
}
.credit {
  font-size: 0.8rem;
  text-align: right;
  transform: rotate(3deg);
  margin-right: 1em;
}
/* ============================================================================= */
/* Adaptions for various screen sizes											*/
/* ============================================================================= */
@media screen and (max-width: 1170px) {
  .screenshots {
    padding-right: 1em;
  }
  .screenshots li:not(:first-child) {
    display: none;
  }
  .screenshots li:only-child > img {
    width: 14em;
  }
  .screenshots li:only-child > img,
  .screenshots li:last-child > img {
    margin: 0 1em 1em 1em;
  }
}
@media screen and (max-width: 410px) {
  .screenshots {
    float: none;
  }
}
/* ============================================================================= */
/* Popup Images															 */
/* ============================================================================= */
/*
// from dadalaba - simpler fullsize view
.PreviewImage {
    vertical-align: bottom;
    background: white;
    border: 1px solid lightgrey;
    border-radius: 0.5em;
    margin: 0.25em 0.5em 0.25em 0;
    padding: 0;
    overflow: hidden;
}

.PreviewImage.fullsize {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	background: #ffffff7a;
    border: none;
    margin: 0;
    padding: 0;
}
.PreviewImage.fullsize .PreviewImage-display {
    position: relative;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background: rgba(0,0,0,0.2);
}

.popup-content {
	position: relative;
	max-width: calc(100% - 6em);
	max-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none repeat scroll 0 0 white;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
	padding: 0.2em;
	margin: 0.5em;
}
.popup-close {
	display: block;
	position: absolute;
	right: 1.5em;
	top: 1em;
	color: @color-text-light;
	cursor: pointer;
}
.popup-close:hover {
	color: @color-primary-hover;
	text-decoration: none;
}
*/
/* ============================================================================= */
/* Quotes															 */
/* ============================================================================= */
blockquote {
  position: relative;
  width: 25em;
  float: right;
  margin: 1em 2em;
}
.quote-icon {
  font-family: 'Georgia', serif;
  font-size: 10rem;
  color: #DEDBD8;
  position: absolute;
  margin-top: -1.03em;
  left: -0.1em;
  z-index: -1;
}
.quote-text {
  font-style: italic;
  color: #832f37;
  line-height: 1.5;
}
.quote-attribution {
  width: 100%;
  text-align: right;
  color: #978e85;
  line-height: 2em;
}
/* ============================================================================= */
/* Adaptions for various screen sizes											*/
/* ============================================================================= */
@media screen and (max-width: 1170px) {
  blockquote {
    width: 100%;
    float: none;
    margin: 0;
    padding: 1em;
  }
}
/* ============================================================================= */
/* target.less																	*/
/* ============================================================================= */
/*
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.target {
  position: relative;
  width: 100%;
  left: 0;
  display: none;
  opacity: 0;
  padding: 1em 0;
}
:target ~ .target {
  display: block;
  opacity: 1;
  animation-duration: 0.6s;
  animation-fill-mode: forward;
  animation-name: fadeIn;
}
.navigation {
  width: 100%;
  max-width: 50em;
  height: auto;
}
.navigation > li {
  text-align: left;
}
.navigation > li > a {
  display: none;
}
.target h3 a {
  color: #978e85;
}
.target h3 a:hover {
  color: #be2f37;
}
.previous,
.next {
  position: absolute;
  display: block;
  color: #978e85;
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  /*top: 3em;*/
  bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
.previous:hover,
.next:hover {
  color: #ffffff;
  background-color: #be2f37;
}
.previous:before,
.next:before {
  font-size: 3rem;
  line-height: 0.85em;
  margin-left: 0.25em;
}
.previous:before {
  content: '<';
  padding-right: 0.25rem;
}
.next:before {
  content: '>';
  padding-left: 0.15rem;
}
.previous {
  left: -5em;
}
.next {
  right: -5em;
}
.target-pagination {
  clear: both;
}
.target-pagination .previous,
.target-pagination .next {
  top: 5em;
}
@media screen and (min-width: 1170px) {
  .back {
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 1170px) {
  .target-pagination {
    text-align: center;
  }
  .target-pagination .previous,
  .target-pagination .next {
    position: relative;
    display: inline-block;
    top: 0;
  }
  .back {
    position: relative;
    top: -0.35rem;
  }
  .previous {
    left: 0;
  }
  .next {
    right: 0;
  }
  .previous:before,
  .next:before {
    margin-left: 0;
  }
}
/* ============================================================================= */
/* vignette.less																	*/
/* ============================================================================= */
.vignette {
  line-height: 1;
}
.vignette-img {
  border: 0.1em solid rgba(151, 142, 133, 0.5);
  box-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.5);
  margin: 0 0 0.5rem 0;
  border-radius: 4rem;
  opacity: 1;
  width: 8rem;
  height: 8rem;
  transition: opacity 0.3s ease-in-out;
  filter: sepia(46%) hue-rotate(5deg) saturate(38%);
  /* sepia(73%) hue-rotate(17deg) saturate(38%); */
}
.vignette-wrapper-nav {
  text-align: center;
  margin: 1rem 0 0 3rem;
  position: relative;
  width: 100%;
}
.vignette-wrapper-nav .previous {
  left: 0;
}
.vignette-wrapper-nav .next {
  right: 0;
}
.vignette-wrapper-nav .previous:before,
.vignette-wrapper-nav .next:before {
  margin-left: 0;
}
.vignette-wrapper-inline {
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  margin-right: 2rem;
}
.vignette-name {
  font-size: 1.953rem;
  font-weight: 300;
  color: #832f37;
  margin: 0.25em 0;
}
.vignette-role {
  font-size: 1.15rem;
  font-weight: 400;
  color: #978e85;
}
@media screen and (max-width: 1170px) {
  .vignette {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
  }
  .vignette-wrapper-nav {
    margin: 1.2rem 1rem 0 0;
  }
  .vignette-wrapper-nav .previous {
    left: 1rem;
  }
  .vignette-wrapper-nav .next {
    right: 1rem;
  }
}
/* ============================================================================= */
/* opinion.less																	*/
/* ============================================================================= */
/* grau */
.opinion:before {
  background: #978e85 none repeat scroll 0 0;
  border-bottom-right-radius: 5em 3.125em;
  border-right: 3.75em solid #978e85;
  bottom: -1.5625em;
  content: "";
  height: 1.875em;
  position: absolute;
  right: 48%;
  transform: scaleX(-1);
  z-index: -1;
}
/* weiß */
.opinion:after {
  background: #ffffff none repeat scroll 0 0;
  border-bottom-right-radius: 2.5em 3.175em;
  bottom: -1.6875em;
  content: "";
  height: 1.875em;
  position: absolute;
  right: 36%;
  transform: scaleX(-1);
  width: 3.75em;
  z-index: -1;
}
/* Ellipse */
.opinion {
  background: #978e85 repeat scroll 0 0;
  border-radius: 20em / 10em;
  /* escaping to prevent less from dividing */
  color: #ffffff;
  padding: 2em 2.5em;
  position: relative;
  right: 0;
  text-align: center;
  width: 20em;
  height: 10em;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.opinion-inner {
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
}
@media screen and (max-width: 1170px) {
  .opinion {
    right: 2em;
  }
}
.illustration {
  width: 30rem;
  float: right;
  margin: 0 0 1rem 1rem;
}
@media screen and (max-width: 1170px) {
  .illustration {
    width: 20rem;
  }
}
@media screen and (max-width: 410px) {
  .illustration {
    width: 100%;
    float: none;
    margin: 0;
    padding: 1rem;
  }
}
/* ============================================================================= */
/* Main															 */
/* ============================================================================= */
html {
  height: 100%;
  font-size: 16px;
}
body {
  font: 300 1.15rem/1 'Raleway', sans-serif;
  color: #383430;
  /* darkgrey */
  background: white;
  min-height: 100%;
  overflow-y: scroll;
  position: relative;
  text-rendering: optimizelegibility;
}
span,
p,
li {
  line-height: 1.55;
}
h1 span,
h2 span,
h3 span {
  display: block;
  line-height: 1.1;
}
h1,
h1 span:first-child {
  font-size: 4.768rem;
  color: #832f37;
  margin-top: 4rem;
}
h1 span:last-child {
  font-size: 1.953rem;
  color: #978e85;
  margin-bottom: 1.5rem;
}
h2,
h3 span:first-child {
  font-size: 1.953rem;
  font-weight: 300;
  color: #832f37;
}
h2 {
  margin: 2rem 0 1rem 0;
}
section h2 {
  margin: 0 0 1rem 0;
}
section h3 {
  font-size: 1.563rem;
  font-weight: 300;
  color: #832f37;
}
h3,
h3 span:last-child {
  font-size: 1.15rem;
  font-weight: 400;
  color: #978e85;
}
h3 {
  margin: 1em 0 0.5em 0;
}
h3 span:last-child {
  margin: 0.25em 0 1em 0;
}
strong {
  font-weight: 600;
  color: #978e85;
}
a {
  text-decoration: none;
  color: #832f37;
}
a:hover {
  color: #be2f37;
}
a:hover span {
  color: #383430;
}
p:first-child {
  margin-bottom: 1rem;
}
p:not(:first-child) {
  margin: 1rem 0 1rem 0;
}
.right {
  text-align: right;
}
@media screen and (max-width: 410px) {
  .right {
    text-align: center;
  }
}
.clear {
  clear: both;
}
.nowrap {
  white-space: nowrap;
}
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
button,
.button {
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  background: #832f37;
  color: #ffffff;
  border-radius: 0.3em;
  border: none;
  transition: background-color 0.3s ease-in-out;
}
button:hover,
.button:hover {
  background: #be2f37;
  color: white;
}
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.wrapper {
  margin: 0px auto;
  max-width: 55rem;
}
.main {
  padding-bottom: 8rem;
}
section + section {
  margin-top: 5rem;
}
.section-header {
  background: rgba(222, 219, 216, 0.7);
  padding: 0 1rem;
  margin-bottom: 2.5rem;
}
.section-header-inner {
  margin: 0 auto;
  max-width: 55rem;
  padding: 3rem 0 0 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1170px) {
  section:nth-child(odd) .section-header-inner {
    flex-flow: row-reverse nowrap;
  }
  section:nth-child(odd) h2 {
    text-align: right;
  }
}
.section-title {
  font-size: 2.246rem;
  font-weight: 300;
  color: #832f37;
}
.section-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: #978e85;
}
.section-img {
  width: 10rem;
  margin: -5rem 0 0 -2rem;
}
/* ============================================================================= */
/* Adaptions for various screen sizes											*/
/* ============================================================================= */
@media screen and (max-width: 1170px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 1rem;
  }
  .wrapper {
    margin: 0 1rem;
  }
  h1 {
    margin-top: 8rem;
  }
  h1,
  h1 span:first-child {
    font-size: 2.246rem;
  }
  h1 span:last-child {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.563rem;
  }
  h3 {
    font-size: 1rem;
  }
  .section-header {
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
  .section-img {
    width: 5rem;
    margin: 1rem;
  }
  .section-header-inner {
    max-width: 100%;
    align-items: flex-start;
  }
  .section-img {
    margin: -4rem -0.5rem 0 0;
  }
  .section-title {
    font-size: 1.563rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 410px) {
  .icon-large {
    display: none;
  }
}
