:root {
  --color-primary: #afd300;
  --color-dark: #344747;
  --color-dark-2: #2e3f3f;
  --color-footer: #b9c4c8;
  --color-text: #263333;
  --color-border: #c9d1d1;
  --color-light: #f7f8f6;

  --font-headline: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;

  --header-height: 118px;
  --header-height-scrolled: 78px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  /*display: block;*/
}
h1,
h2,
h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-dark);
}
h1 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}
h2 {
  margin-top: 0;
  margin-bottom: 1.75rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
}
h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}
p {
  line-height: 1.55;
}
.section {
  padding: 4.5rem 0;
}
/* Helper */
.greenFrame {
  border-top: 9px solid var(--color-primary);
  border-left: 9px solid var(--color-primary);
}
.greenFrameRound {
  border-top: 9px solid var(--color-primary);
  border-left: 9px solid var(--color-primary);
  border-radius: 1rem 0;
}
.FrameRound {
  border-radius: 1rem;
}
/*Böhmer Button*/
.buttonBoehmer{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(1rem, 1vw + .5rem, 1.6rem);
    text-transform: uppercase;
    text-decoration: none;

    padding: 15px 40px;
    border-radius: 999px;

    overflow: hidden;
    isolation: isolate;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s cubic-bezier(.2,.8,.2,1),
        background-color .35s,
        color .35s;

    animation: buttonFadeIn .7s cubic-bezier(.22,1,.36,1) both;
}
.buttonBoehmer:hover{
    transform: translateY(-4px);
    box-shadow:
        0 12px 30px rgba(0,0,0,.18),
        0 4px 10px rgba(0,0,0,.08);
}
.buttonBoehmer:active{
    transform: translateY(-1px) scale(.98);
    box-shadow: 0 6px 12px rgba(0,0,0,.18);
}
.buttonBoehmer::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:rgba(255,255,255,.35);

    transform:scale(.9);
    opacity:0;

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        opacity .55s;
    z-index:-1;
}
.buttonBoehmer:hover::after{
    transform:scale(1.5);
    opacity:0;
}
.buttonBoehmer-white{
    background:#fff;
    color:#555;
}
@keyframes buttonFadeIn{
    from{
        opacity:0;
        transform:translateY(25px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
.buttonBoehmer::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-20deg);
    transition:left .7s;
    z-index:2;
}
.buttonBoehmer:hover::before{
    left:160%;
}
/* Accordion */
.accordion-item{
    border: solid 1px var(--color-primary);
    margin-bottom: 1rem;
} 
.accordion-title{
    color: #0a0a0a;
    text-decoration: none;
    font-size: clamp(1.0rem, 1vw + 0.5rem, 1.6rem);
}
.accordion-title:hover,.accordion-title:focus{
    text-decoration: none;
}
.accordion-item.is-active > .accordion-title{
    background: var(--color-footer);
    color: #0a0a0a;
    border: 1px solid var(--color-footer);
}
.accordion-title:hover, .accordion-title:focus{
    background: var(--color-footer);
    color: #0a0a0a;
}
/* Accordion - ENDE */
/* Header / Sticky Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header-top {
  background: var(--color-primary);
  color: var(--color-dark);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  clip-path: polygon(42px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: 33%;
}

.header-top .grid-container {
  position: relative;
}

.header-top-item {
  padding: 0.45rem 1.25rem;
}

.header-top a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 700;
}

.header-top-search button {
  width: 42px;
  height: 31px;
  border: 0;
  background: transparent;
  color: var(--color-dark);
  font-size: 1.3rem;
  cursor: pointer;
}

.main-nav {
  background: #fff;
  transition: all 0.25s ease;
}

.logo-cell {
  position: relative;
  z-index: 2;
}

.site-logo {
  position: relative;
  display: block;
  width: auto;
  height: 200px;
  margin-top: -26px;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease;
}

.site-logo img {
  position: absolute;
  left: 0;
  top: 50%;
  max-height: 100%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.logo-full {
  opacity: 1;
}

.logo-wordmark {
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
}

.primary-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 1.45rem 0;
  color: var(--color-dark);
  font-family: var(--font-headline);
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--color-primary);
}

.primary-nav{
	text-align: right;
    padding-right: 1rem;
}

/* Header scrolled */

.site-header.is-scrolled .header-top {
  transform: translateY(-100%);
  height: 0;
  overflow: hidden;
}

.site-header.is-scrolled .site-logo {
  width: 170px;
  height: 62px;
  margin-top: 0;
}

.site-header.is-scrolled .logo-full {
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
}

.site-header.is-scrolled .logo-wordmark {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.site-header.is-scrolled .primary-nav a {
  padding: 1rem 0;
}


/* Hero */

.hero {
  position: relative;
  /*overflow: hidden;*/
}

.hero-image {
  height: clamp(330px, 42vw, 560px);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  color: #0f1717;
}

.hero-claim {
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 68%;
  background: var(--color-dark);
  color: var(--color-primary);
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.hero-claim p {
  margin: 0;
  padding: 1.25rem 0;
  font-family: var(--font-headline);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
}


/* Services */

.services-section {
  padding-top: 3.5rem;
}

.service-card {
  position: relative;
  display: block;
  min-height: 170px;
  padding: 1.45rem 1.45rem 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.service-icon {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 2.3rem;
  line-height: 1;
}

.service-card p {
  margin: 0 0 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-card .more {
  position: absolute;
  right: 1.4rem;
  bottom: 1.1rem;
  color: var(--color-dark);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-card .more::after {
  content: " ⟶";
  color: var(--color-primary);
}


/* Image text */
.image-text-section {
  position: relative;
}
.image-frame {
  border-top: 9px solid var(--color-primary);
  border-left: 9px solid var(--color-primary);
}
.image-frame img {
  width: 100%;
}
.text-content {
  max-width: 560px;
}
.text-content p {
  font-weight: 600;
}


/* Contact */

.contact-section {
  padding: 4.5rem 0;
  background: var(--color-dark);
  color: #fff;
}

.contact-section h2 {
  margin-bottom: 1rem;
  color: #fff;
}

.contact-section p {
  color: #fff;
}

.contact-info {
  display: grid;
  gap: 1.8rem;
}

.contact-info {
    display: grid;
    gap: 2.4rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: start;
    column-gap: 1.25rem;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 64px;
    color: var(--color-primary);
    font-size: 2.8rem;
    line-height: 1;
}

.contact-icon i {
    display: block;
}

.contact-text strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #fff;
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
}

.contact-text a,
.contact-text p {
    margin: 0;
    color: #fff;
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-headline);
  color: #fff;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: #fff;
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  border: 0;
  border-radius: 6px;
  background: #f4f4f4;
  box-shadow: none;
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  margin: 0;
  border-radius: 5px;
  background: var(--color-primary);
  color: var(--color-dark);
  font-family: var(--font-headline);
  font-weight: 700;
}

.submit-button:hover,
.submit-button:focus {
  background: #c3e600;
  color: var(--color-dark);
}


/* About */

.about-section {
  padding-bottom: 5rem;
}

.about-section p {
  font-weight: 600;
}

.badge-wrap {
  position: relative;
}

.badge {
    position: absolute;
    left: -2.4rem;
    bottom: -1.9rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 165px;
    height: 165px;
    padding: 1rem;
    box-sizing: border-box;

    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);

    font-family: var(--font-headline);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;

    transform: rotate(15deg);
}

.badge span,
.badge strong {
    display: block;
    white-space: nowrap;
}

.badge strong {
    margin-top: 0.15rem;
    font-size: 1.25rem;
    font-weight: 700;
}


/* Footer */

.site-footer {
  padding-top: 2.5rem;	
  padding-bottom: 5.5rem;
  background: var(--color-footer);
  color: var(--color-dark);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--color-dark);
  text-decoration: none;
}

.footer-nav {
  display: grid;
  justify-content: end;
  gap: 0.25rem;
}

.footer-nav a::before {
  content: "⊙ ";
}

.footer-nav ul{
	list-style: none;
}

/* Responsive */

@media screen and (max-width: 900px) {
  .site-logo {
    width: 210px;
    height: 80px;
  }

  .primary-nav ul {
    gap: 1.1rem;
  }

  .primary-nav a {
    font-size: 1rem;
  }

  .hero-claim {
    width: 88%;
  }
}

@media screen and (max-width: 640px) {
  .header-top {
    display: none;
  }

  .main-nav {
    padding: 0.75rem 0;
  }

  .site-logo,
  .site-header.is-scrolled .site-logo {
    width: 165px;
    height: 58px;
    margin-top: 0;
  }

  .logo-full {
    opacity: 0;
  }

  .logo-wordmark {
    opacity: 1;
  }

  .primary-nav ul {
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-top: 0.75rem;
  }

  .primary-nav a {
    white-space: nowrap;
    padding: 0.5rem 0;
  }

  .hero-image {
    height: 420px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 4rem;
  }

  .hero h1 {
    max-width: 80%;
  }

  .hero-claim {
    width: 100%;
    clip-path: none;
  }

  .contact-info {
    margin-bottom: 3rem;
  }

  .badge {
    left: 1rem;
    bottom: -2rem;
    width: 120px;
    height: 120px;
    font-size: 0.85rem;
  }

  .footer-nav {
    justify-content: start;
    margin-top: 1.5rem;
  }
}

/* Helper */
.grid-container{
	max-width: 120rem;
}

img.rot{
    border: solid 8px #be0409;
}
img.orange{
    border: solid 8px #fb7e06;
}
img.blau{
    border: solid 8px #067dcd;
}
.cblock a.extlink:after
{
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    padding-left:7px;
    font-size: 1em;
    font-weight: 600;
}
.cblock a.no-extlink:after{
    content: "" !important;
}
/* Content */
.cblock ul{
  list-style: none;
}
.cblock ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f192";
    padding-right: 7px;
    font-size: 1em;
    font-weight: 600;
    color: var(--color-primary);
}
/* PDF Link */
.cblock a.pdflink:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f1c1";
    padding-right: 0.5rem;
}
/* Mobilnav */
.off-canvas-wrapper{
	z-index: 9999;
}
.mobil-nav{
    width: 100%;
    background: gray;
}
.navigation{
    
}
.mobil-nav .top-bar-menu{
    color: #FFFFFF;
}
.mobil-nav .menu-icon.dark::after{
    background: #FFFFFF;
    box-shadow: 0 7px 0 #FFFFFF, 0 14px 0 #FFFFFF;
}
.mobil-nav a{
    color: #ffffff;
}
.mobil-nav li:hover a{
    font-weight: bold;
}
.mobil-nav li li a, .mobil-nav li:hover li a{
    font-weight: normal;
}
.mobil-nav li li:hover a{
    font-weight: bold;
}
.mobil-nav .menu .active > a{
    background: none;
    text-decoration: underline;
	background: var(--color-dark);
    color: var(--color-primary);
}
.menu .is-active>a {
    background: var(--color-dark);
    color: var(--color-primary);
}
.menu .active>a {
   	background: var(--color-dark);
    color: var(--color-primary);
}
.menu a{
	color: var(--color-dark);
}
/* Sidenavigation */
.sidenav ul{
    list-style: none;
}

.sidenav .level1{
    font-size: 1.6rem;
    padding-left: 30px;
}
.sidenav .level2 {
    font-size: 1.3rem;
}
.sidenav .level1::before {
    position: absolute;
    content: url(/assets/img/layout/navicons_level1.png);
    margin-left: -30px;
}
.sidenav .level2::before {
    padding-right: 10px;
    content: url(/assets/img/layout/navicons_level2.png);
}
.sidenav li.active .level2 {
    display: block;
}
/* Termine */
.terminlist{
    padding-bottom: 25px;
}
.day, .month, .year{
	text-align: center;
	color: #ffffff;
	margin-bottom: -5px;
	background: #0f5075;
}
.day{
	font-size: 2rem;
	font-weight: bold;
	position: relative;
}
.day::after{
	display: block;
    border: inset 6px;
    content: '';
    border-left-style: solid;
    border-color: transparent transparent transparent #efeac7;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}
.month, .year{
	font-size: 1.2rem;
}
/** Timeline v2 **/

.timelines h2 {
	text-align: center;
	color: #fff;
	font-weight: 600;
	margin-bottom: 40px;
	font-size: 32px;
}
.d-flex-2 {
	display: flex;
	align-items: center;
}
.timeline-area {
	padding: 80px 0;
}
.all-timelines {
	position: relative;
}
.timelines h2 {
	text-align: center;
	color: #0a0a0a;
	font-weight: 600;
	margin-bottom: 40px;
}
.all-timelines::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	height: 100%;
	width: 2px;
	background: #006e9d;
	top: 20px;
}
.single-timeline {
	margin-bottom: 22px;
}
.timeline-blank {
	width: 50%;
}
.timeline-text {
	width: 50%;
	padding-left: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.timeline-text h6 {
	color: #006e9d;
	font-weight: 900;
	display: inline-block;
	font-size: 1rem;
}
.timeline-text span {
	color: #0a0a0a;
	display: block;
	width: 100%;
}
.single-timeline:nth-child(even) .timeline-text span {
	text-align: right;
}
.t-square {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	left: -6px;
	background: #006e9d;
}
.single-timeline:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.single-timeline:nth-child(even) .t-square {
	right: -6px;
	left: unset;
}
.single-timeline:nth-child(even) .timeline-text {
	padding-left: 0;
	padding-right: 30px;
	text-align: right;
}

@media all and (max-width: 991px) {
}
@media all and (max-width: 768px) {
	.all-timelines::before {
		right: unset;
		top: 0;
	}
	.single-timeline:nth-child(2n) .timeline-text {
		padding-left: 30px;
		padding-right: 0;
		text-align: left;
	}
	.single-timeline:nth-child(2n) .t-square {
		left: -6px;
		right: unset;
	}
	.timeline-blank {
		display: none;
	}
	.timeline-text {
		width: 100%; 
	}
	.single-timeline:nth-child(even) .timeline-text span {
		text-align: left !important;
	}
}
@media all and (max-width: 575px) {
}
@media all and (max-width: 360px) {
	.all-timelines::before {
		top: 32px;
	}
}

/** Timeline V2 - ENDE **/
/* Blog */
.posts{
    padding-top: 25px;
}
.post_date{
    padding-right: 5px;
}
.post_text{
    padding-left: 15px;
}
.post{
	padding-bottom: 25px;
}
.post h2{
		font-size: 1.5rem;
		line-height: 1.1;
}
.post h2 a{
	color:  var(--color-primary);
	font-size: 1.5rem;
}
.vorschau{
	border: solid 5px #5a5a5a;
}
.day{
	font-size: 2rem;
	font-weight: bold;
	background: var(--color-primary);
  color: var(--color-dark); 
}
.month, .year{
	font-size: 1.2rem;
	background: var(--color-dark);
}
.readmore{
	background-color: transparent;
	border: 1px solid #5a5a5a;
    border-radius: 5px;
    color: #5a5a5a;
    padding-left: 35px;
    padding-right: 35px;
    float: right;
}
.readmore:hover, .readmore:focus {
    background-color: #ebebeb;
    color: #5a5a5a;
}
.aktuelles a.readmore{
    position: absolute;
    bottom: 0;
}
.paging{
	padding-bottom: 25px;
}
.paging li:before{
	content: none !important;
}
.paging li{
	float:left;
	list-style: none;
	padding-right: 15px;
}
.blogTags h3, .blogArchiv h3{
    color: #0f5075;
    font-size: 1.5rem;
}
.blogTags a, .blogArchiv a{
	color: #5a5a5a;
}
.blogTags ul, .blogArchiv ul{
    list-style: none;
}
/* BlogStarseite */
.blogItem{
  border: solid 2px var(--color-dark);
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--color-footer);
}
.blogItem:hover,.blogItem:focus{
  background-color: var(--color-dark);
  color: #fff;
}
.blogItemText{
  padding-top: 1rem;
}
.blogItem:hover .blogItemText .title a,.blogItem:focus .blogItemText .title a{
  color: var(--color-primary);
}
.blogItemBild{
  text-align: center;
}
.blogItemBild img{
  width: 100%;
}
.blogItemText .title a{
  color: var(--color-dark);
}

/* Kontakt */
.faerstaeggt {
    display: none;
}
.content input.error, .content textarea.error, .content div.error {
    border-color: #ff0000;
}
.content div.error {
    border: dotted 1px #ff0000;
}
.alert .alert-error{
    color: #ff0000;
}
.kontaktForm tbody tr:nth-child(even), .kontaktForm tr{
    background: none;
}
.kontaktForm tbody{
    border: none;
}
/* CookieMeldung  */
.cookiePopUp{
    background: #fff;
    position: sticky;
    bottom: 0;
    width: 100%;
}
.uc-btn-footer-container{
    text-align: center;
}
#uc-banner-modal{
    display: none !important;
}
#usercentrics-button #uc-banner-modal .uc-banner-content{
    background-color: #fff !important;
}
#usercentrics-button #uc-banner-modal .uc-optin-description{
    color: #000 !important;
}
#uc-btn-deny-banner, #uc-btn-more-info-banner{
    color: #ffffff !important;
    background-color: #dadada !important;
}
#uc-btn-accept-banner{
    color: #0b1932 !important;
    background-color: #fedc33 !important;   
}
/* Back to Top */
	.cd-top {
		z-index:500;
		display: inline-block;
	  	height: 40px;
	  	width: 40px;
	  	position: fixed;
	  	bottom: 53px;
	  	right: 10px;
	  	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	  /* image replacement properties */
	  	overflow: hidden;
	  	text-indent: 100%;
	  	white-space: nowrap;
	  	background: rgba(120, 138, 146, 0.8) url(/assets/img/layout/cd-top-arrow.svg) no-repeat center 50%;
	  	/*visibility: hidden;*/
	  	opacity: 0;
	  	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	  	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	  	transition: opacity .3s 0s, visibility 0s .3s;
	}
	.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	  	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	  	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	  	transition: opacity .3s 0s, visibility 0s 0s;
	}
	.cd-top.cd-is-visible {
	  /* the button becomes visible */
	  visibility: visible;
	  opacity: 1;
	}
	.cd-top.cd-fade-out {
	  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	  	opacity: .5;
	}
	.no-touch .cd-top:hover {
	  	background-color: #788a92;
	  	opacity: 1;
	}
/* 4K-Anpassungen  */
@media screen and (min-width: 1980px){
    .main-nav li a{
        font-size: 1.6rem;    
    }
    .banner img{
        width: 100%;
    }
}
.service-process {
  padding: 4rem 0;
  background: #fff;
}

.service-process__headline {
  margin-bottom: 0.75rem;
  color: #344646;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
}

.service-process__intro {
  margin: 0 auto 3rem;
  max-width: 46rem;
  color: #344646;
  font-size: 1rem;
  line-height: 1.7;
}

.service-process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 2.5rem 0 0;
}

.service-process__list::before {
  content: "";
  position: absolute;
  top: 3.25rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #cfd8d8;
}

.service-process__item {
  position: relative;
  text-align: center;
}

.service-process__marker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: #a8cf00;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.service-process__content {
  padding: 0 0.5rem;
}

.service-process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: #344646;
}

.service-process__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-process__content h3 {
  margin: 0 0 0.45rem;
  color: #344646;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
}

.service-process__content p {
  margin: 0;
  color: #344646;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Tablet */
@media screen and (max-width: 63.99875em) {
  .service-process__list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }

  .service-process__list::before {
    display: none;
  }

  .service-process__content {
    max-width: 18rem;
    margin: 0 auto;
  }
}

/* Smartphone */
@media screen and (max-width: 39.99875em) {
  .service-process {
    padding: 3rem 0;
  }

  .service-process__intro {
    margin-bottom: 2rem;
    text-align: left;
  }

  .service-process__list {
    display: block;
    padding-top: 0;
  }

  .service-process__item {
    position: relative;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    column-gap: 1rem;
    padding-bottom: 1.75rem;
    text-align: left;
  }

  .service-process__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 1rem;
    bottom: -0.25rem;
    width: 2px;
    background: #d9e1e1;
  }

  .service-process__marker {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .service-process__content {
    grid-column: 2;
    max-width: none;
    margin: 0;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid #e6ecec;
  }

  .service-process_item:last-child .service-process_content {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .service-process__icon {
    margin-bottom: 0.65rem;
  }

  .service-process__content h3 {
    font-size: 1.1rem;
  }

  .service-process__content p {
    font-size: 0.95rem;
  }
}