@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: Starkey;
  font-style: normal;
  src: url('./fonts/Starkey.ttf');
}

@font-face {
  font-family: Starkey;
  font-style: italic;
  src: url('./fonts/StarkeyItalic.ttf');
}

:root {
  --light-green: #00C81F;
  --light-green-2: #BCE3CF;
  --dark-green: #005655;
  --dark-green-2: #002929;
  --text-grey: #707070;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: Poppins, Roboto, Arial, sans-serif;
  font-weight: 500;

  max-width: 100vw;
  overflow-x: hidden;
}


.container {
  width: 1330px;
  max-width: 100%;
  padding: 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex !important;
}

.f-jcc {
  justify-content: center;
}

.f-jce {
  justify-content: end;
}

.f-jcsb {
  justify-content: space-between;
}

.f-aic {
  align-items: center;
}


.btn {
  text-decoration: none !important;
  font-size: 1.1rem;
  margin: 15px;
  position: relative;
  z-index: 10;
  border-radius: 3em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 0.75em 1.5em;
  user-select: none;
}

.btn-white {
  background-color: #fff;
  color: var(--dark-green);
  padding: 1em 1.75em;
}

.btn-dark-green {
  background-color: var(--dark-green);
  color: #fff;
  transition: 0.2s all linear;
}

.btn-dark-green:hover {
  background-color: #003E3D;
}

.subscribe-img {
  position: absolute;
  z-index: 5;
}

.subscribe-img--1 {
  top: -55px;
  left: 14%;
}

.subscribe-img--2 {
  top: -135%;
  right: 0px;
}

.subscribe-img--3 {
  right: 47px;
}

.icon {
  height: 2em;
  width: 2em;
  display: inline-flex;
  border-radius: 3em;
  justify-content: center;
  align-items: center;
}

.icon:before {
  content: '';
  height: 1em;
  width: 1em;
  display: block;
}

.icon-fb:before {
  content: '';
  background: url('./icons/fb.svg') no-repeat 50% 50% / contain;
}

.icon-ins:before {
  background: url('./icons/ins.svg') no-repeat 50% 50% / contain;
}

.icon-mail:before {
  background: url('./icons/mail.svg') no-repeat 50% 50% / contain;
}

.icon-earth:before {
  background: url('./icons/earth.svg') no-repeat 50% 50% / contain;
  height: 1.5em;
  width: 1.5em;
}

.btn-white .icon {
  background-color: var(--dark-green);
}

.font-starkey {
  font-family: Starkey;
}

.font-light-green {
  color: var(--light-green);
}

.text-center {
  text-align: center;
}

header {
  position: relative;
}

body:not(.home) header {
  border-bottom: 1px solid var(--light-green-2)
}

header .container.top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

body.home header {
  min-height: 110vh;
  /* overflow: hidden; */
  /* clip-path: ellipse(110vw 66% at 50% 30%); */
}

.flyout-menu .menu {
  position: fixed;
  top: -100%;
  opacity: 0;
  transition: .3s opacity linear;
}

.flyout-menu .menu.open {
  position: fixed;
  top: 50px;
  background-color: #fff;
  padding: 70px 60px;
  z-index: 999;
  opacity: 1;
}

.flyout-menu .overflow {
  display: none;
}

.flyout-menu .overflow.active:before {
  content: '';
  opacity: 0;
  transition: opacity 0.5s linear;
}

.flyout-menu .overflow.active {
  display: block;
}

.flyout-menu .overflow.active:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 500;
  opacity: 1;
  background: #00000050;
}


.flyout-menu .menu .close {
  width: 60px;
  height: 60px;
  background: var(--light-green-2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 30px;
}

.flyout-menu .menu .close:before,
.flyout-menu .menu .close:after {

  content: '';
  width: 4px;
  height: 70%;
  display: block;
  background: var(--dark-green);
  position: relative;
}

.flyout-menu .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.flyout-menu .menu ul a {
  padding: 20px 20px;
  font-size: 1.2rem;
  display: block;
  min-width: 280px;
  text-decoration: none;
  color: var(--dark-green);
}

.flyout-menu .menu ul li+li {
  border-top: 1px solid var(--light-green-2);
}

.flyout-menu .menu .close:before {
  transform: rotate(45deg);
  left: 2px;
}

.flyout-menu .menu .close:after {
  transform: rotate(-45deg);
  right: 2px;
}

header .open-menu-link {
  font-size: 1.1rem;
  width: auto;
  aspect-ratio: 1/1;
  display: block;
  padding: 0;
  margin: 15px 15px 15px 0;
  display: flex;
}

header .open-menu-link span {
  width: 1em;
  height: 1.4em;
  display: flex;
  justify-content: space-around;
  align-items: end;
  flex-direction: column;
}

header .open-menu-link span i {
  width: 1.1em;
  background: #fff;
  height: 3px;
  display: block;
  transition: .3s all linear;
}

header .open-menu-link span i+i {
  width: .8em;
}

header .open-menu-link span i+i+i {
  width: .5em;
}

header .open-menu-link:hover i {
  width: 1.1em;
}

header btn.all-sites-link {
  gap: 0.5em;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h1.font-starkey,
h1 .font-starkey {
  font-size: 4rem;
  letter-spacing: 1px;
  font-weight: 400;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1em;
  color: var(--dark-green);
}

h2.font-starkey,
h2 .font-starkey {
  font-size: 4rem;
  letter-spacing: 1.4px;
  font-weight: 400;
}

h3 {
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 700;
}

h3.font-starkey,
h3 .font-starkey {
  font-size: 4rem;
  letter-spacing: 1.4px;
  font-weight: 400;
}

h1 .font-starkey {
  margin-top: 1rem;
  display: block;
}

.top-screen {
  color: var(--dark-green);
}

.top-screen p {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.25em;
}

section.top-screen .btn {
  margin-left: 0;
}

.top-screen-img--1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(100vh + 95px);
  z-index: -1;
}

body.home .top-screen h1 {
  margin-top: 2.5em;
  margin-bottom: 0.2em;
}

body.home .top-screen {
  font-size: 4rem;
  clip-path: ellipse(110vw 66% at 50% 30%);
  min-height: 110vh;
}

body.home .top-screen .container {
  padding-top: 70px;
  position: relative;
  z-index: 99;
}

body.home .top-screen a.btn {
  display: block;
  width: fit-content;
  margin-top: 0;
}

/* section.about */

section.about {
  color: var(--text-grey);
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  overflow-x: hidden;
}


section.about .container {
  gap: 3rem;
}

section.about .pretext {
  line-height: 1.4em;
  font-weight: 700;
}

section.about p {
  line-height: 1.65em;
  text-align: justify;
}

.about-img.about-img--2 {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 21px;
}

.about__text {
  width: 46%;
  flex-shrink: 0;
}

.about__text h2 {
  margin-bottom: 2rem;
}

img.about-img.about-img--1 {
  max-width: 110%;
  margin-left: 31px;
  margin-top: -30px;
}


/* section.steps */

section.steps {
  background-color: var(--dark-green);
  color: #fff;
  position: relative;
  padding-top: 72px;
  padding-bottom: 24px;
}

section.steps h2 {
  color: #fff;
  text-align: center;
}

section.steps h2 span {
  margin-top: 2rem;
  display: block;
  color: var(--light-green);
}

section.steps p {
  font-size: 1.2rem;
}

.steps-list {
  display: flex;
  align-content: center;
  margin-top: 85px;
  margin: 85px 70px;
  justify-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  flex-direction: row-reverse;
} 

.steps-list .step-item {
  width: 25%;
  text-align: center;
}

.steps-list .step-item:nth-child(7n - 6) {
  margin-left: 1px;
}
.steps-list .step-item:nth-child(7n - 4) {
  margin-right: 1px;
}

.steps-list .step-item:nth-child(7n - 4), 
.steps-list .step-item:nth-child(7n - 5), 
.steps-list .step-item:nth-child(7n - 6) {
  width: 25%;
}

/* .steps-list .step-item:nth-child(7n - 2), 
.steps-list .step-item:nth-child(7n - 1), 
.steps-list .step-item:nth-child(7n) {
  grid-column: 2 span;
}

.steps-list .step-item:nth-child(7n - 2) {
  grid-column-start: 2;
  grid-column-end: 6;
}

.steps-list .step-item:nth-child(7n) {
  grid-column: 4 span;
} */

.steps-list img {
  display: block;
  width: 80%;
  aspect-ratio: 1;
}

.step-item>div,
.step-item>span {
  position: relative;
  z-index: 5;
}

.step-item>span {
  min-height: 2.5em;
  display: flex;
  justify-content: center;
  align-items: end;
  color: var(--light-green-2);
  font-size: 1.3rem;
}

.step-item>div {
  padding: 22px;
  background: #003E3D;
  border: 2px solid var(--light-green);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 100px;
  margin: 10px auto;
}

.steps-img {
  position: absolute;
  z-index: 3;
}

.steps-img.steps-img--1 { 
  top: -215px;
  right: 0;
}

.steps-img.steps-img--2 {
  left: 0;
  bottom: -8px; 
}

.steps-img.steps-img--3 {
  top: -72px;
  left: 192px;
  transform: rotate(11deg);
  width: 177px;
}

.steps-img.steps-img--4 {
  right: 7%;
  bottom: 21%;
  transform: rotate(178deg);
  width: 66px;
}

.steps-img.steps-img--5 {
  bottom: -66px;
  left: 17.5%;
  transform: rotate(104deg);
  width: 106px;
}

/* section.stores */

section.stores {
  background-color: #F0F9F4;
  position: relative;
}

section.stores .heading {
  position: relative;
  z-index: 2;
  background: #fff;
}

section.stores .heading .container {
  background: #fff url("./images/bg-2.svg") no-repeat center bottom / contain;
  z-index: 2;
  position: relative;
  padding-top: 180px;
  padding-bottom: 160px;
}

section.stores .heading:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  padding-bottom: 180px;
  clip-path: ellipse(100vw 68% at 50% 30%);
}

section.stores .store-list .container {
  position: relative;
  z-index: 5;
  max-width: 1160px;
}

section.stores h2 {
  text-align: center;
}

section.stores h2 span {
  margin-top: 2rem;
  display: block;
  color: var(--light-green);
  text-transform: capitalize;
}

.stores-img {
  position: absolute;
  z-index: 4;
}

.stores-img.stores-img--1 {
  left: 0;
  top: 355px;
}

.stores-img.stores-img--2 {
  right: 0;
  top: 185px;
}

.store-list .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.store-list__block {
  padding: 66px 42px 73px;
  border: 1px solid var(--light-green);
  border-bottom: 4px solid var(--light-green);
  background-color: #fff;
  border-radius: 1000px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.08);
}

.store-list__block .part {
  font-size: 1.2rem;
  color: var(--dark-green);
}

.store-list__block ul {
  list-style-type: none;
  padding-left: 0px;
}

.store-list__block ul li {
  margin-top: 1.65em;
}

/* 
.store-list__block ul li:before {
  content: url(./images/canada.png);
  display: inline;
  margin-right: 10px;
  position: relative;
  bottom: -3px;
} */

.store-list__block ul li span,
.store-list__block ul li a {
  padding-left: 35px;
  font-size: .9rem;
  display: block;
}

.store-list__block ul li a {
  text-decoration: none;
  color: var(--text-grey);
  position: relative;
}

.store-list__block ul li a i {
  height: 1.5em;
  aspect-ratio: 1/1;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.25em;
  border-radius: 50%;
}



.stores-img.steps-img--3 {
  right: 0;
  bottom: 0;
}

.stores-img.steps-img--4 {
  left: 0;
  bottom: 0;
}

.stores-img.steps-img--5 {
  right: 5%;
  bottom: -8px;
  transform: rotate(178deg);
  width: 130px;
}

.stores-img.stores-img--4 {
  bottom: -25px;
  left: 13px;
}

/* section.blogs */

section.blogs {
  background-color: #F0F9F4;
  position: relative;
  padding-bottom: 45px;
}

section.blogs h2 span {
  text-transform: capitalize;
  color: var(--light-green);
  margin-top: 2rem;
  display: block;
}

section.blogs article {
  position: relative;
}

section.blogs article .post-date {
  position: absolute;
  right: 5px;
  top: 0px;
  font-size: 1.2rem;
  font-weight: 700;
  height: 2em;
  width: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--dark-green);
  text-align: center;
  border-radius: 50%;
  padding: 18px;
  border: 1px solid #fff;
  aspect-ratio: 1/1;
  line-height: 1;
}

section.blogs article .post-image img {
  border-radius: 30px 200px 30px 30px;
}

section.blogs .article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

section.blogs .article-list .article-loop:nth-child(2) {
  top: -110px;
}

section.blogs .heading h2 {
  margin-top: 0;
  margin-bottom: 2em;
}

article.article-loop h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-right: 20px;
}

article.article-loop p {
  color: var(--text-grey);
  line-height: 1.6em;
  padding-right: 65px;
  margin-bottom: 10px;
}

body.blog article.article-loop p {
  color: var(--text-grey);
  padding-right: 0px;
}

body.blog article.article-loop .learn-more {
  font-size: 1rem;
  margin-top: 1rem;
  display: block;
}

body.blog article.article-loop h4 a {
  line-height: 1.3em;
}

article.article-loop h4 a {
  text-decoration: none !important;
  color: var(--dark-green);
  margin-top: 1rem;
  display: block;
}

article.article-loop .learn-more {
  color: var(--light-green);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

article.article-loop .btn {
  display: block;
  width: fit-content;
  margin-left: -10px;
  margin-top: 3rem;
}

img.blogs-img.blogs-img--1 {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -90px;
}

/* blogs */

main.blogs .article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

main.blogs .article-list article {
  border-radius: 35px;
  border: 1px solid var(--light-green-2);
  overflow: hidden;
}

main.blogs .post-content {
  padding: 0.5rem 35px 2rem;
}

main.blogs h1 {
  color: var(--light-green);
  text-align: center;
  margin-bottom: 1.4em;
}


section.subscribe {
  background-color: var(--light-green);
  position: relative;
  padding: 55px 0 40px;
}

section.subscribe .btn-white {
  background-color: #fff;
  color: var(--dark-green);
  padding: 0.5em 1.75em;
}

/* pagination */

.pagination {
  width: 100%;
  text-align: center;
  padding: 45px 0 75px;
  font-size: 1.35rem;
}

.pagination a {
  color: var(--dark-green);
  text-decoration: none;
}

.pagination span.prev-arr,
.pagination span.next-arr {
  width: 1em;
  height: 1em;
  display: inline-block;
}

.pagination span.prev-arr:before,
.pagination span.next-arr:before,
.pagination span.prev-arr:after,
.pagination span.next-arr:after {
  content: '';
  width: 3px;
  height: .5em;
  background-color: var(--dark-green);
  display: inline-block;
}

.pagination span.prev-arr:after,
.pagination span.next-arr:after {
  width: calc(.5em - 3px);
  height: 3px;
}

.pagination span.prev-arr {
  transform: rotate(45deg);
}

.pagination span.next-arr {
  transform: rotate(225deg);
  position: relative;
  bottom: -4px;
}

.page-numbers {
  margin-left: 10px;
  margin-right: 10px;
}

.page-numbers:not(.prev, .next) {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--light-green);
  border-radius: 50%;
}

.page-numbers.current {
  color: #fff;
  background: var(--dark-green);
}


.contact-us {
  background-color: #003E3D;
  color: #fff;
  padding-top: 120px;
}

.contact-us h5 {
  font-size: 2.8rem;
  margin: 15px 0;
}

.contact-us h5.starkey {
  font-size: 4.2rem;
  font-family: Starkey, sans-serif;
  color: var(--light-green);
  text-transform: capitalize;
  margin-top: .5em;
  font-weight: 400;
}

.contact-us .btn-dark-green {
  border: 1px solid var(--light-green);
  background-color: #003E3D;
  padding: 0.6rem 1.2rem 0.6rem 1rem;
  gap: 8px;
  font-weight: 400;
}

.addresses {
  padding: 70px 0 80px;
  position: relative;
}

.addresses>div>div {
  color: var(--light-green-2);
  font-size: 1.3rem;
  position: relative;
  z-index: 5;
  font-weight: 700;
}

.addresses>div p {
  font-weight: 300;
  position: relative;
  z-index: 5;
  line-height: 1.6em;
  font-weight: 200;
}

.addresses>div {
  margin-right: 2.5%;
}

.addresses>div+div {
  margin-left: 2.5%;
  padding-left: 5%;
  border-left: 1px solid #ffffff30;
}

.contact-us-img--2 {
  /* filter: contrast(0.3); */
  position: absolute;
  top: 0;
  right: -70px;
  z-index: 3;
}

.contact-us-img--1 {
  position: absolute;
  top: 84px;
  right: 34%;
  width: 86px;
  transform: rotate(187deg);
}

footer {
  overflow: hidden;
  position: relative;
}

footer .copy {
  padding-top: 40px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-color: #003E3D;
  position: relative;
}


footer .copy .container {
  z-index: 5;
  position: relative;
  padding: 95px 90px 80px;
}

footer .copy:before {
  content: "";
  background-color: var(--dark-green-2);
  width: 550vw;
  position: absolute;
  top: 40px;
  height: 600vw;
  left: -225vw;
  z-index: 3;
  border-radius: 50%;
}

img.copy-img.copy-img--1 {
  z-index: 4;
  position: absolute;
  left: 16%;
  top: -30px;
}

img.copy-img.copy-img--2 {
  z-index: 4;
  position: absolute;
  transform: rotate(101deg);
  height: 100px;
  right: 21%;
  top: 130px;
}

body:not(.home) img.subscribe-img.subscribe-img--2 {
  display: none;
}

.mobile-only {
  display: none;
}

.stores-img.stores-img--3 {
  right: 0;
  bottom: 17px;
}

.stores-img--5 {
  bottom: -20px;
  right: 19%;
  transform: rotate(180deg);
  width: 111px;
}


main.blogs .article-list article img {
  width: 100%;
}

body.post-template-default .wrap article {
  color: var(--text-grey);
  line-height: 1.2em;
}

body.post-template-default .wrap article h1 body.post-template-default .wrap article h2 body.post-template-default .wrap article h3 body.post-template-default .wrap article p {
  line-height: 1.2em;
}

.all-sites-link {
  font-size: 1.1rem;
  font-weight: 400;
  padding: 8px 12px 8px 24px;
  margin-right: 0;
  gap: 0.5rem;
}

a.post-image {
  display: block;
}

body:not(.home) .subscribe-img.subscribe-img--3 {
  display: none;
}

.article-full h1 {
  line-height: 1.8em;
  font-size: 2.2rem;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 0.5em;
  margin-top: 0.3em;
}

.article-full .post-date {
  text-align: center;
  padding: 30px;
  margin: 0 0 10px;
  position: relative;
}

.article-full .post-date:before {
  content: '';
  border-top: 1px solid var(--light-green);
  width: 100px;
  height: 1px;
  display: block;
  position: absolute;
  left: calc(50% - 50px);
  top: 0;
}

.article-full .post-content {
  width: 100%;
  border: 1px solid var(--light-green-2);
  border-radius: 35px;
  overflow: hidden;
}

.article-full .post-thumbnail {
  width: 100%;
}

.article-full .text-content {
  padding: 56px 64px;
  line-height: 1.6em;
}

.article-full .text-content h1,
.article-full .text-content h2,
.article-full .text-content h3,
.article-full .text-content h4,
.article-full .text-content h5,
.article-full .text-content h6 {
  color: var(--dark-green);
}

.related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 90px;
}

.related-posts article.article-loop {
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid var(--light-green-2);
  padding-bottom: 30px;
}

.related-posts article.article-loop h4 {
  margin: 30px;
}

.related-posts .learn-more {
  margin: 30px;
}

.related-posts .post-title {
  text-decoration: none;
  color: var(--dark-green);
  line-height: 1.25em;
}

.related-posts-header {
  text-align: center;
  font-size: 2.2rem;
  color: var(--dark-green);
  padding: 60px 0 30px;
}

.steps-list .step-item:nth-child(5) img {
  position: relative;
  right: -8%;
  top: -3%;
}

.related-posts article.article-loop h4 {
  margin: 30px;
  line-height: 1.4em;
}

.top-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

body .top-header {
  background: #fff;
  transition: all .5s linear;
}

body[data-scroll="0"] .top-header {
  background: transparent;
}

body:not(.home) main {
  margin-top: 70px;
}

@media screen and (max-width: 1280px) {
  section.stores .store-list .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 720px) {
  html {
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  body.home header {
    min-height: unset;
    width: 100%;
    /* clip-path: ellipse(170vw 70% at 50% 29%); */
    min-height: 110vh;
    /* background: #F6F8F7 var(--top-image-mobile) no-repeat bottom center / cover; */ 
    background: #fff;
  }

  body.home .top-screen {
    font-size: 4rem;
    clip-path: ellipse(170vw 69% at 50% 30%);
    min-height: 110vh;
  }

  .top-screen-img--2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  header {
    background: #F6F8F7;
  }

  header .container.top {
    background: #fff;
    border-bottom: 1px solid var(--Light-green-2, #BCE3CF);
  }

  h1 {
    font-size: 2rem;
    margin-top: 2.5em;
  }

  body.home .top-screen h1 {
    margin-top: 1em;
  }

  h1.font-starkey,
  h1 .font-starkey {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
  }

  h2.font-starkey,
  h2 .font-starkey {
    font-size: 2.7rem;
  }

  .top-screen p {
    font-size: .9rem;
  }

  body.home .top-screen a.btn {
    font-size: 1.4rem;
  }

  header .container.top .all-sites-link {
    padding: 0;
    height: 40px;
    width: 40px;
    margin-top: 0;
  }

  header .container.top .all-sites-link>span {
    display: none;
  }

  header .logo-link img {
    max-height: 40px;
    width: auto;
  }

  .flyout-menu .menu.open {
    padding: 70px 20px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .top-screen {
    padding-top: 30px;
  }

  .top-screen-img.top-screen-img--1 {
    top: 30%;
    min-height: 100vh;
  }

  .top-screen-img--1 {
    display: none;
  }

  .bottom-curve.mobile-only {
    position: absolute;
    width: 100%;
    height: 100px;
    background: #fff;
    z-index: 999;
    bottom: -1px;
  }

  section.about .container {
    display: block;
  }

  section.about .container .about__text {
    width: auto;
  }

  .steps-list {
    margin: 85px 0px;
    flex-wrap: wrap-reverse;
  }

  .steps-list .step-item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    width: 50% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 14px;
    text-align: left;  
  }


  .step-item>div {
    width: 35px;
    padding: 7px;
    margin: 7px;
  }

  .step-item>span {
    min-height: unset;
    font-size: 1rem;
  }

  .store-list .container {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .store-list__block {
    padding: 1.5em 2rem;
    border-radius: 40px;
    margin-bottom: 20px;
  }

  section.blogs .article-list {
    grid-template-columns: 1fr;
  }

  section.blogs .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  section.subscribe .container {
    flex-wrap: wrap;
  }

  .contact-us .container>div {
    flex-wrap: wrap;
    text-align: left;
    justify-content: center;
  }

  .addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .addresses>div+div {
    padding: 15px;
    margin: 0;
    border-left: 0;
  }

  section.blogs .article-list .article-loop:nth-child(2) {
    top: auto;
  }

  .steps-list img {
    width: 95%;
  }

  .about-img.about-img--3 {
    position: absolute;
    right: 0;
    width: 30%;
    top: 94px;
  }

  .about-img.about-img--3 {
    position: absolute;
    right: 0;
    width: 30%;
    top: 94px;
  }

  .steps-img.steps-img--2 {
    top: -122px;
    width: 36%;
  }

  img.steps-img.steps-img--3 {
    display: none;
  }

  img.steps-img.steps-img--5 {
    display: none;
  }

  .steps-img.steps-img--4 {
    right: unset;
    bottom: -18px;
  }

  .steps-img.steps-img--6 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
  }

  .stores-img.stores-img--1 {
    top: 113px;
    width: 25%;
  }

  .stores-img.stores-img--1 {
    top: 100px;
    width: 30%;
  }

  .stores-img.stores-img--2 {
    width: 15%;
    z-index: 3;
    top: 150px;
  }

  section.stores .heading .container {
    padding-bottom: 0;
    background: #fff url(./images/bg-2.svg) no-repeat center 10%/ 90%;
  }

  .store-list__block .part {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .store-list__block ul ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-list__block ul ul li {
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
  }

  img.subscribe-img.subscribe-img--2 {
    top: unset;
    width: 45%;
    bottom: -92px;
  }

  img.contact-us-img.contact-us-img--1 {
    left: 30px;
    top: 40px;
    right: unset;
    width: 50px;
  }

  .addresses>div {
    position: relative;
    padding: 15px;
  }

  .addresses>div:nth-child(2n):before,
  .addresses>div:nth-child(n + 3):nth-child(-n + 4):after {

    content: '';
    background: #fff;
    display: block;
    position: absolute;
    z-index: 9;
    opacity: 0.3;
  }

  .addresses>div:nth-child(2n):before {
    width: 1px;
    height: 70%;
    top: 15%;
    left: -15px;
  }

  .addresses>div:nth-child(n + 3):nth-child(-n + 4):after {
    height: 1px;
    width: 70%;
    top: -15px;
    left: 15%;
  }

  img.copy-img.copy-img--1 {
    width: 25%;
    top: 0px;
  }

  img.copy-img.copy-img--2 {
    bottom: unset;
    width: 10%;
    top: 80px;
  }

  main.blogs .article-list {
    grid-template-columns: 1fr;
  }

  header .open-menu-link {
    width: 40px;
    margin: 0;
    height: 40px;
  }

  .about-img.about-img--2 {
    top: -40px;
    left: 0;
    width: 21%;
  }

  .about-img.about-img--3 {
    width: 27%;
    top: 0;
  }

  section.about .pretext {
    line-height: 1.7em;
  }

  section.about p {
    line-height: 1.7em;
  }

  img.about-img.about-img--1 {
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  section.about {
    padding-bottom: 88px;
  }

  section.subscribe .btn-white {
    width: 100%;
    padding: 1em 1.75em;
    gap: 2em;
  }

  section.subscribe .btn-white .icon {
    height: 2.5em;
    width: 2.5em;
  }

  section.steps {
    padding-bottom: 120px;
  }

  section.stores {
    background-color: unset;
  }

  section.blogs {
    padding-top: 90px;
  }

  .stores-img--5 {
    bottom: -47px;
    right: 15%;
    transform: rotate(86deg);
    width: 59px;
  }

  .stores-img.stores-img--4 {
    bottom: -215px;
    left: 0px;
    width: 108px;
  }

  .subscribe-img--1 {
    display: none;
  }

  .contact-us h5 {
    font-size: 2rem;
    font-weight: 600;
    margin: 13px 0 0 0;
  }

  .contact-us h5.starkey {
    font-size: 3rem;
    margin-top: 0.5rem;
  }

  .contact-us .btn-dark-green {
    width: 100%;
  }

  .addresses>div>div {
    font-size: 1rem;
  }

  footer .copy .container {
    padding: 95px 0px 80px;
  }

  footer .copy p {
    font-size: .8rem;
  }

  footer .logo-link img {
    max-width: 40%;
  }

  .article-full .text-content {
    padding: 15px 25px;
  }

  .related-posts {
    grid-template-columns: 1fr;
  }

  .about-img.about-img--4 {
    bottom: 0;
    position: absolute;
    right: 0;
    width: 120px;
  }

  section.steps p {
    font-size: 1rem;
    font-weight: 300;
    padding: 0.5rem 0 1.5rem;
  }

  .store-list__block>ul>li {
    margin-top: 0.65em;
  }

  .icon-earth:before {
    background: url(./icons/earth-white.svg) no-repeat 50% 50% / contain;
  }

  section.blogs article .post-image img {
    border-radius: 30px 100px 30px 30px;
  }

  article.article-loop .btn {
    margin-left: 0;
  }

  .contact-us-img--2 {
    top: unset;
    bottom: 0;
    right: 0px;
    width: 40%;
  }

  body:not(.home) main {
    margin-top: 0px; 
  }

}