:root {
  --font-inter: "Inter", sans-serif;
  --font-sarabun: "Sarabun", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-outfit: "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: auto;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-inter);
}

h1, h2, h3, h4 {
  font-family: var(--font-sarabun);
  font-weight: 800;
}

h1 {
  font-size: 48px;
  line-height: 53px;
  margin-bottom: 8px;
}

h2 {
  font-size: 36px;
  line-height: 46px;
}

h3 {
  font-size: 28px;
  line-height: 42px;
}

h4 {
  font-size: 22px;
  line-height: 36px;
}

h5 {
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

video {
  border: 0;
  outline: none;
}

img {
  max-width: 100%;
}

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

.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

.button {
  display: flex;
  justify-content: center;
  width: fit-content;
  background-color: #FFDC32;
  border: 1px solid #D4B000;
  font-family: var(--font-roboto);
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  padding: 9px 10px;
  position: relative;
  border-radius: 8px;
  transition: background-color 0.15s ease-out;
}

.button:hover {
  background-color: #f0cc36;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulseInner 2.2s ease-out infinite;
}

@keyframes pulseInner {
  from {
    box-shadow: 0 0 0 0 #dfbe1b;
  }
  80%, 100% {
    box-shadow: 0 0 0 12px rgba(204, 40, 40, 0);
  }
}

.cta-wrapper {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-wrapper .button {
  min-width: 290px;
}

.cta-info {
  font-family: var(--font-barlow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 21px;
  width: 100%;
  gap: 5px;
  margin-top: 6px;
}

.cta-ship {
  padding-left: 17px;
  position: relative;
}

.cta-ship:before,
.cta-ship:after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.cta-ship:before {
  background-color: #ADF4A1;
  width: 12px;
  height: 12px;
  top: 5px;
  left: -3px;
  animation: ctaShipPulse 1.65s cubic-bezier(0.4, -0.15, 0.1, 0.8) forwards infinite;
}

.cta-ship:after {
  width: 6px;
  height: 6px;
  top: 8px;
  left: 0;
  background-color: #95DF89;
}

@keyframes ctaShipPulse {
  0% {
    transform: scale(0.45);
  }
  85% {
    transform: scale(1.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

.cta-stock span {
  color: #D93C25;
  padding-left: 52px;
  margin-left: 4px;
  position: relative;
}

.cta-stock span:before {
  content: '';
  height: 8px;
  width: 8px;
  background-color: #D93C25;
  position: absolute;
  top: 3px;
  left: 0;
  box-shadow: 10px 0 0 0 #D9D9D9, 20px 0 0 0 #D9D9D9, 30px 0 0 0 #D9D9D9, 40px 0 0 0 #D9D9D9;
}

main {
  margin-bottom: 480px;
}

.container {
  width: 100%;
  max-width: 1186px;
  padding: 0 15px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title span {
  color: #1BBA85;
  font-family: var(--font-roboto);
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.section-title p {
  margin: 10px auto 0 auto;
  max-width: 630px;
}

header {
  font-family: var(--font-roboto);
  background-color: #fff;
  padding: 12px 0;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 4;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header nav {
  gap: 20px;
}

.menu {
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 500;
}

.menu a {
  display: block;
  padding: 14px 20px;
}

.menu li {
  position: relative;
}

.menu li a:before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 16px;
  width: calc(100% - 32px);
  height: 3px;
  background-color: #FFDC32;
  transition: 0.12s;
  transform: scale(1, 5.5);
  transform-origin: bottom;
  opacity: 0;
  transition: 0.14s 0.1s;
}

.menu li.active a:before {
  transform: none;
  transition: 0.195s ease-out;
  opacity: 1;
  transform-origin: top;
}

.order-now {
  gap: 15px;
}

.menu-toggle {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: none;
}

.banner {
  background-color: #F8F8F8;
  min-height: 581px;
}

.banner-asset {
  width: 50%;
  position: relative
}

.banner-labels {
  position: absolute;
  right: 71%;
  top: 75px;
}

.hero .banner-asset {
  min-height: 580px;
  justify-content: flex-end;
}

.hero video {
  height: 580px;
  object-fit: cover;
  object-position: right;
  width: 100%;
}

.banner-content {
  flex: 1;
  padding: 16px;
  max-width: 460px;
}

.banner-rating {
  gap: 6px;
  font-size: 13px;
}

.banner-content > p {
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
}

.banner ul {
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0 20px 0;
  gap: 10px;
}

.banner ul li {
  display: flex;
  gap: 9px;
  text-align: left;
}

.banner ul li::before {
  content: '';
  display: inline-block;
  height: 19px;
  width: 19px;
  background-image: url(../images/int/list-checkmark-icon.webp);
  margin-top: 2px;
}

.banner ul li span {
  flex: 1;
}

.hero .cta-wrapper {
  margin: 16px 0 33px 0;
}

.hero .cta-wrapper .button {
  width: 290px;
}

.hero-wrapper h1 {
  max-width: 600px;
}

.hero-review {
  gap: 16px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 21px;
}

.hero-review-avatar {
  border-radius: 50%;
  margin-top: 23px;
}

.hero-review-text p {
  margin-top: 2px;
}

.hero-review b {
  font-size: 12px;
}

.brands {
  height: 74px;
  width: 100%;
  background-color: #000000;
}

.brands-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.brands-wrapper:before,
.brands-wrapper:after {
  content: '';
  width: 210px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.brands-wrapper:before {
  left: 0;
  background-image: linear-gradient(to left, transparent, black);
}

.brands-wrapper:after {
  right: 0;
  background-image: linear-gradient(to left, black, transparent);
}

.brands-trails {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 92s linear infinite;
}

.brands-trail {
  display: flex;
  align-items: center;
  gap: 58px;
  flex-shrink: 0;
  padding-right: 58px;
}

.brands-trail img {
  display: block;
  height: auto;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.summary {
  padding: 30px 0;
}

.summary-images {
  width: 100%;
}

.summary-images-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.summary-images-trails {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.summary-images-trail-1,
.summary-images-trail-2 {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 12px;
}

.summary-images-trails img {
  display: block;
  height: auto;
  max-width: none;
  border-radius: 10px;
}

.features {
  padding: 15px 0 44px 0;
}

.features-items {
  gap: 30px;
  margin-bottom: 44px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 42px;
  position: relative;
}

.feature h3 {
  margin-bottom: 12px;
}

.feature-content {
  flex: 1;
}

.feature-list {
  margin-top: 12px;
}

.feature-list p {
  margin-bottom: 10px;
}

.feature-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 21px;
  padding-left: 30px;
  max-width: 470px;
}

.feature-list li {
  list-style: disc;
}

.feature-list li::marker {
  font-size: 12px;
}

.attributes {
  padding: 30px 0 50px 0;
  background-color: #F8F8F8;
}

.attributes-items-wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.attributes-items {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  margin-top: 23px;
}

.attribute-wrapper {
  padding: 0 6px;
  max-width: 286px;
}

.attribute {
  background-color: #FFFFFF;
  padding: 21px 14px 21px 21px;
  box-shadow: 0 0 14px 8px #0000000A;
  border-radius: 8px;
  height: 100%;
}

.attribute img {
  margin-bottom: 12px;
}

.attribute p {
  line-height: 24px;
  margin-top: 6px;
}

.banner2 {
  color: #ffffff;
}

.banner2-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.banner2-content {
  background-color: #0C3F61;
}

.banner2-content-inner {
  max-width: 447px;
  padding: 20px;
}

.banner2-content h3 {
  margin-bottom: 10px;
}

.banner2-wrapper div {
  flex: 1;
}

.banner2-image {
  min-width: 586px;
}

.banner2-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comparison {
  padding: 40px 0 20px 0;
}

.comparison .cta-wrapper {
  margin-top: 30px;
}

.precision {
  padding: 20px 0;
}

.precision .section-title {
  margin-bottom: 12px;
}

.precision-wrapper {
  background-color: #FAFAFA;
  max-width: 964px;
  margin: 0 auto;
  padding: 30px 20px 30px 20px;
  border-radius: 8px;
}

.precision-content {
  gap: 20px;
}

.precision-text {
  flex: 1;
  max-width: 440px;
}

.precision-text ul {
  font-size: 14px;
  line-height: 21px;
  padding: 5px 0 5px 30px;
}

.precision-text li {
  list-style: disc;
}

.precision-text li::marker {
  font-size: 13px;
}

.precision-items {
  gap: 20px;
  margin-top: 30px;
  justify-content: space-between;
}

.precision-items div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 16px;
}

.precision-items div span {
  font-weight: 700;
  font-size: 14px;
}

.steps {
  padding: 10px 0 31px 0;
}

.steps-items {
  gap: 64px;
  margin-bottom: 51px;
}

.step {
  width: 278px;
}

.step-video {
  overflow: hidden;
  border-radius: 8px;
}

.step-text {
  margin-top: 12px;
}

.step-text h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews {
  padding: 20px 0 64px 0;
}

.reviews .container {
  max-width: 1190px;
}

.reviews-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 41px;
  gap: 20px;
}

.review-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 0;
  border-bottom: 1px solid #E1E1E1;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 20px;
}

.review-stat span {
  width: 165px;
}

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

.reviews-overall h2 {
  font-size: 70px;
  line-height: 1.2;
}

.reviews-overall p {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 10px;
}

.reviews-items {
  column-count: 4;
  column-gap: 24px;
  row-gap: 24px;
}

.review {
  border: 1px solid #D3D3D3;
  max-width: 272px;
  break-inside: avoid;
  margin-bottom: 17px;
  border-radius: 6px;
  overflow: hidden;
}

.review-image img {
  object-fit: cover;
}

.review-content {
  padding: 20px 15px 20px 15px;
  min-height: 374px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #E3E3E3;
}

.review-verified {
  display: flex;
  align-items: center;
  color: #3AB890;
  font-weight: 500;
  gap: 6px;
}

.review-verified:before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url(../images/int/verified-icon.svg);
}

.review-posted {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
  padding: 15px 0;
  border-bottom: 1px solid #E3E3E3;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
}

.review-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-hero .banner-asset {
  min-height: 585px;
  justify-content: flex-end;
}

.sub-hero .banner-asset img {
  object-fit: cover;
  object-position: right center;
  flex: 1;
}

.sub-hero .banner-labels {
  top: unset;
  bottom: 40px;
  right: 24px;
}

.sub-hero .banner-content {
  padding-left: 69px;
  max-width: 502px;
}

.faq {
  padding: 54px 0;
}

.faq-items {
  padding: 20px 0;
  max-width: 922px;
  margin: 0 auto;
  gap: 23px;
}

.faq-item {
  padding: 25px 90px 10px 27px;
  border: 1px solid #4F4F4F;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.faq-item.open {
  padding: 25px 90px 25px 27px;
}

.faq-question {
  font-weight: 700;
  padding-bottom: 20px;
}

.faq-answer-wrapper {
  height: 0;
  transition: 0.18s ease-out;
  overflow: hidden;
  max-width: 740px;
}

.faq-item.open .faq-answer-wrapper {
  height: auto;
}

.faq-answer {
  transform: translate(0, -4px);
  opacity: 0;
  transition: 0.25s 0.05s ease-in-out;
}

.faq-item.open .faq-answer {
  opacity: 1;
  transform: translate(0);
}

.faq-opener {
  height: 30px;
  width: 30px;
  border: 2px solid #000000;
  position: absolute;
  border-radius: 50%;
  top: 26px;
  right: 29px;
}

.faq-opener:before,
.faq-opener:after {
  content: '';
  width: 16px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 12px;
  left: 5px;
  border-radius: 2px;
}

.faq-opener:after {
  transform: rotate(90deg);
  opacity: 1;
  transition: 0.15s;
}

.faq-item.open .faq-opener:after {
  transition: 0.11s ease-in;
  opacity: 0;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  justify-content: center;
  padding: 14px 15px 10px 15px;
  transition: 0.12s;
}

.fixed-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 4px);
}

footer {
  color: #808080;
  background-color: #000000;
  padding: 44px 0;
  font-size: 14px;
  line-height: 21px;
}

.footer-logo {
  margin-bottom: 20px;
}

footer p {
  margin: 30px auto 0 auto;
  max-width: 923px;
}

footer ul li:before {
  content: '|';
  margin: 0 6px;
}

footer ul li:first-child:before {
  content: none;
}

footer ul a {
  transition: 0.22s;
}

footer ul a:hover {
  color: #c3c3c3;
}

@media screen and (min-width: 1441px) {
  .banner-labels {
    right: 540px;
  }
}


@media screen and (min-width: 992px) {
  .feature-full .feature-content {
    position: absolute;
    max-width: 500px;
  }

  .feature h3 br {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .feature {
    flex-direction: column;
    gap: 20px;  
  }

  .feature-content {
    order: 1;
  }

  .features-items {
    gap: 40px;
  }

  .feature h3 {
    line-height: 26px;
    margin-bottom: 18px;
  }

  .banner2-image {
    min-width: unset;
  }

  .hero .banner-content {
    padding: 16px 0 32px 0;
  }

  .sub-hero .banner-content {
    padding-left: 25px;
  }

  .reviews-items {
    column-count: 3;
    margin: 0 auto;
    max-width: 860px;
  }

  .review:nth-child(6),
  .review:last-child {
    display: none;
  }

  .precision-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .precision-items {
    gap: 10px;
  }

  .steps-items {
    gap: 20px;
  }

  .reviews-header {
    flex-direction: column;
  }

  .reviews-header {
    gap: 10px;
  }

  .reviews-photos {
    margin-top: 10px;
  }

  .review-stat span {
    width: auto;
    flex: 1;
  }

  .review-image img {
    height: 348px;
  }
}

@media screen and (min-width: 768px) {
  .hide-dt {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hide-mb {
    display: none;
  }

  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 37px;
  }

  h3 {
    font-size: 22px;
    line-height: 42px;
  }

  .section-title h2 {
    max-width: 340px;
    margin: 0 auto;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    border: 1px solid #D6D6D6;
  }

  .menu-toggle {
    display: block;
    width: 37px;
    height: 30px;
    position: relative;
  }
  
  .menu-toggle span {
    width: 27px;
    height: 3px;
    background-color: #000000;
    position: absolute;
    top: 4px;
    left: 5px;
    border-radius: 2px;
    transition: 0.1415s;
  }

  .menu-toggle span:nth-child(2) {
    top: 14px;
  }

  .menu-toggle span:nth-child(3) {
    top: 24px;
  }

  .menu-toggle.open ~ .menu {
    opacity: 1;
    transition: 0.12s;
    pointer-events: all;
  }

  .menu li {
    border-bottom: 1px solid #D6D6D6;
  }

  .menu li:last-child {
    border-bottom: 0;
  }

  .menu a {
    font-size: 16px;
    font-weight: 500;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 8px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .menu li.active a:before {
    content: none;
  }

  .menu li.active {
    background-color: #FFDC32;
  }

  .banner {
    padding: 20px 15px 0 15px;
  }

  .banner h1 {
    text-align: center;
  }

  .hero-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .banner-asset {
    width: 100%;
  }

  .hero .banner-asset {
    min-height: unset;
    position: relative;
    left: 0;
    width: calc(100% + 30px);
  }
  
  .banner-labels {
    bottom: 14px;
    top: unset;
    width: 73px;
  }

  .hero video {
    min-height: auto;
    object-fit: cover;
    object-position: center;
    height: 400px;
  }

  .banner-content {
    text-align: center;
    padding: 16px 16px 32px 16px;
  }

  .hero-wrapper h1 {
    max-width: 400px;
  }

  .hero .cta-wrapper {
    margin: 16px auto 20px auto;
  }

  .hero-review {
    text-align: left;
    gap: 12px;
  }

  .brands {
    left: -15px;
    width: calc(100% + 30px);
    position: relative;
  }

  .brands-trails {
    animation: scroll 45s linear infinite;
  }

  .summary {
    padding: 20px 0;
  }

  .attributes {
    overflow: hidden;
  }

  .attributes .section-title {
    margin-bottom: 10px;
  }

  .attributes-video {
    height: 374px;
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
  }

  .attributes-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80%;
  }

  .attribute-wrapper {
    max-width: unset;
  }

  .attributes-items-wrapper {
    position: relative;
    left: -25%;
    width: calc(150%);
  }

  .banner2-wrapper {
    flex-direction: column;
    border-radius: 0;
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
  }

  .banner2-content-inner {
    width: 100%;
    max-width: unset;
    padding: 28px 16px 37px 27px;
  }

  .banner2-content h3 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 16px;
  }

  .banner2-image img {
    width: 100%;
  }

  .sub-hero .banner-labels {
    top: unset;
    bottom: 20px;
    right: unset;
    left: 15px;
  }

  .comparison {
    padding: 30px 0;
  }

  .precision {
    padding: 0;
  }

  .precision .container {
    padding: 0;
  }

  .steps {
    overflow: hidden;
    padding: 15px 0 31px 0;
  }

  .reviews {
    padding: 20px 0 40px 0;
  }

  .reviews-items {
    column-count: 2;
    max-width: 568px;
  }

  .sub-hero .banner-asset {
    min-height: unset;
  }

  .sub-hero .banner-asset {
    width: calc(100% + 30px);
    margin-top: 20px;
  }

  .sub-hero .banner-asset > img {
    object-position: 80% center;
    height: 400px;
  }

  .sub-hero .banner-content {
    padding: 20px 15px 30px 15px
  }

  .faq-item {
    padding: 15px 70px 8px 12px;
  }

  .faq-question {
    padding-bottom: 10px;
  }

  .faq-item.open {
    padding: 15px 70px 18px 12px;
  }

  .faq-opener {
    top: 14px;
    right: 14px;
  }

  main {
    margin-bottom: 320px;
  }

}

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

  .steps-items-wrapper {
    position: relative;
    left: -100px;
    width: calc(100% + 200px);
  }

  .step-video video {
    width: 100%;
  }

  .banner ul {
    max-width: 240px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .cta-wrapper,
  .cta-wrapper .button,
  .hero .cta-wrapper .button {
    width: 100%;
    max-width: 343px;
  }

  .hero-review-text p {
    max-width: 274px;
  }

  .precision-items-wrapper {
    display: flex;
    justify-content: center;
  }

  .precision-items {
    gap: 18px 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .reviews-items {
    column-count: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .review {
    margin-bottom: 0;
    max-width: unset;
  }

  .review:nth-child(1) {
    order: 0;
  }

  .review:nth-child(3) {
    order: 1;
  }

  .review:nth-child(5) {
    order: 2;
  }

  .review:nth-child(7) {
    order: 3;
  }

  .review:nth-child(2) {
    order: 4;
  }

  .review:nth-child(4) {
    order: 5;
  }

  .review-image img {
    height: auto;
    width: 100%;
    object-position: center 20%;
  }

  footer ul {
    margin-bottom: 6px;
  }
}
