:root {
  --clr-blue-d: #136ec9;
  --clr-blue-m: #43a1fe;
  --clr-blue-l: hsl(197, 71%, 73%);
  --clr-green-d: hsl(180, 99%, 25%);
  --clr-green-m: hsl(180, 99%, 30%);
  --clr-green-l: hsl(180, 99%, 35%);
  /* --clr-accent-1: #503703; */
  --clr-bg-main: #181818;
  --clr-bg-main: #f8f8f8;

  --clr-occ-h1: hsl(210, 75%, 55%);
  --clr-grey-l: #ccc;
  --clr-grey-m: #666;
  --clr-grey-d: #333;
  --clr-hint-text: #999;

  --std-border-rad: 5px;
  --std-shadow-static: 0 5px 25px rgba(33, 33, 33, .7);
  --std-shadow-nav: 0 15px 25px rgba(33, 33, 33, .8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  background-color: var(--clr-bg-main);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--clr-grey-d);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  color: var(--clr-blue-d);
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mr-1 { margin-right: 10px; }
.mr-2 { margin-right: 20px; }
.mr-3 { margin-right: 30px; }
.mr-4 { margin-right: 40px; }
.mr-5 { margin-right: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.ml-1 { margin-left: 10px; }
.ml-2 { margin-left: 20px; }
.ml-3 { margin-left: 30px; }
.ml-4 { margin-left: 40px; }
.ml-5 { margin-left: 50px; }


.bg-blue { background-color: var(--clr-blue-d); }

/* Home intro */
.intro-box {
  display: flex;
  justify-content: space-evenly;
  width: 1140px;
  margin: 0 auto;
  margin-top: -8%;
  margin-top: -130px;
  margin-bottom: 100px;
  padding: 3em 2em;
  gap: 1em;
  border-radius: var(--std-border-rad);
  background-color: var(--clr-blue-d);
  box-shadow: var(--std-shadow-static);
}


.intro-home__header {
  text-align: center;
  margin-bottom: 30px;
  padding: 10px 5px;
  background-color: var(--clr-blue-m);
  color: #000;
}


.intro-box__item {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  width: 21%;
  padding-bottom: 20px;
  border: 2px solid var(--clr-blue-m);
  border-radius: 5px;
}

.intro-home__img {
  width: 100%;
  margin-bottom: 30px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}
  
.intro-box__text {
  flex: 1;
  margin-bottom: 30px;
  padding: 20px 10px 0;
  line-height: 1.5;
}

.intro-box__head {
  color: #ffc400;
}
  
a.intro-home__btn:link,
a.intro-home__btn:visited,
button.intro-home__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: .6em 2.4em;
  border: 2px solid var(--clr-grey-d);
  border-radius: 5px;
  background-color: var(--clr-green-m);
  font-size: 1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all .2s;
}

a.intro-home__btn:hover,
a.intro-home__btn:active,
button.intro-home__btn:hover {
  border-color: var(--clr-grey-d);
  box-shadow: var(--std-shadow-static);
  transform: scale(1.03);
}

.intro-field__filter-list {
  display: block;
  width: 90%;
  margin: 8px auto 12px;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid var(--clr-blue-d);
  background-color: var(--clr-grey-m);
  font-size: 1rem;
  color: #fff;
}
/* Home intro - end */
  
.page-heading {
  margin: 90px 0 60px;
  color: var(--clr-blue-d);
  text-transform: uppercase;
  text-decoration: underline;
}

.sub-heading {
  color: var(--clr-blue-m);
}

.text-highlight {
  font-weight: 700;
  color: var(--clr-blue-d);
}

.bg-logo-section {
  background-color: var(--clr-blue-d);
  border-bottom: 2px solid #333;
}

section {
  margin: 5rem 0 3rem;
  color: var(--clr-grey-d);
  line-height: 1.5;
}

section p {
  margin-top: 2rem;
}

section h1 {
  color: var(--clr-blue-d);
}

.logo,
.logo-small {
  margin-bottom: 15px;
  padding: 5px;
  border: 3px solid #999;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--clr-blue-d);
}

.logo { font-size: 3rem; }
.logo-small { display: none; font-size: 2rem; }
.logo-hidden { display: none; }
.logo-visible { display: block; }

.menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

nav {
  background-color: var(--clr-blue-d);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  transition: all 1s;
}

.menu-border { border-bottom: 2px solid #222; }

.main-nav li {
  display: inline-block;
  margin-left: 20px;
  padding: 20px 0;
}

.main-nav li a:link,
.main-nav li a:visited {
  padding: 8px 0 7px 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.main-nav li a:hover,
.main-nav li a:active,
.main-nav li a.current {
  color: var(--clr-blue-l);
  border-bottom: 2px solid var(--clr-blue-l);
}

.sticky {
  position: fixed;
  z-index: 9;
  padding-top: 13px;
  background-color: var(--clr-blue-d);
  box-shadow: var(--std-shadow-nav);
}

.non-sticky { transition: all .3s; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
  padding: 8px 0 7px 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.sticky .main-nav li a:hover,
.sticky .main-nav li a.current,
.sticky .main-nav li a:active {
  color: var(--clr-blue-l);
  border-bottom: 2px solid var(--clr-blue-l);
}

/* Footer */
footer {
  background-color: var(--clr-blue-d);
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.8;
}

.ftr-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 10px 20px;
  border-bottom: 1px solid var(--clr-blue-l);
}

.ftr-1 b {
  display: block;
  margin-bottom: 1rem;
  color: var(--clr-blue-l);
}

.ftr-1 a:link,
.ftr-1 a:visited {
  color: #fff;
  text-decoration: none;
}
.ftr-1 a:hover,
.ftr-1 a:active {
  color: var(--clr-blue-l);
  text-decoration: underline;
}

a.inline-link:link,
a.inline-link:visited {
  color: var(--clr-blue-d);
}
a.inline-link:hover,
a.inline-link:active {
  color: var(--clr-blue-m);
}

.ftr-2 {
  padding: 20px;
  text-align: center;
  color: #333;
}

.ftr-2 a:link,
.ftr-2 a:visited {
  text-decoration: none;
  color: inherit;
}

.ftr-2 a:hover,
.ftr-2 a:active {
  text-decoration: underline;
  color: var(--clr-blue-l);
}
/* Footer - end */

a.link-std:link,
a.link-std:visited {
  color: var(--clr-blue-d);
  text-decoration: none;
}

a.link-std:hover,
a.link-std:active {
  text-decoration: underline;
  color: var(--clr-blue-m);
}

.logo-and-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-items: baseline;
}

.logo-and-phone {
  position: sticky;
  display: flex;
  justify-content: space-between;
}

.mobile-nav-icon {
  display: none;
  float: right;
  margin: 5px 20px;
  cursor: pointer;
}

.mni-b1,
.mni-b2,
.mni-b3 {
  width: 20px;
  height: 4px;
  margin-bottom: 4px;
  border-radius: 2px;
  background-color: #fff;
  transition: all .3s;
}

.mni-close .mni-b2 {
  opacity: 0;
}

.mni-close .mni-b1 {
  transform: translate(0, 8px) rotate(-45deg);
}

.mni-close .mni-b3 {
  transform: translate(0, -8px) rotate(45deg);
}

.full-width {
  width: 100%;
  /* max-width: 1280px;
  margin: 0 auto; */
}

.row {
  max-width: 1024px;
  margin: 0 auto;
  /* border: 1px solid red; */
}

.phone-section {
  align-self: flex-end;
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.5;
}

.header-home {
  height: 80vh;
  list-style: none;
  background-image: url(/img/pand.jpg);
  background-size: cover;
  background-position: center;
  background-position-y: -580px;
  background-repeat: no-repeat;
}

.home-services-list {
  display: inline-block;
  margin: 2rem 3rem;
}

.home-services-list li {
  list-style-type: none;
}

.lst-mark {
  margin-right: .3em;
  font-size: 2em;
  color: #0f0;
  text-shadow: 2px 2px var(--clr-blue-d);
}

.section-top-occasion {
  margin: 120px 0 40px 0;
  padding: 20px;
  border: 2px solid var(--clr-blue-d);
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--clr-grey-d);
  text-align: center;
  text-transform: uppercase;
  background-color: var(--clr-blue-m);
  box-shadow: var(--std-shadow-static);
}

.top-occ {
  display: flex;
  justify-content: center;
  gap: 9px;
  border-radius: 5px;
}

.top-occ__header {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--clr-grey-d);
  letter-spacing: -1px;
}

.top-occ__img-section {
  position: relative;
  flex-basis: 480px;
  border: 2px solid var(--clr-blue-d);
  box-shadow: var(--std-shadow-static);
  /* overflow: hidden; */
}

.top-occ__img-section img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.top-occ__details_1,
.top-occ__details_2 {
  flex: 1;
  padding: 9px;
  border: 2px solid var(--clr-blue-d);
  background-color: var(--clr-grey-l);
  font-family: 'Courier New', Courier, monospace;
  font-size: .9em;
  color: #000;
  line-height: 1.8em;
  box-shadow: var(--std-shadow-static);
}

.top-occ__details_1 {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: right;
}

.top-occ__details_2 {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: left;
}

.normal-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin-bottom: 8rem;
}

.contact-form {
  grid-column: 1fr;
  color: #000;
}

.contact-section,
.address-section {
  grid-column: 1fr;
  padding: 10px;
  border: 2px solid var(--clr-grey-l);
  border-radius: var(--std-border-rad);
  box-shadow: var(--std-shadow-static);
  line-height: 150%;
}

/* eXclude BoT */
.text-field-xbt {
  display: none;
  visibility: hidden;
}

.form-result-message {
  margin-bottom: 20px;
  padding: 5px 10px;
  border: 2px solid #f00;
  border-radius: var(--std-border-rad);
  line-height: 1.5;
}
.form-result-message li {
  list-style-type: none;
}

.form-input-error {
  color: #f00;
}

.chars-counter {
  width: fit-content;
  margin: 10px auto 30px;
  padding: .6em 2.4em;
  border: 2px solid var(--clr-blue-m);
  border-radius: 5px;
}

.occ-services-header {
  margin-bottom: 80px;
  padding: 2rem;
  border: 2px solid var(--clr-blue-d);
  border-radius: var(--std-border-rad);
  background-color: var(--clr-grey-l);
  box-shadow: var(--std-shadow-static);
  color: #000;
  line-height: 1.5;
  text-align: center;
}

.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 2rem 0;
}

.logo-bovag { width: 50px; }
.logo-nap { width: 140px; }
.logo-rdw { width: 170px; border-radius: 13px; }

.occ-show-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 50px;
}

.occ-show-container .area-head {
  grid-row: 1 / 2;
  grid-column: 1 / 7;
}

.occ-show-container .area-image {
  grid-row: 2 / 6;
  grid-column: 1 / 5;
}

.occ-show-container .area-thumbs {
  display: grid;
  margin-right: 20px;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  grid-row: 6 / 7;
  grid-column: 1 / 5;
  padding: 15px 10px;
  border-radius: var(--std-border-rad);
  border: 1px solid var(--clr-grey-l);
  background-color: #e1e1e1;
  box-shadow: var(--std-shadow-static);
}

.area-thumbs .img-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--clr-blue-d);
}

.occ-show-container .area-details {
  grid-row: 2 / 6;
  grid-column: 5 / 7;
  border-radius: 5px;
  border: 1px solid var(--clr-grey-l);
  background-color: #e1e1e1;
  box-shadow: var(--std-shadow-static);
}
.details-topocc {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: var(--std-border-rad);
  color: #fff;
  border: 1px solid #fff;
  background-color: var(--clr-green-m);
}

.occ-show-container .area-options {
  margin-top: 50px;
  padding: 6px;
  border-radius: 5px;
  border: 1px solid var(--clr-grey-l);
  grid-row-start: 7;
  grid-column: 1 / 7;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  color: var(--clr-blue-m);
  box-shadow: var(--std-shadow-static);
}
.options-category {
  margin: 10px 0 15px;
  color: var(--clr-grey-m);
  font-size: 1.2em;
  text-transform: uppercase;
}
.options-option {
  margin: 0 0 30px 20px;
  font-size: 1.1em;
  line-height: 1.25;
}

.occ-show-container .area-options h2 {
  color: #666;
}

.occ-show-container .area-options h3 {
  display: inline-block;
  margin-bottom: 15px;
  color: #666;
}

.occ-show-container .area-options li {
  margin-left: -10px;
  list-style-type: none;
  color: var(--clr-blue-d);
}

.occ-show-container .area-options li::before {
  margin-right: 5px;
  content: "+";
  color: #666;
}

.occ-show-container .img-main {
  display: block;
  width: 100%;
  object-fit: cover;
}

.occ-show-container .image-main-container {
  position: relative;
  overflow: hidden;
  margin: 0 20px 30px 0;
  border: 2px solid var(--clr-grey-l);
  border-radius: var(--std-border-rad); 
  background-color: #666;
  box-shadow: var(--std-shadow-static);
}
.image-main-container .no-image {
  width: 400px;
  height: 300px;
  margin: 20px auto;
  padding-top: 80px;
  border: 2px dashed var(--clr-blue-d);
  border-radius: 5px;
  font-size: 1.5em;
  color: var(--clr-green-d);
  text-align: center;
  background-color: var(--clr-grey-l);
}

.occ-show-container .image-label-sold,
.occ-overview-container .image-label-sold {
  position: absolute;
  width: 250px;
  height: fit-content;
  transform: rotate(-45deg);
  padding: 5px 0;
  border: 2px solid #f00;
  background-color: hsl(39, 90%, 50%);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.label-container {
  position: absolute;
  top: 28px;
  left: -80px;
  z-index: 1;
  width: 250px;
  height: 250px;
}

.occ-show-container .price-tag {
  margin-bottom: 30px;
  padding: 8px;
  font-size: 1.2em;
  color: #383838;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: var(--clr-green-d);
}

.occ-show-container .price-tag-sold,
.occ-overview-container .price-tag-sold {
  text-decoration-line: line-through;
}

.area-description,
.area-contact {
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 20px 30px;
  color: #333;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 5px;
  background-color: #e1e1e1;
  box-shadow: var(--std-shadow-static);
}

.area-description h3,
.area-contact h3 {
  color: var(--clr-blue-m);
}

.area-description {
  grid-row: 8 / 9;
  grid-column: 1 / 4;
}

.area-contact {
  grid-row: 8 / 9;
  grid-column: 4 / 7;
  box-shadow: var(--std-shadow-static);
}

a.link-back:link,
a.link-back:visited {
  width: fit-content;
  margin: 10px 0 15px 0;
  font-size: 1.2em;
  text-decoration: none;
}
a.link-to-all:link,
a.link-to-all:visited {
  width: fit-content;
  margin: 10px 0 15px 0;
  font-size: 1.2em;
  color: var(--clr-grey-m);
}
a.link-to-all:hover,
a.link-to-all:active {
  color: var(--clr-blue-m);
}

a.link-button:link,
a.link-button:visited {
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--clr-blue-m);
  background-color: var(--clr-blue-l);
}

a.link-button:hover,
a.link-button:active {
  color: inherit;
  font-weight: 500;
  background-color: var(--clr-green-d);
  border-color: var(--clr-blue-d);
}

.phone-section a:link,
.phone-section a:visited {
  color: #fff;
  text-decoration: none;
}

.phone-section a:hover,
.phone-section a:active {
  text-decoration: underline;
  color: var(--clr-blue-l);
}

.inline-symbol {
  display: inline;
  font-size: 1.2em;
  cursor: pointer;
}

.updated-at {
  margin-bottom: 1rem;
  color: var(--clr-blue-m);
}

.occ-overview-container {
  display: grid;
  gap: 5rem 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 8rem;
}

.occ-overview-item {
  position: relative;
  grid-column: 1fr;
  border: 1px solid var(--clr-grey-m);
  border-radius: var(--std-border-rad);
  color: var(--clr-grey-d);
  overflow: hidden;
  scroll-margin-top: 180px;
  transition: all .2s;
}

.occ-overview-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.occ-overview-item .no-image {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 50%;
  margin: 0 auto;
  padding-top: 12%;
  border-radius: var(--std-border-rad);
  border: 2px dashed #f00;
  text-align: center;
}

.occ-overview-no-query-result {
  margin: 8rem 0 10rem 0;
  color: var(--clr-grey-d);
}

.occ-overview-item .description {
  padding: 6px;
  font-size: .9em;
  line-height: 1.2;
}

.occ-overview-item .price-tag {
  margin-bottom: 1.5rem;
  padding: 10px 0;
  color: var(--clr-grey-d);
  background-color: var(--clr-grey-l);
  font-family: verdana;
  text-align: center;
}

.occ-overview-item .brand-and-type {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--clr-blue-d); 
}
.occ-overview-item .specs {
  font-size: .9rem;
  font-weight: bold;
  text-transform: lowercase;
}

.occ-overview-item:hover {
  color: var(--clr-blue-d);
  border-color: var(--clr-blue-d);
  box-shadow: 0 0 25px rgba(33, 33, 33, 0.7);
  transform: scale(1.05);
}

.occ-overview-item a:focus-visible {
  background-color: var(--clr-green-l);
}

.occ-overview-applied-filter {
  margin-bottom: 1.5rem;
  padding: .5rem;
  color: var(--clr-grey-d);
  border: 1px solid var(--clr-grey-l);
}

.occ-overview-heading-topocc,
.occ-home-heading-topocc {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: .6em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #f00;
  background-color: var(--clr-green-m);
}

.occ-overview-item a:link,
.occ-overview-item a:visited {
  display: block;
  height: 100%;
  color: var(--clr-grey-m);
  text-decoration: none;
}

.occ-overview-item a:hover,
.occ-overview-item a:active {
  color: var(--clr-blue-d);
}

.area-details dl {
  display: grid;
  gap: .8rem 1.6rem;
  grid-template-columns: 1fr 3fr;
}

.area-details dl dt {
  padding-left: 8px;
  font-size: .9em;
  font-weight: normal;
  color: var(--clr-grey-m);
  text-transform: lowercase;
}

.area-details dl dd {
  font-weight: 400;
  color: var(--clr-blue-d);
  text-transform: uppercase;
}

.area-details dl .nap-logo {
  height: 1.1em;
  margin-left: 5px;
  vertical-align: middle;
}


/* Image carrousel */
.images {
  display: none;
  box-shadow: var(--std-shadow-static);
}

.fade {
  animation-name: fade;
  animation-duration: .8s;
}

@keyframes fade {
  from { opacity: .1; }
  to { opacity: 1; }
}

.prev,
.next {
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  font-weight: bold;
  font-size: 18px;
  color: white;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.next:hover,
.prev:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.img-index {
  position: absolute;
  top: 88%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 1em;
  color: #fff;
  background-color: rgba(51, 51, 51, 0.3);
}

input[type="text"],
input[type="submit"],
textarea {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 5px;
  border: 2px solid var(--clr-blue-m);
  border-radius: 3px;
  font-size: 1em;
}

input[type="submit"] {
  display: block;
  margin: 30px 0;
  padding: .5em;
  border-radius: 3px;
  border: 2px solid var(--clr-blue-d);
}

.flash-message {
  width: fit-content;
  margin: 0 auto 1rem auto;
  padding: 1rem 2rem;
  border: 4px dashed var(--clr-grey-m);
  border-radius: var(--std-border-rad);
  background-color: var(--clr-grey-l);
}
.ok { border-color: #0f0; }
.warning { border-color: #ffa500; }
.error { border-color: #f00; }

.frm-result-message {
  display: none;
}

.frm-result-message-display {
  display: block;
}

textarea {
  height: 300px;
}

.rdw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 100px 0;
  padding: 30px 20px;
  border-radius: var(--std-border-rad);
  background-color: var(--clr-blue-l);
  box-shadow: var(--std-shadow-static);
  line-height: 1.5;
  scroll-margin-top: 180px;
}

.services-item-txt {
  flex-basis: 50%;
  flex-shrink: 1;
  flex-grow: 1;
}

.services-item-img {
  flex-basis: 50%;
  flex-shrink: 1;
  flex-grow: 0;
}

.services-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--std-border-rad);
  box-shadow: var(--std-shadow-static);
}

.services-item-txt > strong {
  color: var(--clr-blue-d);
}

/* Home page header image */
@media only screen and (min-width: 360px) and (max-width: 480px) {
  .header-home {
    background-image: url(/img/pand-480.jpg);
    background-size: auto;
    background-position-y: -100px;
  }
  .services-item-txt {
    flex-grow: 1;
  }
  .services-item-img {
    flex-basis: 100%;
  }

  .services-container {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 481px) and (max-width: 640px) {
  .header-home {
    background-image: url(/img/pand-640.jpg);
    background-size: auto;
    background-position-y: -100px;
  }
}

@media only screen and (min-width: 641px) and (max-width: 800px) {
  .header-home {
    background-image: url(/img/pand-800.jpg);
    background-size: auto;
    background-position-y: -100px;
  }
}

@media only screen and (min-width: 801px) and (max-width: 1024px) {
  .header-home {
    background-image: url(/img/pand-1024.jpg);
    background-size: auto;
    background-position-y: -100px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1920px) {
  .header-home {
    background-image: url(/img/pand-1920.jpg);
    background-size: auto;
    background-position-y: -100px;
  }
}

@media only screen and (min-width: 1921px) and (max-width: 2560px) {
  .header-home { background-image: url(/img/pand-2560.jpg); }
}