
/* Custom home page header */
/* ********* Hero section ********* */

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.hero.not-found {
  background-position: 0 70%;
  background-image: url('../assets/images/pages/not-found/hero-light.png'), url('../assets/images/pages/standard/bg-pattern.svg');
  background-repeat: no-repeat, repeat;
  background-size: cover, 5px;
  height: 90vh;
  display: flex;
  align-items: center;
}

.hero {
  background-image: url('../assets/images/pages/home/bg-pattern.svg');
  background-repeat: repeat;
  background-size: 5px;
  height: 40vh;
  min-height: 400px;
  border-bottom: 1px solid var(--gray200);
  display: flex;
  align-items: center;
  
}

.hero .group {
  color: #fff;
    margin-top: 120px;
  padding-top: 40px;
}

.hero .group .title {
  font-size: 60px;
  font-weight: 700;
  color: var(--title-color);
  font-family: 'Merriweather', serif;
    text-align: center;

}
.hero .group .title div {
display: inline-block;
}
.hero .group .title span {
color: var(--primary);
}

.hero .group .title span {
  color: var(--primary);
}



.hero .group .subtitle {
  font-size: 24px;
  font-weight: 300;
  color: var(--title-color);
  text-align: center;
  max-width: 600px;
  margin: 20px auto;
}

/* ********* Sections ********* */
.section.off-white {
  background: var(--gray100);
}

.section .group {
  border-radius: var(--border-radius);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.section .group .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var(--title-color);
  text-align: center;
}

.section .group .text {
  text-align: center;
  color: var(--text-color);
  margin: 0 auto;
}

.section .group .text.italic {
  font-style: italic;

}


.section .color-bar {
  margin: 0 auto;
}
/* ********* Team members section ********* */

.section.team-members {

  background: #fff;
}
.section.team-members .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var(--title-color);
  text-align: center;
}

.section.team-members .role {
  text-align: center;
  font-size: 24px;
  font-weight: var(--title-weight);
  color: var(--gray200);
  margin-top: 70px;
}
.section.team-members .group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
}

.section.team-members .group .item  {
  margin: 10px;
  width: 340px;
  height: 240px;

  border-radius: var(--border-radius);
  perspective: 1000px;

      padding: 10px;
}

.section.team-members .group .item.new-career .flip-inner  {
  border: 2px dashed var(--gray200);
}

.section.team-members .group .item.new-career img  {
  opacity: 0.7;
}


.section.team-members .item .flip-inner   {
  position: relative;
 width: 100%;
 height: 100%;
 text-align: center;
 transition: transform 0.8s;
 transform-style: preserve-3d;
}

.section.team-members .item:hover .flip-inner {
  /* transform: rotateY(180deg); */
}

.section.team-members .flip-front h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.section.team-members .flip-front h3 {
  font-size: 14px;
  text-align: center;
}

.section.team-members .item .flip-front img {
  border-radius: 50%;
  /* box-shadow: var(--box-shadow); */
  width: 140px;
  display: block;
  margin: 0 auto;
}

.section.team-members .flip-front, .section.team-members .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

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

  background: var(--gray100);
  box-shadow: var(--box-shadow);
}

.section.team-members .flip-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    transform: rotateY(180deg);
}


.section.team-members .flip-back  .line {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  width: 100%;

}
.section.team-members .flip-back  .line .icon {
  margin-right: 15px;
    font-size: 20px;
      transition: 0.3s;
}
.section.team-members .flip-back  .line .info a {
  font-size: 16px;
  font-weight: 700;
    transition: 0.3s;
}

.section.team-members .flip-back  .line:hover a, .section.team-members .flip-back  .line:hover .icon {
  color: var(--primary);
}




/* ********* A Team of Specialists section ********* */
.award-winning {
  background: var(--gray100);
}

.award-winning .text-image {
  display: grid;
  grid-template-columns: calc(70% - 120px) 30%;
  grid-gap: 60px;
  align-items: center;
}

.award-winning .group .award-image img {
  width: 100%;
}

.award-winning .group .subtitle {
  font-size: 14px;
  color: var(--gray200);
}

.award-winning .group .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var(--title-color);
}

.award-winning .group .overview {
  font-style: italic;
  color: var(--gray300);
  font-weight: 300;
}

.award-winning .group .text {
  color: var(--text-color);
  margin: 20px 0;
}

.award-winning .group .learn-more {
  display: flex;
  justify-content: center;
}


/* ********* Commitment - About Page ********* */
.commitment {
  position: relative;
z-index: 100;
}


/* ********* Client List About ********* */
.about-client-list {
  position: relative;
  min-height: 500px;
  background: var(--gray100);
    z-index: 1;
}

.about-client-list .clients{
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
width: calc(100% - 80px);
    z-index: -1;
}

.about-client-list img {
  width: 180px;
}


.about-client-list .viewable-window {
  background: red;
  height: 500px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(247,248,249,1) 0%, rgba(247,248,249,0) 50%, rgba(247,248,249,1) 100%);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;

}

.about-client-list .mera-awards {
  width: 820px;
  /* height: 420px; */
  padding: 40px 20px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 29px 63px 0 rgba(11,40,61,.13);
  border-radius: var(--border-radius);
  display: grid;
  grid-template-columns: 120px auto auto;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 3;
}
.about-client-list .mera-awards .img {
  padding: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.about-client-list .mera-awards img {
  width: 100px;

}



.about-client-list .mera-awards h3 {
  font-weight: 700;
  font-size: 24px;
}

.about-client-list .mera-awards .year {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 10px;
}




/* ********* Services section - Services Page ********* */
.services .group {
  display: flex;
  justify-content: center;
}


.services .group .item {
  height: 100%;
  width: 100%;
  margin: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: var(--border-radius);
  max-width: 500px;
  
}

.services .group .item .icon {
  border-radius: var(--border-radius);
  background: #fff;
  margin: 0 20px;
  transition: 0.3s;
    padding: 26px;
    box-shadow: var(--box-shadow);
    background: var(--secondary);
}

.services .group .item .icon i {
  font-size: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.services .group .item h4 {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s;
}

.services .group .item .text {
  font-size: 16px;
  color: var(--text-color);

}

.services .group .item .text b {
  font-weight: 800;
  color: var(--primary);
}





/* ********* Services List - Services Page ********* */
.services-list {
  background-image: url('../assets/images/pages/standard/bg-pattern.svg');
  background-repeat: repeat;
  background-size: 5px;
  background: var(--gray100);
    /* background: #fff; */
}

.services-list .group {
  display: grid;
  grid-template-columns: 400px 400px 400px;
  justify-content: center;
}

.services-list .group .item {
  background: #fff;
  border-radius: var(--border-radius);
  margin: 0 20px;
  padding: 50px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    border: 1px solid var(--gray100);
}

/* For balances page */
.services-list.wide .group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}


.services-list .group .item::after {
  box-shadow: 0 29px 63px 0 rgba(11,40,61,.13);
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index: -1;
  height: 100%;
  width: 100%;
  content: '';
  transition: 0.3s;
   border-radius: var(--border-radius);
}

.services-list .group .item:hover {
  transform: scale(1.01);
  z-index: 2;
  /* border: 1px solid var(--gray200); */
}

.services-list .group .item:hover a {
  background: var(--primary);
  /* border-color: var(--primary); */
  color: var(--white);
}

.services-list .group .icon {
  font-size: 50px;
  background:var(--gray100);
  height:110px;
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow:  10px 10px 21px rgba(217, 218, 221,0.5),
             -10px -10px 21px #ffffff; */
}

.services-list .group .icon img {
  height: 100%;
}


.services-list .group .icon i {
  color: var(--gray400);
  transition: 0.3s;
}

.services-list .group h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0;
}

.services-list .group p {
  font-size: 16px;
  color: var(--text-color);
    padding: 6px 0;
    text-align: left;
}

.services-list .group a {
  margin: 30px 0;
  cursor: pointer;
  width: 180px;
  background: var(--primary);
  border: 0;
  color: var(--white);
  transition: 0.3s;
}

.services-list  b {
  font-weight: 800;
  color: var(--white);
}



/* ********* Service card section - Services Page ********* */

.section.service-cards .service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section.service-cards .service-sidebar {
  position: sticky;
  left: 0px;
  top: 80px;
  /* height: 100vh; */
  z-index: 1;
  width: calc(100% - 80px);
  color: var(--gray200);
  background: var(--gray100);
  padding:  20px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 60%;
  max-width: 400px;
  margin: 20px auto;
}

.section.service-cards .service-sidebar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

}

.section.service-cards .service-sidebar li {
  margin: 0 2px;
    color: var(--gray200);

}

.section.service-cards .service-sidebar li a{
    color: var(--gray300);

}


.section.service-cards .ISO-price {
  display: flex;
  justify-content: center;
  align-items: center;
}



.section.service-cards .ISO-price input {
  display: none;
}
.section.service-cards .ISO-price input+label {
  height: 26px;
  width: 50px;
  background: var(--gray200);
  border-radius: 30px;
  position: relative;
  margin: 0 10px;
  cursor: pointer;
}

.section.service-cards .ISO-price input+label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}

.section.service-cards .ISO-price input:checked+label::after {
  left: 27px;
}

.section.service-cards .ISO-price span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray300);
}

.section.service-cards .disclaimer {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
  color: var(--gray300);
}
.section.service-cards .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var(--title-color);
  text-align: center;
}



.section.service-cards .service-title {
  text-align: center;
  font-size: 24px;
  font-weight: var(--title-weight);
  color: var(--title-color);
  margin-top: 70px;
  display: none;
}
.section.service-cards .group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  overflow: visible;
}

.section.service-cards .group .item  {
  margin: 10px;
  width: 240px;
  text-align: center;

  background: var(--gray100);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}





.section.service-cards .item h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.section.service-cards .item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray300);
}

.section.service-cards .item p {
  font-size: 18px;
  color: var(--gray500);
    margin-bottom: 10px;
}

.section.service-cards .item img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}

.section.service-cards .item .price {
  position: relative;
  cursor: pointer;
}

.section.service-cards .item .price p {
  border-bottom: 1px dotted var(--gray300);
}
.section.service-cards .item .available {
  cursor: pointer;
  position: relative;
  display: none;
}

.section.service-cards .item .available h3 {
  border-bottom: 1px dotted var(--gray300);

}



.section.service-cards .item .price:hover .tooltip {
  display: block;
}


.section.service-cards .item .available:hover .tooltip {
  display: block;
}


.section.service-cards .tooltip {
  background: var(--secondary);
  color: var(--gray200);
  display: block;
  border-radius: var(--border-radius);
  font-size: 12px;
  padding: 10px;
  position: absolute;
  width: 200px;
  box-shadow: var(--box-shadow);
  display: none;
  font-weight: 400;
}
.section.service-cards .price .tooltip {
    top: -90px;
  left: -70px;
}

.section.service-cards .available .tooltip {
    top: -70px;
  left: -18px;
}



.section.service-cards .tooltip::before {
border: solid;
border-color: var(--secondary) transparent;
border-width: .8em .7em 0;
top: 100%;
content: "";
display: block;
left: 50%;
transform: translate(-50%);
position: absolute;
z-index: 1;
}





/* ********* Product card section - Product card page ********* */

.section.product-cards .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var(--title-color);
  text-align: center;
}

.section.product-cards .service-type {
  text-align: center;
  font-size: 24px;
  font-weight: var(--title-weight);
  color: var(--title-color);
  margin-top: 70px;
}
.section.product-cards .group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
    overflow: visible;
}

.section.product-cards .group .item {
  margin: 20px;
  width: 320px;
  height: 420px;
  text-align: center;

  background: var(--gray100);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;

}


.section.product-cards .item .discount {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  background: var(--emphasis);
  color: #fff;
  padding: 4px 30px;
  border-radius: 30px;
}

.section.product-cards .item .discount.sold {
  background: rgb(21, 179, 100);
  width: 130px;
 }


.section.product-cards .item h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.section.product-cards .item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray300);
}

.section.product-cards .item p {
  font-size: 18px;
  color: var(--gray500);
    margin-bottom: 10px;
}

.section.product-cards .item img {
  border-radius: 50%;
  /* box-shadow: var(--box-shadow); */
  width: 230px;
  display: block;
  margin: 0 auto;
}


/* ********* Pipettes Page ********* */
.upgrade-lab {
  background: url('../assets/images/pages/home/lab.jpg');
  background-size: cover;
  background-position: top 70%;
}

.upgrade-lab .color-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
}

.upgrade-lab .group {
  width: 70%;
  color: var(--white);
}

.upgrade-lab .color-bar-logo .color-bar {
  background: var(--white);
}

.upgrade-lab .group .subtitle {
  font-size: 30px;
}

.upgrade-lab .group .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
}

.upgrade-lab .group .text {
  opacity: 0.8;
}

.upgrade-lab .group a {
  background: var(--primary);
  color: var(--white);
}

.learn-how {
  background: var(--gray100);
  overflow: hidden;
}

.learn-how a {
  display: block;
  color: var(--white);
  padding-right: 40px;
  padding-left: 40px;
  transition: 0.3s;
  background: var(--primary);
}

.learn-how h3 {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  max-width: 1000px;
  margin: 0 auto;
}

.learn-how p {
  font-size: 20px;
  opacity: 0.8;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto;
}

.learn-how a:hover {
  background: var(--primary);
  color: var(--white);
}


.calibration-type {
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
}

.calibration-description {
  text-align: center;
color: var(--text-color);
margin: 0 auto;
font-size: 16px;
margin-bottom: 36px;
margin-top: 12px;
max-width: 800px;
}

.calibration-buttons {
  margin: 0 auto;
  margin-top: 48px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.calibration-buttons  a {
  margin-left: 12px;
}

.calibration-point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-items: flex-start;
  /* width: 250px; */
  align-self: flex-start;
}

.calibration-point i {
  margin-right: 24px;
  margin-left: 48px;
}

.calibration-point.included {
  color: var(--dark);
}
.calibration-point.included p {
  color: var(--dark);
}

.calibration-point.excluded {
  color: var(--text-color);
  opacity: 0.5;
}

.item p.calibration-price {
  color: var(--secondary);
  margin-top: 20px;
  background: rgb(240, 242, 245);
  padding: 6px 30px;
  border-radius: 30px;
}

.group h1.pipette-type {
  font-size: 24px;
}

.contact-form {
  background: var(--gray100);
}

.contact-form .title {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var(--title-color);
  text-align: center;
}

.contact-form .text {
  text-align: center;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form form {
  padding: 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px 0 rgba(11, 40, 61, .07);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form form .group {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-form form .input {
  position: relative;
  width: 100%;
}

.contact-form .floating-label {
  position: absolute;
  top: 36px;
  left: 30px;
  transition: 0.15s;
  color: var(--text-color);
  pointer-events: none;
}

.contact-form .floating-label.floating {
  top: 16px;
  left: 30px;
  transform: scale(0.7);
  transform-origin: left;
}

.contact-form form input[type='text'], 
.contact-form form input[type='email'], 
.contact-form form input[type='tel'],
.contact-form form select {
  padding: 26px 20px;
  font-size: 18px;
  border-radius: var(--border-radius);
  background: var(--gray100);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 10px;
  width: calc(100% - 60px);
  outline: none;
  font-family: 'Open Sans', helvetica, sans-serif;
  color: var(--gray400);
  font-weight: 400;
}
.contact-form form select {
  -webkit-appearance: none;
  /* padding: 2px 20px; */
  /* width: auto; */
  font-weight: 400;
  font-size: 16px;
  width: calc(100% - 18px);
}

.contact-form form input:focus {
  border: 1px solid var(--secondary);
  box-shadow: none;
  outline: none;
}

.contact-form form .pipette-type-inputs input {
  /* width: 100px; */
}
.contact-form textarea {
  padding: 26px 20px;
  font-size: 18px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--gray100);
  width: calc(100% - 60px);
  resize: none;
  margin: 10px;
}

.contact-form form textarea:focus {
  border: 1px solid var(--secondary);
  box-shadow: none;
  outline: none;
}

.contact-form form button {
  color: var(--white);
  padding: 18px 20px;
  margin: 10px;
  background: var(--secondary);
  width: calc(100% - 16px);
}

.contact-form form button:hover {
  background: var(--primary);
  transform: inherit;
}

.contact-form form input[type='radio'] {
  margin-right: 12px;
}

.contact-form form .select-options {
  margin-right: 32px;
}

.contact-form .company-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
}

.contact-form form input[type='checkbox'] {
  margin-right: 0 6px;
  margin-left: 10px;
}

.contact-form form input[type='checkbox']~label {
  margin-right: 12px;
}

.contact-form form #return-shipping {
  display: none;
}

.contact-form form #return-shipping input {
  margin-left: 10px;
}


.contact-form form #return-shipping.show {
  display: flex;
}

.contact-form form #return-shipping .return-options {
  margin-right: 24px;
}

.contact-form form #return-shipping .shipping-location {
    background: var(--gray100);
  padding: 8px 34px 8px 24px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-right: 0;
}

.contact-form form p {
  margin-left: 10px;
}

/* Honeypot */
.contact-form #email {
  display: none;
}


/* ********* Balances Page ********* */
.balance-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.balance-types .item {
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.balance-types h4 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.balance-types img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 200px;
}

.balance-tests img {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 200px;
}

.balance-tests .test {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.balance-tests .test h4 {
  font-size: 22px;
  font-weight: 700;
}

.services-list.wide .group .calibration-point i {
  margin-right: 24px;
  margin-left: 24px;
}
/* Not Found page */
.return-home {
  display: flex;
  justify-content: center;
}

/* Download page */
.download {
  color: var(--secondary);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 960px) {
    .services-list .group {
  grid-template-columns: 400px;
  grid-template-rows: 1fr 1fr 1fr;
  grid-gap: 20px;
  }

    /* For balances page */
  .services-list.wide .group {
    display: block;
  }

  .services-list.wide .group .item {
    margin-bottom: 24px;
  }

  .balance-tests {
    flex-direction: column;
  }

  .balance-tests .test {
    display: block;
    text-align: center;
    margin-bottom: 48px;
  }

  .balance-services {
    flex-direction: column;
  }

  
}

@media only screen and (max-width: 740px) {

  .hero .group {
margin-top: 60px;
}
  .hero .group .title {
  font-size: 40px;
  }

  .hero .group .subtitle {
font-size: 18px;
}

    /* ********* Award-winning section ********* */

  .award-winning .text-image {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
  }

   .award-winning .text {
    order: 2
  }

.award-winning .group .award-image {
    order: 1;
  }
  .award-winning .group .award-image img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }

  .services .group {
display: flex;
flex-direction: column;
}

.services .group .item .icon {
  margin-left: 0;
}
.services .group .item .text {
font-size: 14px;
}

.services .group .item {
width: calc(100% - 40px);
}

.section.service-cards .service-sidebar {

width: calc(100% - 80px);

}

/* Contact forms */
.contact-form form .group {
  grid-template-columns: 1fr;
}

.contact-form .number-of-pipettes {
  flex-direction: column;
}
.contact-form form #return-shipping.show {
  flex-direction: column;
}

.contact-form form #return-shipping.show .shipping-location {
  margin-top: 24px;
  padding: 8px 12px;
}

}
