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

html,
body {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #0c0c0c;
  background-color: #fff;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: #0c0c0c;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

a {
  color: #4076d7;
}

@media (min-width: 0px) and (max-width: 1023px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  h5 {
    font-size: 1.2rem;
  }
  h6 {
    font-size: 1.1rem;
  }
}
.grid {
  display: grid;
}
.grid.grid-auto {
  grid-template-columns: auto auto;
}
.grid.grid-11 {
  grid-template-columns: 1fr 1fr;
}
.grid.grid-121 {
  grid-template-columns: 1fr 2fr 1fr;
}
.grid.grid-1a1 {
  grid-template-columns: 1fr auto 1fr;
}
.grid.grid-13 {
  grid-template-columns: 1fr 3fr;
}
.grid.grid-14 {
  grid-template-columns: 1fr 4fr;
}
.grid.grid-15 {
  grid-template-columns: 1fr 5fr;
}
.grid.grid-16 {
  grid-template-columns: 1fr 6fr;
}
.grid.grid-17 {
  grid-template-columns: 1fr 7fr;
}
.grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.grid-21 {
  grid-template-columns: 2fr 1fr;
}
.grid.grid-211 {
  grid-template-columns: 2fr 1fr 1fr;
}
.grid.grid-23 {
  grid-template-columns: 2fr 3fr;
}
.grid.grid-1011 {
  grid-template-columns: 10fr 1fr 1fr;
}
.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.grid-31 {
  grid-template-columns: 3fr 1fr;
}
.grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.grid-4-auto {
  grid-template-columns: repeat(4, auto);
}
.grid.grid-48 {
  grid-template-columns: 4fr 8fr;
}
.grid.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid.grid-51 {
  grid-template-columns: 5fr 1fr;
}
.grid.grid-57 {
  grid-template-columns: 5fr 7fr;
}
.grid.grid-64 {
  grid-template-columns: 6fr 4fr;
}
.grid.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}
.grid.grid-flex {
  display: flex;
}

.d-flex {
  display: flex;
}
.d-flex.f-col {
  flex-direction: column;
}
.d-flex.f-row {
  flex-direction: row;
}

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

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

.gap {
  gap: 1.5rem;
}
.gap-0 {
  gap: 0;
}
.gap-05 {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-15 {
  gap: 1.5rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-row-0 {
  row-gap: 0 !important;
}

@media (min-width: 0) and (max-width: 1023px) {
  .grid-1-s {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .grid-2-s {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .gap {
    gap: 1rem;
  }
  .grid-1-m {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gap {
    gap: 1.25rem;
  }
}
.padd-0 {
  padding: 0;
}
.padd-05 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.padd-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.padd-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 1rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}

.container {
  width: calc(100vw - 2rem);
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.container.container-1192 {
  max-width: 1192px;
}
.container.container-800 {
  max-width: 800px;
}
.container.container-470 {
  max-width: 470px;
}

.container-full {
  width: 100%;
  max-width: 100%;
  background-color: #efeff0;
}

.text-container {
  display: flex;
  grid-area: content;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: end;
  align-items: center;
  width: 80%;
  max-width: 80%;
  margin: auto;
  padding: 2rem 0;
}

.container-full:has(.img-container) {
  background: linear-gradient(to bottom, #efeff0 50%, #fff 50%);
  margin-top: -6rem;
}
.container-full:has(.img-container) .img-container img {
  width: 70%;
}

@media (min-width: 768px) {
  .container {
    width: calc(100vw - 4rem);
  }
}
@media (min-width: 1024px) {
  .text-container {
    width: 60%;
    max-width: 60%;
    padding: 1.5rem 3rem;
  }
}
@media (max-width: 1024px) {
  .grid.m-grid-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.m-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.m-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.m-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.m-grid-13 {
    grid-template-columns: 1fr 3fr;
  }
  .f-row.m-f-col {
    flex-direction: column;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .grid.grid-11,
  .grid.grid-13,
  .grid.grid-21 {
    grid-template-columns: 1fr;
  }
}
.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

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

html,
body {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0c0c0c;
  background-color: #fff;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: #0c0c0c;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

a {
  color: #4076d7;
}

@media (min-width: 0px) and (max-width: 1023px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  h5 {
    font-size: 1.2rem;
  }
  h6 {
    font-size: 1.1rem;
  }
}
.grid {
  display: grid;
}

.grid.grid-auto {
  grid-template-columns: auto auto;
}

.grid.grid-11 {
  grid-template-columns: 1fr 1fr;
}

.grid.grid-121 {
  grid-template-columns: 1fr 2fr 1fr;
}

.grid.grid-1a1 {
  grid-template-columns: 1fr auto 1fr;
}

.grid.grid-13 {
  grid-template-columns: 1fr 3fr;
}

.grid.grid-14 {
  grid-template-columns: 1fr 4fr;
}

.grid.grid-15 {
  grid-template-columns: 1fr 5fr;
}

.grid.grid-16 {
  grid-template-columns: 1fr 6fr;
}

.grid.grid-17 {
  grid-template-columns: 1fr 7fr;
}

.grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.grid-21 {
  grid-template-columns: 2fr 1fr;
}

.grid.grid-211 {
  grid-template-columns: 2fr 1fr 1fr;
}

.grid.grid-23 {
  grid-template-columns: 2fr 3fr;
}

.grid.grid-1011 {
  grid-template-columns: 10fr 1fr 1fr;
}

.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.grid-31 {
  grid-template-columns: 3fr 1fr;
}

.grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid.grid-4-auto {
  grid-template-columns: repeat(4, auto);
}

.grid.grid-48 {
  grid-template-columns: 4fr 8fr;
}

.grid.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid.grid-51 {
  grid-template-columns: 5fr 1fr;
}

.grid.grid-57 {
  grid-template-columns: 5fr 7fr;
}

.grid.grid-64 {
  grid-template-columns: 6fr 4fr;
}

.grid.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}

.grid.grid-flex {
  display: flex;
}

.d-flex {
  display: flex;
}

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

.d-flex.f-row {
  flex-direction: row;
}

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

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

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

.gap {
  gap: 1.5rem;
}

.gap-0 {
  gap: 0;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-15 {
  gap: 1.5rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.list-none {
  list-style-type: none;
  margin: 0 0 1rem !important;
}

.list-none li {
  background: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 0) and (max-width: 1023px) {
  .grid-2-s {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .gap {
    gap: 1rem;
  }
  .grid-1-m {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .grid-2-m {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gap {
    gap: 1.25rem;
  }
}
.padd-0 {
  padding: 0;
}

.padd-05 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.padd-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.padd-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.container {
  width: calc(100vw - 2rem);
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.container.container-1192 {
  max-width: 1192px;
}

.container.container-800 {
  max-width: 800px;
}

.container.container-470 {
  max-width: 470px;
}

.container-full {
  width: 100%;
  max-width: 100%;
  background-color: #efeff0;
}

.text-container {
  display: flex;
  grid-area: content;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: end;
  align-items: center;
  width: 80%;
  max-width: 80%;
  margin: auto;
  padding: 2rem 0;
}

.container-full:has(.img-container) {
  background: linear-gradient(to bottom, #efeff0 50%, #fff 50%);
  margin-top: -6rem;
}

.container-full:has(.img-container) .img-container img {
  width: 70%;
}

.entry-body .container {
  width: 100% !important;
}

.entry-body ul {
  margin: 1rem 0 2rem 1rem;
}

.entry-body li {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  list-style: none;
  padding-left: 1.2rem;
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.00213623' width='8' height='8' rx='2' fill='%234076D7'/%3E%3C/svg%3E%0A");
}

.entry-body img {
  width: 100%;
  height: auto;
}

.entry-body .toc img {
  display: none;
}

.entry-body table img {
  width: auto;
}

.entry-body iframe {
  width: 100% !important;
  aspect-ratio: 16/9;
}

.entry-body .lazy-container {
  width: 100% !important;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  /* font-size: 0.875rem; */
  line-height: 1.25rem;
  border: 1px solid #babdc7;
  margin-bottom: 2rem;
}

thead {
  background-color: #f9fafb;
}

th,
td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #babdc7;
}

th {
  font-weight: 600;
}

tr {
  border-bottom: 1px solid #babdc7;
}

tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

tbody tr:hover {
  background-color: #f3f4f6;
}

caption {
  caption-side: bottom;
  text-align: left;
  padding: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.product-image-table {
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    width: calc(100vw - 4rem);
  }
}
@media (min-width: 1024px) {
  .text-container {
    width: 60%;
    max-width: 60%;
    padding: 1.5rem 3rem;
  }
}
@media (max-width: 1024px) {
  .grid.m-grid-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.m-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.m-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.m-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.m-grid-13 {
    grid-template-columns: 1fr 3fr;
  }
  .f-row.m-f-col {
    flex-direction: column;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .grid.grid-11,
  .grid.grid-13,
  .grid.grid-21 {
    grid-template-columns: 1fr;
  }
}
.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

.btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #4076d7;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.btn svg {
  min-width: 20px;
  min-height: 20px;
}

.btn svg path {
  stroke: #fff;
}

.btn i {
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-back:hover i {
  transform: translateX(-5px);
}

.btn-primary {
  background-color: #4076d7;
}

.btn-primary:hover {
  background-color: #3c64c4;
  border-color: #3c64c4;
}

.btn-line {
  border-color: rgba(64, 118, 215, 0.5);
  background-color: transparent;
  color: #30323a;
}

.btn-line svg path {
  stroke: #30323a;
}

.btn-line:hover {
  border-color: #4076d7;
}

.btn-text {
  color: #3c64c4;
  border: 0;
  padding: 0 !important;
  background: transparent;
}

.btn-md {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

.static-icon {
  padding: 0.75rem;
  min-width: 3rem;
  max-width: 3rem;
  min-height: 3rem;
  max-height: 3rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #babdc7;
  border-radius: 0.3rem;
  font-size: 0.875rem;
  transition: 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.pagination a {
  color: #8a8e9f;
  background-color: #fff;
}

.pagination a:hover {
  background-color: #efeff0;
  border-color: #9fa2b1;
}

.pagination .current {
  background-color: #8a8e9f;
  color: #fff;
  border-color: #8a8e9f;
  cursor: default;
}

.pagination .prev,
.pagination .next {
  font-weight: bold;
}

.breadcrumb {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #0c0c0c;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.single .breadcrumb {
  margin-bottom: 1rem;
}

.author {
  position: relative;
  column-gap: 0.5rem;
  row-gap: 0;
  flex-wrap: wrap;
}

.author .author-wrapper {
  padding-right: 0.5rem;
}

.author .author-wrapper.inactive {
  filter: opacity(0.2);
}

.author .author-image {
  width: 2rem;
  border-radius: 50%;
  border: 1px solid #d5d7dd;
}

.author .author-name {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author .author-name a {
  color: #0c0c0c;
  font-size: 13px;
}

.author .author-social {
  margin: 0;
}

.author .author-social li {
  padding: 0;
  margin: 0;
  background: none;
}

.author .author-social img {
  opacity: 50%;
}

.author .author-social img:hover {
  opacity: 80%;
}

.author .author-image-wrapper .author-card {
  position: absolute;
  padding: 1rem;
  background-color: #fff;
  top: 38px;
  left: 0;
  filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 0px 4px);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 16px;
  width: 300px;
  z-index: 99;
  display: none;
}

.author .author-image-wrapper .author-card.active {
  display: flex;
}

.author .author-image-wrapper .author-card > div:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 2px dotted #d5d7dd;
}

/* .author .author-image-wrapper .author-card::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #fff;
  top: -4px;
  left: 1rem;
  transform: rotate(45deg);
} */
.author .author-image-wrapper .author-card .author-image {
  width: 3rem;
}

.author .author-image-wrapper .author-card .author-role {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-top: 4px;
}

.author-in-content {
  padding: 1.5rem;
  margin: 4rem 0;
  background: #ecf1fb;
}

.author-in-content .section-heading {
  margin-bottom: 1.5rem !important;
}

.author-in-content .section-heading h2 span {
  background: #ecf1fb !important;
}

.author-in-content .author .author-image {
  width: 3rem;
}

.author-in-content .author-bio {
  margin-top: 1rem;
}

.author-in-content .author-bio p {
  font-size: 14px;
  margin-bottom: 0;
}

.page-header {
  position: relative;
  padding: 2.5rem 0 1.5rem;
  z-index: 0;
}

.page-header-colored {
  background: #9fa2b1;
}

.page-header-colored::before {
  content: "";
  position: absolute;
  width: 100vw;
  top: 0;
  left: calc(50% - 50vw);
  background: #d5d7dd;
  height: 100%;
  z-index: -1;
}

.page-header .section-heading {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 0;
}

.page-header .section-heading h1 {
  margin-bottom: 1rem;
}

.page-header .section-heading h1 span {
  background: transparent;
}

.page-header .section-heading .description {
  font-size: 0.85rem;
}

.page-header .section-heading .description p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.page-header .section-heading .description a {
  color: #0c0c0c;
}

.breadcrumb {
  grid-column: 2 / span 10;
  margin-bottom: 0;
}

.toc {
  border: 1px solid #d5d7dd;
}

.toc .toc-header {
  padding: 1rem;
  cursor: pointer;
}

.toc .toc-header h4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}

.toc .toc-header .toc-icon {
  display: inline-block;
}

.toc .toc-header .toc-icon i.active {
  transform: rotate(180deg);
}

.toc .toc-container {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 14px;
  transition: 300ms cubic-bezier(0.45, 0, 0.4, 1);
  overflow: hidden;
}

.toc .toc-container.active {
  display: block;
}

.toc ul {
  list-style-type: none;
}

.toc ul ul {
  margin-left: 1rem !important;
}

.toc ul li {
  line-height: 1.5em;
  margin-bottom: 0.5rem;
}

.toc ul li a {
  display: flex;
  align-items: center;
  color: #0c0c0c;
  text-decoration: none;
}

.toc ul li a:hover {
  text-decoration: underline;
}

.toc ul li svg {
  height: 0.5rem;
  width: 0.5rem;
  margin-top: 5px;
  margin-right: 0.5rem;
}

.entry-body .toc {
  display: block;
  margin-bottom: 2rem;
}

.single-review-info .rating-wrapper {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}

.single-review-info .main-rating-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4076d7;
  color: #fff;
}

.single-review-info .main-rating-wrapper .rating {
  padding: 10px;
}

.single-review-info .main-rating-wrapper .rating-title {
  text-align: center;
  margin-bottom: 0;
}

.single-review-info .main-rating-wrapper .rating-title-result {
  font-size: 2rem;
  font-weight: 900;
}

.single-review-info .main-rating-wrapper .rating-sub-title {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 5px !important;
}

.single-review-info .main-rating-wrapper .rating-logo {
  background: rgba(0, 0, 0, 0.2);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-decoration: none;
}

.single-review-info .main-rating-wrapper .rating-logo img {
  height: 13px;
}

aside .toc {
  display: none;
}

@media (min-width: 0px) and (max-width: 599px) {
  .vs-product-box h3 {
    font-size: 1rem !important;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .vs-product-box .hands-on .btn {
    font-size: 0.8rem;
  }
  .vs-product-box h3 {
    font-size: 1.5rem;
  }
  .vs-content .vs-content-desc,
  .vs-content .vs-content-image span {
    font-size: 0.8rem;
  }
}
@media (min-width: 1180px) {
  .entry-body .toc {
    display: none;
  }
  aside .toc {
    display: block;
  }
  aside .toc .toc-header .toc-icon {
    display: none;
  }
  aside .toc .toc-container {
    display: block;
  }
}
@media (max-width: 1179px) {
  .toc h4 {
    justify-content: space-between;
  }
  .toc .toc-header,
  .toc .toc-container {
    padding: 0.5rem 0.75rem;
  }
}
.text-center {
  text-align: center;
}

.text-primary {
  color: #4076d7;
}

.bg-primary {
  background-color: #4076d7;
  color: white;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  padding-top: 1rem;
}

.site-header .main-nav-top {
  padding-bottom: 1rem;
  gap: 1rem;
}

.site-header .social-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-header .social-menu a {
  font-size: 1.3rem;
  color: #8a8e9f;
  padding: 0.5rem;
}

.site-header .social-menu a:hover {
  color: #676c7e;
}

.site-header .brand .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .brand .logo img {
  height: 4rem;
  object-fit: contain;
  padding: 0.5rem;
}

.site-header .utilities {
  justify-content: flex-end;
  gap: 1rem;
}

.site-header .search {
  transition: all var(--animation-timing);
  cursor: pointer;
  position: relative;
}

.site-header .search svg.hidden {
  display: none;
}

.site-header .search form {
  display: none;
  position: absolute;
  top: 0;
  right: 60px;
}

.site-header .search form input {
  height: 48px;
  padding: 0 1rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  border: 1px solid #757b8f;
}

.site-header .search form.searchActive {
  display: block;
}

.site-header a {
  color: #000;
}

.site-header a:hover {
  color: #000;
}

.site-header .menu-toggle {
  display: none;
}

.site-header .navbar {
  display: block;
}

.site-header .navbar .m-search {
  display: none;
}

.site-header .navbar .main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.site-header .navbar .main-menu a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-header .navbar .main-menu > li > a {
  padding: 1rem;
  font-size: 1rem;
}

.site-header .navbar .main-menu > .menu-item-has-children {
  position: relative;
}

.site-header .navbar .main-menu > .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.4rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  .site-header
    .navbar
    .main-menu
    > .menu-item-has-children.menu-item-has-children:hover
    > a::after {
    transform: rotate(180deg);
  }
}
.site-header .navbar .main-menu > .menu-item-has-children:hover > .sub-menu {
  display: flex;
}

.site-header .navbar .main-menu > .menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  background: #444651;
  padding: 1.5rem 2rem;
  list-style: none;
  gap: 0.5rem;
  flex-direction: column;
  z-index: 10;
}

.site-header .navbar .main-menu > .menu-item-has-children > .sub-menu a {
  color: #fff;
  padding: 0.75rem 0;
}

.site-header .navbar .main-menu > .menu-item-has-children > .sub-menu a:hover {
  text-decoration: underline;
}

.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  .sub-menu {
  list-style: none;
  columns: 2;
  column-gap: 2rem;
  margin-top: 0.5rem;
}

.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  .sub-menu
  a {
  font-weight: 500;
  padding: 0.5rem 0;
}

.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  .sub-menu
  a
  i::before {
  font-weight: 900;
  margin-left: 0.4rem;
  font-size: 0.75rem;
}

.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  > a {
  /* pointer-events: none; */
  /* cursor: default; */
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  > a
  > .sub-menu {
  display: block;
  padding: 0.5rem 0 0 1rem;
}

.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu:has(.sub-menu) {
  flex-direction: row;
  gap: 3rem;
}

.site-header .navbar .main-menu .dropdown-menu {
  position: absolute;
  top: 86px;
  left: calc((100vw - 1400px) / 2);
  width: 1400px;
  max-width: 100vw;
  padding: 0;
  z-index: 5;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  display: none;
}

.site-header .navbar .main-menu .dropdown-menu.show {
  display: block;
}

@media (max-width: 1200px) {
  .site-header .search {
    display: none;
  }
  .site-header .navbar {
    display: none;
  }
  .site-header .menu-toggle {
    color: #fff;
    border: none;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    cursor: pointer;
  }
  .site-header .menu-toggle svg.hidden {
    display: none;
  }
  .site-header .navbar.active {
    display: block;
    position: absolute;
    top: 113px;
    background-color: #efeff0;
    z-index: 5;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    left: 0;
  }
  .site-header .navbar .m-search {
    display: block;
    padding: 1rem;
  }
  .site-header .navbar .search-form {
    position: relative;
  }
  .site-header .navbar .search-form .search-field {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 1rem 3rem 1rem 1rem;
    border: 1px solid #babdc7;
    border-radius: 0.3rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    width: 100%;
    height: 48px;
  }
  .site-header .navbar .search-form .search-submit {
    position: absolute;
    border: none;
    background-color: transparent;
    right: 10px;
    top: 10px;
  }
  .site-header .navbar .main-menu {
    flex-direction: column;
    gap: 0;
    position: unset;
  }
  .site-header .navbar .main-menu > .menu-item {
    width: 100%;
    border-bottom: 1px solid #d5d7dd;
  }
  .site-header .navbar .main-menu > .menu-item:first-child {
    border-top: 1px solid #d5d7dd;
  }
  .site-header .navbar .main-menu .menu-item a {
    padding: 1rem;
  }
  .site-header .navbar .main-menu > .menu-item-has-children > .sub-menu {
    display: none !important;
    position: unset;
  }
  .site-header .navbar .main-menu > .menu-item-has-children > .sub-menu.show {
    display: flex !important;
  }
  .site-header
    .navbar
    .main-menu
    > .menu-item-has-children.menu-item-has-children.rotate
    > a::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 768px) {
  .site-header .brand .logo img {
    height: 4rem;
  }
  .site-header
    .navbar
    .main-menu
    > .menu-item-has-children
    > .sub-menu:has(.sub-menu) {
    flex-direction: column;
    gap: 2rem;
  }
  .site-header .navbar.active {
    top: 144px;
  }
}
@media (max-width: 600px) {
  .site-header .social-menu-nav {
    display: none;
  }
  .site-header .brand {
    grid-column: 1 / span 2;
  }
  .site-header .brand .logo {
    justify-content: flex-start;
  }
}
.site-footer {
  background-color: #30323a;
  color: #fff;
  margin-top: 2.5rem;
}

.site-footer .footer-wrapper {
  padding: 2rem 0 0;
}

.site-footer .footer-top .brand .logo {
  display: block;
  padding: 2rem 0;
}

.site-footer .footer-top .brand .logo img {
  height: 4rem;
  object-fit: contain;
}

.site-footer .footer-top nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.site-footer .footer-top nav .footer-nav-heading {
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer .footer-top nav ul {
  list-style: none;
  column-count: 2;
}

.site-footer .footer-top nav ul li {
  padding: 3px 0;
}

.site-footer .footer-top nav ul li a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-top nav ul li a:hover {
  text-decoration: underline;
}

.site-footer .footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-bottom .copyright {
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-bottom nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.site-footer .footer-bottom nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.site-footer .footer-bottom nav ul a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-bottom nav ul a i {
  font-size: 1.5rem;
}

.site-footer .footer-bottom nav ul a:hover {
  color: #fff;
}

@media (min-width: 0px) and (max-width: 599px) {
  .site-footer .footer-wrapper {
    padding: 2rem 0 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .footer-bottom.grid.grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-bottom nav {
    justify-content: center !important;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .site-footer .footer-wrapper {
    padding: 2rem 2rem 0;
  }
}
@media (max-width: 1023px) {
  .site-footer .footer-top {
    gap: 0;
  }
  .site-footer .footer-top .brand,
  .site-footer .footer-top nav {
    grid-column: 1/-1;
  }
  .site-footer .footer-top .brand .logo {
    padding: 1.5rem 0;
    text-align: center;
  }
  .site-footer .footer-top nav {
    padding: 1rem 0;
  }
  .site-footer .footer-top nav li {
    padding: 6px 0;
  }
  .site-footer .footer-top .footer-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
article {
  padding: 2.5rem 0;
}

.post-card {
  padding: 1rem 0;
}

.post-card:not(:last-child) {
  border-bottom: 1px solid #d5d7dd;
}

.post-card a {
  color: #0c0c0c;
  text-decoration: none;
}

.post-card a:hover .post-image img {
  transform: scale(1.08);
}

.post-card a:hover .post-title {
  text-decoration: underline;
}

.post-card .post-image {
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.post-card .post-details {
  padding-top: 1rem;
}

.post-card .post-details .post-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-card .post-details .post-title-heavy {
  /* font-weight: 800; */
}

.post-card .post-details .post-description p {
  font-size: 14px;
  margin-bottom: 1rem;
}

.post-card .post-details .post-cat {
  margin-bottom: 0.25rem;
}

.post-card .post-details .post-cat,
.post-card .post-details .post-info {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-card.post-card-lg .post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.post-card.post-card-lg .post-description p {
  font-size: 1rem;
}

.post-card.post-card-md .post-title {
  margin-bottom: 1rem;
}

.post-card.post-card-md-list {
  padding: 1.5rem 0;
}

.post-card.post-card-md-list a {
  grid-template-areas: "content content image";
}

.post-card.post-card-md-list a .post-image {
  grid-area: image;
  aspect-ratio: 3/2;
}

.post-card.post-card-md-list a .post-details {
  grid-area: content;
}

.post-card.post-card-sm a {
  grid-template-areas: "content content image";
}

.post-card.post-card-sm .post-image {
  grid-area: image;
}

.post-card.post-card-sm .post-details {
  padding-top: 0;
  grid-area: content;
}

.post-cover .post-image,
.post-cover .post-details {
  grid-column: span 6;
}

.post-cover .post-image {
  aspect-ratio: 3/2;
  height: 100%;
}

.post-cover .post-details {
  background-color: #30323a;
  padding: 4rem;
}

.post-cover .post-details h3,
.post-cover .post-details p,
.post-cover .post-details span {
  text-align: center;
  color: #fff;
}

.post-cover .post-details .post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-cover .post-details p {
  font-size: 1rem !important;
}

.post-cover .post-details .post-info {
  font-size: 15px;
}

.post-cover-s {
  position: relative;
}

.post-cover-s .post-image {
  aspect-ratio: 9/16;
}

.post-cover-s .post-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0px,
    transparent 100%
  );
}

.post-cover-s .post-details .post-title {
  font-size: 17px;
}

.post-cover-s .post-details p {
  font-size: 14px !important;
}

.post-cover-s .post-details .post-info {
  font-size: 12px;
}

.hero .post-card:first-child {
  padding-top: 0;
}

.hero .post-card.post-card-md .post-title {
  font-size: 1.25rem;
}

.section-heading {
  position: relative;
  margin-bottom: 1rem;
}

.section-heading:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4076d7;
  position: absolute;
  left: 0;
  top: 50%;
}

.section-heading:has(.clean) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section-heading:has(.clean):before {
  content: none;
}

.section-heading h1 {
  margin-bottom: 0;
}

.section-heading h1 span {
  background-color: #fff;
  padding: 0;
}

.section-heading h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading h2 span {
  background-color: #4076d7;
  color: #fff;
}

.section-heading span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
}

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

.section-heading.section-heading-secondary {
  margin-bottom: 0;
}

.section-heading.section-heading-secondary h2 {
  font-size: 1rem;
  margin-bottom: 0;
}

.section-heading.section-heading-secondary h2 span {
  padding: 2px 10px;
  margin-left: 10px;
  background-color: #fff;
  color: #0c0c0c;
}

.section-heading:has(h1) {
  margin-top: 2.5rem;
}

.reviews-wrapper .post-card-sm .post-cat,
.reviews-wrapper .post-card-sm .post-description {
  display: none;
}

.text-container h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.archive article.hero {
  padding-top: 0;
  border-bottom: 1px solid #d5d7dd;
}

.archive .post-card-md .post-details {
  padding-top: 0;
}

.archive .post-list {
  grid-column: span 7;
}

.archive aside {
  grid-column: 10/-1;
}

.single-review .entry-header {
  margin-bottom: 3rem;
  row-gap: 0;
}

.single-review .entry-header .entry-title {
  grid-column: span 8;
  margin-top: 1rem;
}

.single-review .entry-header .entry-post-info {
  grid-column: span 12;
}

.single-review .entry-header .entry-post-info .post-info {
  grid-column: 8/-1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single .entry-header .entry-post-info .post-info .deck p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d5d7dd;
}

.single .entry-header .entry-post-info .post-info .meta span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single .entry-header .entry-post-info .post-info .meta .date {
  margin-top: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid #d5d7dd;
}

.single .entry-header .entry-post-info .post-info .disclaimer {
  font-size: 12px;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid #d5d7dd;
}

.single .entry-header .entry-post-info .post-image {
  grid-column: 1 / span 7;
  grid-row-start: 1;
}

.single .entry-header .entry-post-info .post-image img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* @media (max-width: 600px) {
  .single .entry-header .entry-post-info .post-image img {
    height: 300px;
  }
}
@media (max-width: 425px) {
  .single .entry-header .entry-post-info .post-image img {
    height: 230px;
  }
} */
.single .entry-header .entry-post-info .post-image .post-imag-caption {
  font-size: 12px;
  color: #8a8e9f;
}

.single .entry-body .affiliate-info {
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #efeff0;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.single .entry-body .post-tags {
  padding-top: 1rem;
  border-top: 1px solid #d5d7dd;
}

.single .entry-body .post-tags svg {
  display: inline-block;
  float: left;
  margin-top: 3px;
}

.single .entry-body .post-tags .links {
  margin-left: 1.5rem;
}

.single .entry-body .post-tags .links a {
  text-decoration: none;
  color: #0c0c0c;
  font-size: 1rem;
}

.single .entry-body .post-tags .links a:hover {
  text-decoration: underline;
}

.single aside {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

.single aside .globalDisclosure {
  border: 1px solid #d5d7dd;
  padding: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='102' height='155' viewBox='0 0 102 155' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M96.2268 10.5979C99.4183 10.5979 102 13.1867 102 16.3738V50.549C102 53.742 99.4124 56.3308 96.2268 56.3308H78.907C66.4131 56.3308 56.2877 66.4548 56.2877 78.9543V149.23C56.2877 152.257 53.9606 154.739 50.9941 154.982V155H16.3546C13.1689 155 10.5813 152.411 10.5813 149.224V62.1007C10.5813 58.9077 13.1689 56.3249 16.3546 56.3249H56.2877V16.8536H56.3173C56.2996 16.6996 56.2877 16.5278 56.2877 16.3738C56.2877 13.1867 58.8753 10.5979 62.061 10.5979H96.2268ZM39.9331 45.7328C43.1247 45.7328 45.7064 43.1441 45.7064 39.957C45.7064 39.7971 45.6945 39.6312 45.6827 39.4772H45.7064V5.78177C45.7064 2.58876 43.1247 0 39.9331 0H6.24695V0.0296197C6.093 0.0118479 5.93312 0 5.77325 0C2.58168 0 0 2.58876 0 5.78177V39.4772H0.0236851C0.0118426 39.6312 0 39.803 0 39.957C0 43.1441 2.58168 45.7328 5.77325 45.7328C5.93312 45.7328 6.093 45.7269 6.24695 45.7092V45.7328H39.9331Z' fill='%234076D7' fill-opacity='0.2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% + 4px) -3px;
  background-size: 5rem;
}

.single aside .globalDisclosure span {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.single aside .globalDisclosure p {
  font-size: 12px;
  margin-bottom: 0;
}

.single aside .globalDisclosure p a {
  color: inherit;
}

.single-review .badge-section-title-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(82, 95, 127, 0.3);
  margin-bottom: 10px;
}

.single-review .badge-section-title-wrapper .badge {
  display: block;
  margin: 0 auto;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
}

.single-review .badge-section-title-wrapper .badge-section-title {
  display: inline-block;
}

.single-review .deck p {
  font-size: 1rem !important;
  padding-bottom: 1rem !important;
}

.single-review .single-review-info .bottom-line-wrapper {
  grid-column: span 10;
}

@media (min-width: 0px) and (max-width: 499px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 8;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 9;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 10;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 9;
  }
}
.single-review .single-review-info .bottom-line-wrapper .desc-read-more {
  padding-right: 10px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 115px;
  transition: max-height 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

.single-review .single-review-info .bottom-line-wrapper .desc-read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.single-review
  .single-review-info
  .bottom-line-wrapper
  .desc-read-more.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.single-review
  .single-review-info
  .bottom-line-wrapper
  .desc-read-more.expanded::after {
  display: none;
}

.single-review .single-review-info .bottom-line-wrapper .desc-read-more p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.single-review .single-review-info .bottom-line-wrapper button {
  padding: 0.5rem 0 !important;
  text-decoration: underline;
  text-transform: lowercase;
}

.single-review .single-review-info .rating-wrapper {
  grid-column: span 2;
}

@media (min-width: 0px) and (max-width: 499px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 4;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 3;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 3;
  }
}
.single-review .single-review-info .product-ctas {
  flex-wrap: wrap;
}

.single-review .single-review-info .product-ctas ul {
  list-style: none;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.single-review .single-review-info .product-ctas ul li a {
  padding: 0 5px !important;
}

.single-review .single-review-info .product-ctas .btn {
  gap: 5px;
}

@media (max-width: 1023px) {
  .single-review .single-review-info {
    display: none;
  }
}
.single-review .single-review-info-m {
  display: none;
}

@media (max-width: 1023px) {
  .single-review .single-review-info-m {
    display: block;
    grid-column: span 12;
  }
}
.single-review .entry-header {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .single-review .entry-header {
    margin-bottom: 1.5rem;
  }
}
.single-review .tab-list {
  width: 100%;
  height: 100px;
  overflow-x: auto;
  overflow-y: visible;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.single-review .tab-list .tabbed-nav {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  white-space: nowrap;
  background: #efeff0;
  border-radius: 40px;
  list-style: none;
}

.single-review .tab-list .tabbed-nav .tabbed-nav-item {
  position: relative;
}

.single-review .tab-list .tabbed-nav .tabbed-nav-item .tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  line-height: 44px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #9fa2b1;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  border-radius: 40px;
  background: #efeff0;
}

.single-review .tab-list .tabbed-nav .tabbed-nav-item .tab:hover {
  background: #d5d7dd;
  color: #757b8f;
}

.single-review .tab-list .tabbed-nav .tabbed-nav-item .tab:focus-visible {
  outline: 0;
}

.single-review .tab-list .tabbed-nav .tabbed-nav-item .tab.active {
  background: #bfdefe;
  color: #444651;
}

.single-review .tab-list .tabbed-nav.tabbed-nav-sub {
  display: none;
  position: absolute;
  top: 52px;
  left: 0;
  gap: 0.25rem;
  background: transparent;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.single-review .tab-list .tabbed-nav .tabbed-nav-item.active .tabbed-nav-sub {
  display: flex;
}

.single-review .tab-list .tabbed-nav.tabbed-nav-sub .tab {
  padding: 0 1rem;
  line-height: 34px;
  font-size: 12px;
  background: #e4f2fe;
}

.single-review .tab-list .tabbed-nav.tabbed-nav-sub .tab:hover {
  background: #bfdefe;
}

/* Prices Tab Content - single review */
.prices-wrapper {
  border: 1px solid #d5d7dd;
  margin-bottom: 2rem;
}

.prices-wrapper .prices-title {
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  background: #d5d7dd;
  font-size: 1.25rem;
}

.prices-wrapper .prices-list {
  margin: 0;
  padding: 1.25rem;
}

.prices-wrapper .prices-list .price-item {
  margin: 0;
  padding: 0;
  background-image: none;
  flex-direction: row;
  flex-wrap: wrap;
}

.prices-wrapper .prices-list .price-item:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #d5d7dd;
}

.prices-wrapper .prices-list .price-item .retailer-logo {
  width: 25%;
}

.prices-wrapper .prices-list .price-item .retailer-logo img {
  width: 100%;
  height: 42px;
  object-fit: contain;
}

.prices-wrapper .prices-list .price-item .btn {
  display: flex;
  gap: 1.5rem;
  row-gap: 0;
}

.prices-wrapper .prices-list .price-item .btn .price {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.prices-wrapper .prices-list .price-item .btn .price span {
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
}

.prices-wrapper .prices-list .price-item .condition-wrapper {
  gap: 4px;
}

.prices-wrapper .prices-list .price-item .condition {
  font-size: 1rem;
  font-weight: bold;
  color: #8a8e9f;
}

.prices-wrapper .prices-list .price-item .condition-rating {
  font-size: 1rem;
  font-weight: bold;
  color: #4076d7;
}

@media (max-width: 600px) {
  .prices-wrapper .prices-list .price-item {
    flex-direction: column;
  }
  .prices-wrapper .prices-list .price-item .retailer-logo {
    width: 40%;
  }
}
/* Prices on VS product box */
.prices-wrapper-s {
  border: 0;
  margin-bottom: 0;
}

.prices-wrapper-s .prices-title {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.prices-wrapper-s .prices-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0.5rem 1rem;
}

.prices-wrapper-s .prices-list .price-item {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 0 !important;
  row-gap: 0 !important;
}

.prices-wrapper-s .prices-list .price-item a {
  text-decoration: none;
}

.prices-wrapper-s .prices-list .price-item .retailer-logo {
  width: 3rem;
}

.prices-wrapper-s .prices-list .price-item .btn {
  gap: 0;
}

@media (max-width: 600px) {
  .prices-wrapper-s .prices-list .price-item {
    flex-direction: row;
  }
  .prices-wrapper-s .prices-list .price-item .retailer-logo {
    width: 3rem;
  }
}
/* Product box (copied block style) */
.product-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px solid #9fa2b1;
  border-radius: 5px;
  margin-bottom: 2rem;
  position: relative;
  overflow: visible;
}

.product-box p {
  font-size: 1rem;
  margin-bottom: 0;
}

.product-box .pros-cons-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-box .pros-cons-wrapper ul {
  list-style-type: none;
  margin-bottom: 0;
  margin-left: 0 !important;
}

.product-box .pros-cons-wrapper li {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 5px;
  background-image: none;
}

.product-box .pros-cons-wrapper li:before {
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 600;
  margin-right: 7px;
}

.product-box .pros li:before {
  content: "\f00c";
  color: #29e8b2;
}

.product-box .cons li:before {
  content: "\f00d";
  color: #da3448;
}

.page:not(.home) .section-heading,
.page:not(.home) .breadcrumb {
  grid-column: 2 / span 10;
  /* margin-bottom: 0; */
}

.page.page-template-default article,
.page.page-template-page-sidebar article,
.page-template-page-image-comparison article {
  padding: 0;
}

.page.page-template-default .section-heading,
.page.page-template-page-sidebar .section-heading,
.page-template-page-image-comparison .section-heading {
  margin: 0 0 2rem !important;
  padding: 0 0 2rem;
  border-bottom: 1px solid #d5d7dd;
}

.page.page-template-default .page-header-colored .section-heading,
.page.page-template-page-sidebar .page-header-colored .section-heading,
.page-template-page-image-comparison .page-header-colored .section-heading {
  margin-bottom: 0.75rem !important;
}

.page.page-template-default .page-content,
.page.page-template-page-sidebar .page-content,
.page-template-page-image-comparison .page-content {
  grid-column: 2 / span 10;
}

.vs-header {
  grid-column: 2 / span 10;
  position: relative;
}

.vs-header .vs-select-wrapper .vs-select-description {
  padding: 2rem 0 1rem;
  text-align: center;
}

.vs-header .vs-select-wrapper .vs-select-description p {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.vs-header .vs-select-wrapper .camera-placeholder {
  background: #fff;
  padding: 0 1rem;
  border: 2px solid #d5d7dd;
  margin-top: -2px;
}

.vs-header .vs-select-wrapper .camera-placeholder .camera-image {
  width: 80%;
  height: 195px;
  margin: 0 auto;
  background-size: contain;
  background-position: center 70px;
  background-repeat: no-repeat;
}

.vs-header .vs-select-wrapper .camera-placeholder .camera-image a {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 175px;
  }
}
@media (max-width: 767px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 215px;
  }
}
@media (max-width: 599px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 176px;
  }
}
@media (max-width: 424px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 136px;
  }
}
.vs-header .vs-select-wrapper .camera-placeholder.hidden {
  display: none;
}

.vs {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -28%);
  background: #71b5fc;
  border-radius: 50%;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  z-index: 1;
}

@media (max-width: 1023px) {
  .vs {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 599px) {
  .vs {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.vs span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #0c0c0c;
}

@media (max-width: 1023px) {
  .vs span {
    font-size: 0.85rem;
  }
}
@media (max-width: 599px) {
  .vs span {
    font-size: 0.75rem;
  }
}
.vs-sm {
  width: 2rem;
  height: 2rem;
}

.vs-sm span {
  font-size: 0.75rem;
}

.vs-body {
  grid-column: 2 / span 10;
}

.vs-product-wrapper {
  display: block;
  background: #fff;
}

.page-template-page-comparison .section-heading {
  grid-column: span 12 !important;
  margin-bottom: 0;
}

.page-template-page-comparison .section-heading {
  margin: 0 0 2rem !important;
  padding: 0 0 2rem;
  border-bottom: 1px solid #d5d7dd;
}

.page-template-page-comparison .page-content {
  grid-column: span 12 !important;
}

.archive.camera-compare .page-header {
  border-bottom: 1px solid #d5d7dd;
}

.archive.camera-compare .breadcrumb,
.archive.camera-compare .header-select {
  grid-column: span 12;
}

.archive.camera-compare .header-select .section-heading {
  grid-column: span 3;
  padding-right: 2rem !important;
}

.archive.camera-compare .header-select .section-heading .description {
  font-size: 1rem;
  line-height: 1.4;
}

.archive.camera-compare .header-select .vs-header {
  grid-column: span 9;
  margin-top: -2rem;
}

.archive.camera-compare .header-select .vs-product-image {
  height: 160px;
  overflow: hidden;
}

.vs-compare-cta {
  grid-column: span 2;
}

.vs-compare-cta p {
  margin-bottom: 0;
  margin-top: -10px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.single.comparison .entry-content .entry-body {
  grid-column: 2 / span 10;
}

@media (min-width: 0px) and (max-width: 599px) {
  .post-card-md-list .post-description {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .hero-left {
    grid-column: 1 / span 12;
  }
  .hero-left .hero-left-main {
    grid-column: 1/-1;
  }
  .hero-left .hero-left-sub {
    grid-column: 1/-1;
    grid-row-start: 2;
  }
  .post-card-lg {
    border-bottom: 1px solid #d5d7dd;
  }
  .hero-right {
    grid-column: 1 / span 12;
  }
  .hero-right .post-card-sm {
    padding: 0 0 1rem 0;
  }
  .reviews-wrapper .post-card-sm {
    grid-column: 1 / span 2;
  }
  .news-left {
    grid-column: 1 / span 12;
  }
  .news-left .post-card-md:last-child {
    border-bottom: 1px solid #d5d7dd;
  }
  .news-right {
    grid-column: 1 / span 12;
  }
  .news-right .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .post-cover .post-image,
  .post-cover .post-details {
    grid-column: span 12;
  }
  .post-cover .post-details {
    padding: 2rem;
  }
  .post-cover-s .post-image {
    aspect-ratio: 1/1;
  }
  .archive .hero-primary,
  .archive .hero-secondary {
    grid-column: 1/-1;
  }
  .archive article.hero .post-card-md-list .post-title {
    font-size: 17px;
  }
  .single .entry-content .entry-body,
  .single .entry-content aside,
  .page .entry-content .entry-body,
  .page .entry-content aside,
  .single.comparison .entry-content .entry-body {
    grid-column: 1 / span 12;
  }
  .page .breadcrumb,
  .page .section-heading {
    grid-column: 1 / span 12 !important;
  }
  .page .section-heading {
    padding: 0 0 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-left {
    grid-column: 1 / span 12;
  }
  .hero-left .hero-left-main {
    grid-column: 4/-1;
  }
  .hero-left .hero-left-sub {
    grid-column: 1 / span 3;
    grid-row-start: 1;
  }
  .hero-right {
    grid-column: 1 / span 12;
  }
  .hero-right .post-card-sm-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-right .post-card-sm-wrapper .post-card-sm {
    padding-top: 0;
  }
  .news-left {
    grid-column: 1 / span 12;
  }
  .news-left .post-card-md:last-child {
    border-bottom: 1px solid #d5d7dd;
  }
  .news-right {
    grid-column: 1 / span 12;
  }
  .reviews-wrapper .post-card-sm:last-child {
    border-bottom: 0;
  }
  .reviews-wrapper .post-card-sm:nth-last-child(2) {
    border-bottom: 0;
  }
  .post-cover .post-details {
    padding: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1179px) {
  .single .entry-content .entry-body,
  .single .entry-content aside,
  .page .entry-content .entry-body,
  .page .entry-content aside {
    grid-column: 2 / span 10;
  }
  .single.comparison .entry-content .entry-body {
    grid-column: 1 / span 12;
  }
}
@media (max-width: 1023px) {
  .post-card.post-card-lg .post-title {
    font-size: 1.5rem;
  }
  .post-cover .post-details .post-title {
    font-size: 1.5rem;
  }
  .post-cover .post-details p {
    font-size: 14px !important;
  }
  .archive .post-list,
  .archive aside {
    grid-column: span 12;
  }
  .single .entry-header .entry-title {
    grid-column: span 12;
  }
  .single .entry-header .entry-post-info .post-info {
    grid-column: span 12 !important;
  }
  .single .entry-header .entry-post-info .post-info .deck p {
    font-size: 1rem;
  }
  .single-review .entry-header .entry-post-info .post-info .disclaimer {
    padding-bottom: 0;
  }
  .single .entry-header .entry-post-info .post-image {
    grid-column: span 12 !important;
    grid-row-start: 2;
  }
  .page-template-page-image-comparison .vs-header,
  .page-template-page-image-comparison .vs-body {
    grid-column: 1 / span 12;
  }
  .archive.camera-compare .header-select .section-heading {
    grid-column: span 12;
    padding-right: 0 !important;
  }
  .archive.camera-compare .header-select .vs-header {
    grid-column: span 12;
    margin-top: 0;
  }
  .subscription-container {
    grid-column: 1 / span 12;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .hero-left {
    grid-column: 1 / span 9;
  }
  .hero-left .hero-left-main {
    grid-column: 4/-1;
  }
  .hero-left .hero-left-sub {
    grid-column: 1 / span 3;
    grid-row-start: 1;
  }
  .hero-right {
    grid-column: 10 / span 3;
  }
  .reviews-wrapper .post-card-sm {
    border-bottom: 0;
  }
  .news-left {
    grid-column: 1 / span 6;
  }
  .news-left .post-card-md:last-child {
    border-bottom: 0;
  }
  .news-left .post-card-md:nth-last-child(2) {
    border-bottom: 0;
  }
  .news-right {
    grid-column: 7 / span 6;
  }
  .subscription-container {
    grid-column: 3 / span 8;
    gap: 1rem;
  }
}
@media (min-width: 1180px) {
  .page .entry-content .entry-body {
    grid-column: 2 / span 10;
  }
  .single .entry-content .entry-body,
  .page-template-page-sidebar .entry-content .entry-body {
    grid-column: 2 / span 7;
  }
  .single .entry-content aside,
  .page-template-page-sidebar .entry-content aside {
    grid-column: 10 / span 3;
  }
}
.ad {
  background-color: #efeff0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.error404 .entry-body {
  grid-column: 3 / span 8 !important;
  border: 1px solid #d5d7dd;
  padding: 1.5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .error404 .entry-body {
    grid-column: 2 / span 10 !important;
  }
}
.error404 .entry-body .post-image img {
  width: 80%;
}

.error404 .entry-body .post-info p {
  margin-bottom: 0.5rem;
}

.error404 .post-info ul {
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0 0.5rem !important;
}

.error404 .post-info li {
  padding: 0;
  margin: 0;
  background-image: none;
}

.error404 .post-info .btn:hover i.fa-youtube {
  transform: translateX(0);
}

/**
 * To override block styling
 */
.badge-sub-heading,
.badge-section-title {
  background-color: #bfdefe !important;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400 !important;
}

.badge-section-title {
  font-size: 12px !important;
}

.number {
  border-radius: 0.25rem 0 0.25rem 0 !important;
}

.number span {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
}

.rating {
  padding: 15px 10px 10px !important;
}

.rating-sub-title {
  font-weight: 600 !important;
  margin: 0 !important;
}

.sub-rating-modal {
  background-color: #e4f2fe !important;
  border: 1px solid #bfdefe !important;
}

.product-specs li:hover {
  background-color: #e4f2fe !important;
}

.buttons-wrapper a.button-others {
  border: 1px solid rgba(64, 118, 215, 0.5) !important;
}

.buttons-wrapper a.button-others:hover {
  border: 1px solid #4076d7 !important;
}

.products-at-a-glance-buttons a.button {
  text-decoration: none;
}

.wp-block-image,
.wp-block-gallery,
.wp-block-table,
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-image .wp-element-caption {
  font-size: 12px;
  color: #8a8e9f;
}

.wp-block-list {
  margin: 1rem 0 2rem 1rem;
}

.wp-block-list li {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  list-style: none;
  padding-left: 1.2rem;
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.00213623' width='8' height='8' rx='2' fill='%234076D7'/%3E%3C/svg%3E%0A");
}

.wp-block-group {
  background-color: #efeff0;
  padding: 0 1rem 1rem;
}

.wp-block-group .wp-block-heading {
  background-color: #bfdefe;
  margin: 0 -1rem 1rem;
  padding: 1rem 1.2rem;
}

/* From old site */
.ck-block.float-right {
  display: none;
}

.ck-image .image-container {
  height: 100% !important;
}

.ck-image .image-container .wp-caption {
  width: 100% !important;
}

.ck-image img {
  margin-bottom: 1rem;
}

.ck-image .image-caption {
  width: 100% !important;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: #222;
}

:root {
  --primary-blue-900: #3545a4;
  --primary-blue-800: #3c64c4;
  --primary-blue-700: #4076d7;
  --primary-blue-600: #4487eb;
  --primary-blue-500: #4795fa;
  --primary-blue-400: #57a5fc;
  --primary-blue-300: #71b5fc;
  --primary-blue-200: #97cafe;
  --primary-blue-100: #bfdefe;
  --primary-blue-50: #e4f2fe;
  --gray-900: #30323a;
  --gray-800: #444651;
  --gray-700: #555967;
  --gray-600: #676c7e;
  --gray-500: #757b8f;
  --gray-400: #8a8e9f;
  --gray-300: #9fa2b1;
  --gray-200: #babdc7;
  --gray-100: #d5d7dd;
  --gray-50: #efeff0;
  --wepc-acf-border-color: #9fa2b1;
  --wepc-acf-accent-color: #4076d7;
  --wepc-acf-gradient: #4076d7;
  --wepc-acf-primary-purple: #57a5fc;
  --wepc-acf-primary-red: #4076d7;
  --wepc-acf-primary-red-hover: #3c64c4;
}

.btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #4076d7;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.btn svg {
  min-width: 20px;
  min-height: 20px;
}
.btn svg path {
  stroke: #fff;
}
.btn i {
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.btn:hover i {
  transform: translateX(5px);
}

.btn-primary {
  background-color: #4076d7;
}
.btn-primary:hover {
  background-color: #3c64c4;
  border-color: #3c64c4;
}

.btn-line {
  border-color: rgba(64, 118, 215, 0.5);
  background-color: transparent;
  color: #30323a;
}
.btn-line svg path {
  stroke: #30323a;
}
.btn-line:hover {
  border-color: #4076d7;
}

.btn-text {
  color: #3c64c4;
  border: 0;
  padding: 0 !important;
  background: transparent;
}

.btn-md {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

.static-icon {
  padding: 0.75rem;
  min-width: 3rem;
  max-width: 3rem;
  min-height: 3rem;
  max-height: 3rem;
}

.post-card {
  padding: 1rem 0;
}
.post-card:not(:last-child) {
  border-bottom: 1px solid #d5d7dd;
}
.post-card a {
  color: #0c0c0c;
  text-decoration: none;
}
.post-card a:hover .post-image img {
  transform: scale(1.08);
}
.post-card a:hover .post-title {
  text-decoration: underline;
}
.post-card .post-image {
  overflow: hidden;
  aspect-ratio: 16/10;
  width: 100%;
  height: auto;
}
.post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.post-card .post-details {
  padding-top: 1rem;
}
.post-card .post-details .post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.post-card .post-details .post-title-heavy {
  font-weight: 800;
}
.post-card .post-details .post-description p {
  font-size: 14px;
}
.post-card .post-details .post-cat {
  margin-bottom: 0.5rem;
}
.post-card .post-details .post-cat,
.post-card .post-details .post-info {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}
.post-card.post-card-lg .post-image {
  aspect-ratio: 3/2;
}
.post-card.post-card-lg .post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.post-card.post-card-lg .post-description p {
  font-size: 1rem;
}
.post-card.post-card-md .post-title {
  margin-bottom: 1rem;
}
.post-card.post-card-md-list {
  padding: 1.5rem 0;
}
.post-card.post-card-md-list a {
  grid-template-areas: "content content image";
}
.post-card.post-card-md-list a .post-image {
  grid-area: image;
  aspect-ratio: 3/2;
}
.post-card.post-card-md-list a .post-details {
  grid-area: content;
}
.post-card.post-card-sm a {
  grid-template-areas: "content content image";
}
.post-card.post-card-sm .post-image {
  grid-area: image;
  aspect-ratio: 1/1;
}
.post-card.post-card-sm .post-details {
  padding-top: 0;
  grid-area: content;
}

.hero-left-rest .post-card {
  border-bottom: 0 !important;
  border-top: 1px solid #d5d7dd;
  padding-top: 1rem !important;
}

.post-cover .post-image,
.post-cover .post-details {
  grid-column: span 6;
}
.post-cover .post-image {
  aspect-ratio: 3/2;
  height: 100%;
}
.post-cover .post-details {
  background-color: #30323a;
  padding: 4rem;
}
.post-cover .post-details h3,
.post-cover .post-details p,
.post-cover .post-details span {
  text-align: center;
  color: #fff;
}
.post-cover .post-details .post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.post-cover .post-details p {
  font-size: 1rem !important;
}
.post-cover .post-details .post-info {
  font-size: 15px;
}
.post-cover-s {
  position: relative;
}
.post-cover-s .post-image {
  aspect-ratio: 9/16;
}
.post-cover-s .post-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0px,
    transparent 100%
  );
}
.post-cover-s .post-details .post-title {
  font-size: 17px;
}
.post-cover-s .post-details p {
  font-size: 14px !important;
}
.post-cover-s .post-details .post-info {
  font-size: 12px;
}

.hero .post-card:first-child {
  padding-top: 0;
}
.hero .post-card.post-card-md .post-title {
  font-size: 1.25rem;
}

.reviews-wrapper .post-card-sm .post-cat,
.reviews-wrapper .post-card-sm .post-description {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #babdc7;
  border-radius: 0.3rem;
  font-size: 0.875rem;
  transition: 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.pagination a {
  color: #8a8e9f;
  background-color: #fff;
}
.pagination a:hover {
  background-color: #efeff0;
  border-color: #9fa2b1;
}
.pagination .current {
  background-color: #8a8e9f;
  color: #fff;
  border-color: #8a8e9f;
  cursor: default;
}
.pagination .prev,
.pagination .next {
  font-weight: bold;
}

.author {
  gap: 0.5rem;
  flex-wrap: wrap;
}
.author .author-photo {
  width: 2.5rem;
  border-radius: 50%;
}
.author .author-name {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.author .author-name a {
  color: #0c0c0c;
  font-size: 15px;
}
.author .author-social {
  margin-left: 1rem;
}
.author .author-social img {
  opacity: 50%;
}
.author .author-social img:hover {
  opacity: 80%;
}

.author-in-content {
  padding: 1.5rem;
  margin: 4rem 0;
  background: #ecf1fb;
}
.author-in-content .section-heading {
  margin-bottom: 1.5rem !important;
}
.author-in-content .section-heading h2 span {
  background: #ecf1fb !important;
}
.author-in-content .author .author-photo {
  width: 4rem;
}
.author-in-content .author .author-name {
  font-weight: 500;
}
.author-in-content .author-bio {
  margin-top: 1rem;
}
.author-in-content .author-bio p {
  font-size: 14px;
  margin-bottom: 0;
}

.page-header {
  position: relative;
  padding: 2.5rem 0 1.5rem;
  z-index: 0;
}
.page-header-colored {
  background: #9fa2b1;
}
.page-header-colored::before {
  content: "";
  position: absolute;
  width: 100vw;
  top: 0;
  left: calc(50% - 50vw);
  background: #d5d7dd;
  height: 100%;
  z-index: -1;
}
.page-header .section-heading {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 0;
}
.page-header .section-heading h1 {
  margin-bottom: 1rem;
}
.page-header .section-heading h1 span {
  background: transparent;
}
.page-header .section-heading .description {
  font-size: 0.85rem;
}
.page-header .section-heading .description p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.page-header .section-heading .description a {
  color: #0c0c0c;
}

.section-heading {
  position: relative;
  margin-bottom: 1rem;
}
.section-heading:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4076d7;
  position: absolute;
  left: 0;
  top: 50%;
}
.section-heading:has(.clean) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.section-heading:has(.clean):before {
  content: none;
}
.section-heading h1 {
  margin-bottom: 0;
}
.section-heading h1 span {
  background-color: #fff;
  padding: 0;
}
.section-heading h2 {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-heading h2 span {
  background-color: #4076d7;
  color: #fff;
}
.section-heading span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
}
.section-heading.section-heading-center h2 {
  text-align: center;
}
.section-heading.section-heading-secondary {
  margin-bottom: 0;
}
.section-heading.section-heading-secondary h2 {
  font-size: 1rem;
  margin-bottom: 0;
}
.section-heading.section-heading-secondary h2 span {
  padding: 2px 10px;
  margin-left: 10px;
  background-color: #fff;
  color: #0c0c0c;
}

.section-heading:has(h1) {
  margin-top: 2.5rem;
}

.breadcrumb {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  grid-column: 2 / span 10;
  margin-bottom: 0;
}
.breadcrumb a {
  color: #0c0c0c;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.single-review-info .rating-wrapper {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}
.single-review-info .main-rating-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4076d7;
  color: #fff;
}
.single-review-info .main-rating-wrapper .rating {
  padding: 10px;
}
.single-review-info .main-rating-wrapper .rating-title {
  text-align: center;
  margin-bottom: 0;
}
.single-review-info .main-rating-wrapper .rating-title-result {
  font-size: 2rem;
  font-weight: 900;
}
.single-review-info .main-rating-wrapper .rating-sub-title {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 5px !important;
}
.single-review-info .main-rating-wrapper .rating-logo {
  background: rgba(0, 0, 0, 0.2);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-decoration: none;
}

.toc {
  border: 1px solid #d5d7dd;
}
.toc .toc-header {
  padding: 1rem;
  cursor: pointer;
}
.toc .toc-header h4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 0;
}
.toc .toc-header .toc-icon {
  display: inline-block;
}
.toc .toc-header .toc-icon i.active {
  transform: rotate(180deg);
}
.toc .toc-container {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 14px;
  transition: 300ms cubic-bezier(0.45, 0, 0.4, 1);
  overflow: hidden;
}
.toc .toc-container.active {
  display: block;
}
.toc ul {
  list-style-type: none;
}
.toc ul ul {
  margin-left: 1rem !important;
}
.toc ul li {
  line-height: 1.5em;
  margin-bottom: 0.5rem;
}
.toc ul li a {
  display: flex;
  align-items: center;
  color: #0c0c0c;
  text-decoration: none;
}
.toc ul li a:hover {
  text-decoration: underline;
}
.toc ul li svg {
  height: 0.5rem;
  width: 0.5rem;
  margin-top: 5px;
  margin-right: 0.5rem;
}

.entry-body .toc {
  display: block;
  margin-bottom: 2rem;
}

aside .toc {
  display: none;
}

@media (min-width: 1180px) {
  .entry-body .toc {
    display: none;
  }
  aside .toc {
    display: block;
  }
  aside .toc .toc-header .toc-icon {
    display: none;
  }
  aside .toc .toc-container {
    display: block;
  }
}
@media (max-width: 1179px) {
  .toc h4 {
    justify-content: space-between;
  }
  .toc .toc-header,
  .toc .toc-container {
    padding: 0.5rem 0.75rem;
  }
}
.text-center {
  text-align: center;
}

.text-primary {
  color: #4076d7;
}

.bg-primary {
  background-color: #4076d7;
  color: white;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

article {
  padding: 2.5rem 0;
}

.text-container h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subscription {
  padding: 3rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e4f2fe;
}

.subscription-container {
  align-items: center;
}
.subscription-container h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.subscription-container .mailerlite-form-description {
  font-size: 15px;
  margin-bottom: 1rem;
}
.subscription-container input {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 0.3rem;
  line-height: 1.75rem;
}
.subscription-container .privacy-text {
  font-size: 12px;
}
.subscription-container button {
  grid-column: span 3;
}

.mailerlite-form-inputs {
  display: flex;
  gap: 0.5rem;
}
.mailerlite-form-inputs .mailerlite-form-field {
  width: 100%;
}
.mailerlite-form-inputs .mailerlite-subscribe-submit {
  color: #fff;
  background-color: #4076d7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #4076d7;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.mailerlite-form-inputs .mailerlite-subscribe-submit:hover {
  background-color: #3c64c4;
  border-color: #3c64c4;
}

aside .subscription-container {
  padding: 1.5rem;
  margin-top: 2rem;
  background-color: #e4f2fe;
}
aside .subscription-container h3 {
  font-size: 1.25rem;
}
aside .mailerlite-form-inputs {
  display: block;
  margin-bottom: 0.5rem;
}
aside .mailerlite-form-inputs .mailerlite-subscribe-submit {
  width: 100%;
}

@media (max-width: 599px) {
  .subscription-container .mailerlite-form-inputs {
    flex-direction: column;
    gap: 0;
  }
  .subscription-container .mailerlite-subscribe-submit {
    width: 100%;
  }
}
.archive article.hero {
  padding-top: 0;
  border-bottom: 1px solid #d5d7dd;
}
.archive .post-card-md .post-details {
  padding-top: 0;
}
.archive .post-list {
  grid-column: span 7;
}
.archive aside {
  grid-column: 10/-1;
}

.single .entry-header {
  margin-bottom: 2rem;
  row-gap: 0;
}
.single .entry-header .entry-title {
  margin-top: 1rem;
}
.single .entry-header .entry-post-info {
  grid-column: span 12;
}
.single .entry-header .entry-post-info .post-info {
  grid-column: 7/-1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single .entry-header .entry-post-info .post-info .deck p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d5d7dd;
}
.single .entry-header .entry-post-info .post-info .meta span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.single .entry-header .entry-post-info .post-info .meta .date {
  margin-top: 0.5rem;
}
.single .entry-header .entry-post-info .post-info .disclaimer {
  font-size: 12px;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid #d5d7dd;
}
.single .entry-header .entry-post-info .post-image {
  grid-column: 1 / span 6;
  grid-row-start: 1;
}
.single .entry-header .entry-post-info .post-image img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .single .entry-header .entry-post-info .post-image img {
    height: 300px;
  }
}
@media (max-width: 425px) {
  .single .entry-header .entry-post-info .post-image img {
    height: 230px;
  }
}
.single .entry-header .entry-post-info .post-image .post-imag-caption {
  font-size: 12px;
  color: #8a8e9f;
}
.single .entry-body .affiliate-info {
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #efeff0;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}
.single aside {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.single aside .globalDisclosure {
  border: 1px solid #d5d7dd;
  padding: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='102' height='155' viewBox='0 0 102 155' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M96.2268 10.5979C99.4183 10.5979 102 13.1867 102 16.3738V50.549C102 53.742 99.4124 56.3308 96.2268 56.3308H78.907C66.4131 56.3308 56.2877 66.4548 56.2877 78.9543V149.23C56.2877 152.257 53.9606 154.739 50.9941 154.982V155H16.3546C13.1689 155 10.5813 152.411 10.5813 149.224V62.1007C10.5813 58.9077 13.1689 56.3249 16.3546 56.3249H56.2877V16.8536H56.3173C56.2996 16.6996 56.2877 16.5278 56.2877 16.3738C56.2877 13.1867 58.8753 10.5979 62.061 10.5979H96.2268ZM39.9331 45.7328C43.1247 45.7328 45.7064 43.1441 45.7064 39.957C45.7064 39.7971 45.6945 39.6312 45.6827 39.4772H45.7064V5.78177C45.7064 2.58876 43.1247 0 39.9331 0H6.24695V0.0296197C6.093 0.0118479 5.93312 0 5.77325 0C2.58168 0 0 2.58876 0 5.78177V39.4772H0.0236851C0.0118426 39.6312 0 39.803 0 39.957C0 43.1441 2.58168 45.7328 5.77325 45.7328C5.93312 45.7328 6.093 45.7269 6.24695 45.7092V45.7328H39.9331Z' fill='%234076D7' fill-opacity='0.2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% + 4px) -3px;
  background-size: 5rem;
}
.single aside .globalDisclosure span {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.single aside .globalDisclosure p {
  font-size: 12px;
  margin-bottom: 0;
}
.single aside .globalDisclosure p a {
  color: inherit;
}

.single-review .badge-section-title-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(82, 95, 127, 0.3);
  margin-bottom: 10px;
}
.single-review .badge-section-title-wrapper .badge {
  display: block;
  margin: 0 auto;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
}
.single-review .badge-section-title-wrapper .badge-section-title {
  display: inline-block;
}
.single-review .deck p {
  font-size: 1rem !important;
  padding-bottom: 1rem !important;
}
.single-review .single-review-info .bottom-line-wrapper {
  grid-column: span 10;
}
@media (min-width: 0px) and (max-width: 499px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 8;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 9;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 10;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .single-review .single-review-info .bottom-line-wrapper {
    grid-column: span 9;
  }
}
.single-review .single-review-info .bottom-line-wrapper .desc-read-more {
  padding-right: 10px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 115px;
  transition: max-height 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.single-review .single-review-info .bottom-line-wrapper .desc-read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.single-review
  .single-review-info
  .bottom-line-wrapper
  .desc-read-more.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}
.single-review
  .single-review-info
  .bottom-line-wrapper
  .desc-read-more.expanded::after {
  display: none;
}
.single-review .single-review-info .bottom-line-wrapper .desc-read-more p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.single-review .single-review-info .bottom-line-wrapper button {
  padding: 0.5rem 0 !important;
  text-decoration: underline;
  text-transform: lowercase;
}
.single-review .single-review-info .rating-wrapper {
  grid-column: span 2;
}
@media (min-width: 0px) and (max-width: 499px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 4;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 3;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .single-review .single-review-info .rating-wrapper {
    grid-column: span 3;
  }
}
.single-review .single-review-info .product-ctas {
  flex-wrap: wrap;
}
.single-review .single-review-info .product-ctas ul {
  list-style: none;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}
.single-review .single-review-info .product-ctas ul li a {
  padding: 0 5px !important;
}
.single-review .single-review-info .product-ctas .btn {
  gap: 5px;
}
@media (max-width: 1023px) {
  .single-review .single-review-info {
    display: none;
  }
}
.single-review .single-review-info-m {
  display: none;
}
@media (max-width: 1023px) {
  .single-review .single-review-info-m {
    display: block;
    grid-column: span 12;
  }
}
.single-review .entry-header {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .single-review .entry-header {
    margin-bottom: 1.5rem;
  }
}
.single-review .tab-list {
  width: 100%;
  padding-top: 1rem;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.single-review .tab-list .nav-container {
  width: 100%;
  background: #efeff0;
  border-radius: 40px;
  padding: 0.25rem;
  display: flex;
  overflow-x: auto;
}
.single-review .tab-list .tabbed-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  width: 100%;
}
.single-review .tab-list .tabbed-nav .tabbed-nav-item {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-image: none;
}
.single-review .tab-list .tabbed-nav .tabbed-nav-item .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 36px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  background: transparent;
  color: #8a8e9f;
  transition: background 300ms cubic-bezier(0.45, 0, 0.4, 1),
    color 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.single-review .tab-list .tabbed-nav .tabbed-nav-item .tab:hover {
  color: #555967;
}
.single-review .tab-list .tabbed-nav .tabbed-nav-item.active > .tab {
  background: #bfdefe;
  color: #30323a;
}
.single-review .tab-list .tabbed-nav .tabbed-nav-item.active .tabbed-nav-sub {
  display: flex;
  margin-top: -10px;
}
.single-review .tab-list .tabbed-nav .tabbed-nav-item .tabbed-nav-sub {
  display: none;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-review
  .tab-list
  .tabbed-nav
  .tabbed-nav-item
  .tabbed-nav-sub
  .tabbed-nav-subitem {
  margin: 0;
  padding: 0;
  background-image: none;
}
.single-review
  .tab-list
  .tabbed-nav
  .tabbed-nav-item
  .tabbed-nav-sub
  .tabbed-nav-subitem
  .tab {
  padding: 0 12px;
  height: 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  background: #efeff0;
  border-radius: 20px;
  color: #9fa2b1;
}
.single-review
  .tab-list
  .tabbed-nav
  .tabbed-nav-item
  .tabbed-nav-sub
  .tabbed-nav-subitem
  .tab:hover {
  background: #d5d7dd;
  color: #757b8f;
}
.single-review
  .tab-list
  .tabbed-nav
  .tabbed-nav-item
  .tabbed-nav-sub
  .tabbed-nav-subitem.active
  .tab {
  background: #bfdefe;
  color: #30323a;
}

.page:not(.home) article {
  padding: 0;
}
.page:not(.home) .breadcrumb,
.page:not(.home) .section-heading {
  grid-column: 2 / span 10;
  margin-bottom: 0;
}
.page:not(.home) .section-heading {
  margin: 0 0 2rem !important;
  padding: 0 0 2rem;
  border-bottom: 1px solid #d5d7dd;
}
.page:not(.home) .page-header-colored .section-heading {
  margin-bottom: 0.75rem !important;
}
.page:not(.home) .page-content {
  grid-column: 2 / span 10;
}

.archive.camera-compare .page-header {
  border-bottom: 1px solid #d5d7dd;
}
.archive.camera-compare .breadcrumb,
.archive.camera-compare .header-select {
  grid-column: span 12;
}
.archive.camera-compare .header-select .section-heading {
  grid-column: span 3;
  padding-right: 2rem !important;
}
.archive.camera-compare .header-select .section-heading .description {
  font-size: 1rem;
  line-height: 1.4;
}
.archive.camera-compare .header-select .vs-header {
  grid-column: span 9;
  margin-top: -2rem;
}
.archive.camera-compare .header-select .vs-product-wrapper {
  margin-top: -2px;
}
.archive.camera-compare .header-select .vs-product-image {
  height: 160px;
  overflow: hidden;
}

.vs-header {
  grid-column: 2 / span 10;
  position: relative;
  margin-top: 0.5rem;
}
.vs-header .vs-select-wrapper .vs-select-description {
  padding: 2rem 0 1rem;
  text-align: center;
}
.vs-header .vs-select-wrapper .vs-select-description p {
  font-size: 0.75rem;
  margin-bottom: 0;
}
.vs-header .vs-select-wrapper .camera-placeholder {
  background: #fff;
  padding: 0 1rem;
  border: 2px solid #d5d7dd;
  margin-top: -2px;
}
.vs-header .vs-select-wrapper .camera-placeholder .camera-image {
  width: 80%;
  height: 195px;
  margin: 0 auto;
  background-size: contain;
  background-position: center 70px;
  background-repeat: no-repeat;
}
.vs-header .vs-select-wrapper .camera-placeholder .camera-image a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 175px;
  }
}
@media (max-width: 767px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 215px;
  }
}
@media (max-width: 599px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 176px;
  }
}
@media (max-width: 424px) {
  .vs-header .vs-select-wrapper .camera-placeholder .camera-image {
    height: 136px;
  }
}
.vs-header .vs-select-wrapper .camera-placeholder.hidden {
  display: none;
}

.vs-select {
  position: relative;
  width: 100%;
  z-index: 3;
}
.vs-select .vs-select-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px;
  border: 2px solid #d5d7dd;
  cursor: pointer;
}
.vs-select .vs-select-dropdown {
  display: none;
  position: absolute;
  width: 100%;
  border: 2px solid #babdc7;
  border-top: 0;
  background: #fff;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 0 20px 0 rgba(48, 50, 58, 0.1);
}
.vs-select .vs-select-dropdown.open {
  display: block;
}
.vs-select .vs-select-dropdown .vs-select-search {
  display: block;
  padding: 1rem;
  background: #bfdefe;
}
.vs-select .vs-select-dropdown .vs-select-search .search-form {
  position: relative;
}
.vs-select .vs-select-dropdown .vs-select-search .search-form .search-field {
  padding: 1rem;
  border: 1px solid #babdc7;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  width: 100%;
  height: 48px;
}
.vs-select
  .vs-select-dropdown
  .vs-select-search
  .search-form
  .search-field:focus-visible {
  border: 2px solid #71b5fc;
  outline: none;
}
.vs-select .vs-select-dropdown .vs-select-search .search-form .search-submit {
  position: absolute;
  border: none;
  background: transparent;
  right: 8px;
  top: 11px;
}
.vs-select .vs-select-dropdown .vs-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 160px;
  overflow-y: auto;
}
.vs-select .vs-select-dropdown .vs-select-options li {
  padding: 0.5rem 1rem !important;
  margin: 0;
  font-size: 1rem;
  background-image: none;
  line-height: 1.2;
  cursor: pointer;
}
.vs-select .vs-select-dropdown .vs-select-options li:hover {
  background: #e4f2fe;
}

.vs {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -28%);
  background: #71b5fc;
  border-radius: 50%;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  z-index: 1;
}
@media (max-width: 1023px) {
  .vs {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 599px) {
  .vs {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.vs span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #0c0c0c;
}
@media (max-width: 1023px) {
  .vs span {
    font-size: 0.85rem;
  }
}
@media (max-width: 599px) {
  .vs span {
    font-size: 0.75rem;
  }
}
.vs-sm {
  width: 2rem;
  height: 2rem;
}
.vs-sm span {
  font-size: 0.75rem;
}

.vs-product-wrapper {
  display: block;
  background: #fff;
}

.vs-product-box {
  margin-top: -2px;
  border: 2px solid #d5d7dd;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  position: relative;
  overflow: visible;
}
.vs-product-box:hover {
  box-shadow: 0px 0px 5px 2px #e7e9ee;
  border-color: #babdc7;
}
.vs-product-box h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  display: block;
  padding: 1rem 1rem 0;
  margin-bottom: 0;
  text-align: center;
}
.vs-product-box h3 a {
  text-decoration: none;
  color: #0c0c0c;
}
.vs-product-box .vs-product-image {
  width: 100%;
  height: 210px;
  padding: 1rem;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .vs-product-box .vs-product-image {
    height: 180px !important;
  }
}
@media (max-width: 599px) {
  .vs-product-box .vs-product-image {
    height: 160px !important;
  }
}
@media (max-width: 424px) {
  .vs-product-box .vs-product-image {
    height: 110px !important;
  }
}
.vs-product-box .vs-product-image img {
  width: 100%;
  height: 240px !important;
  object-fit: contain !important;
}
@media (max-width: 767px) {
  .vs-product-box .vs-product-image img {
    height: 200px !important;
  }
}
@media (max-width: 599px) {
  .vs-product-box .vs-product-image img {
    height: 180px !important;
  }
}
@media (max-width: 424px) {
  .vs-product-box .vs-product-image img {
    height: 120px !important;
  }
}
.vs-product-box .vs-product-details {
  width: 100%;
  text-align: center;
  background: #fff;
  border-top: 1px solid #d5d7dd;
}
.vs-product-box .vs-product-details .price {
  display: block;
  padding: 1rem 0;
  margin: 0 1rem;
}
.vs-product-box .vs-product-details .vs-btns-wrapper {
  display: block;
  padding: 1rem 0;
  margin: 0 1rem;
  border-top: 2px dotted #d5d7dd;
  border-bottom: 2px dotted #d5d7dd;
}
.vs-product-box .vs-product-details .vs-btns-wrapper a {
  margin: 0.5rem 0;
}
.vs-product-box
  .vs-product-details
  .vs-btns-wrapper
  .retailer-toggle
  .retailer-text {
  display: block;
  padding: 5px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  color: #57a5fc;
  cursor: pointer;
}
.vs-product-box .vs-product-details .vs-btns-wrapper .btn-others-wrapper {
  list-style: none;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.vs-product-box .vs-product-details .vs-btns-wrapper .btn-others-wrapper a {
  font-size: 0.8rem;
}
.vs-product-box .vs-product-details .vs-btns-wrapper .btn-others-wrapper.open {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.vs-product-box .vs-product-details .hands-on {
  display: block;
  padding: 1rem 0;
  margin: 0 1rem;
}
.vs-product-box .vs-product-details .hands-on .btn {
  font-size: 0.9rem;
}
.vs-product-box .vs-product-details ul {
  list-style: none;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0.5rem;
}
.vs-product-box .vs-product-details ul:not(:last-child) {
  border-bottom: 2px dotted #d5d7dd;
}
.vs-product-box .vs-product-details ul li {
  font-size: 0.85rem;
  color: #0c0c0c;
}
.vs-product-box .vs-product-details ul li a {
  text-decoration: underline;
}
.vs-product-box .vs-product-details .specs li:not(:last-child)::after {
  content: "/";
  padding: 0 2px;
  color: #d5d7dd;
}
.vs-product-box .vs-product-details .specs li span {
  color: #757b8f;
}
.vs-product-box .vs-product-details .review-links li,
.vs-product-box .vs-product-details .comparison-links li {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.vs-product-box .vs-product-details .review-links li:not(:last-child),
.vs-product-box .vs-product-details .comparison-links li:not(:last-child) {
  margin-bottom: 3px;
}
.vs-product-box .vs-product-details .review-links li::before,
.vs-product-box .vs-product-details .comparison-links li::before {
  content: url("data:image/svg+xml,%3Csvg width='5' height='6' viewBox='0 0 5 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.5' width='5' height='5' rx='1' fill='%234076D7'/%3E%3C/svg%3E%0A");
  display: block;
  margin-top: -4px;
  margin-right: 6px;
}

.vs-compare-box {
  border: 2px solid #d5d7dd;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  position: relative;
  overflow: visible;
}
.vs-compare-box a {
  text-decoration: none;
}
.vs-compare-box .product-heading {
  position: relative;
}
.vs-compare-box h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  display: block;
  padding: 1rem 1rem 0;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 599px) {
  .vs-compare-box h3 {
    font-size: 1rem;
  }
}
.vs-compare-box h3 a {
  text-decoration: none;
  color: #0c0c0c;
}
.vs-compare-box .product-wrapper:first-child {
  border-right: 1px solid #d5d7dd;
}
.vs-compare-box .product-wrapper .product-image {
  width: 100%;
  padding: 1rem;
  text-align: center;
}
.vs-compare-box .product-wrapper .product-image img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.vs-compare-box .post-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  border-top: 1px solid #d5d7dd;
}
.vs-compare-box:hover {
  box-shadow: 0px 0px 5px 2px #e7e9ee;
  border-color: #babdc7;
}
.vs-compare-box:hover i {
  transform: translateX(5px);
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}

@media (min-width: 0) and (max-width: 767px) {
  .vs-product-box .hands-on .btn {
    font-size: 0.8rem;
  }
  .vs-content .vs-content-desc,
  .vs-content .vs-content-image span {
    font-size: 0.8rem;
  }
}
.vs-compare-cta {
  grid-column: span 2;
}
.vs-compare-cta p {
  margin-bottom: 0;
  margin-top: -10px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.vs-specs-table .vs-head {
  background: #efeff0;
  border-top: 1px solid #babdc7;
  border-bottom: 1px solid #babdc7;
  padding: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.vs-specs-table .vs-head a {
  text-decoration: none;
}
.vs-specs-table .vs-head a:hover {
  text-decoration: underline;
}
.vs-specs-table .vs-head a:hover i {
  transform: translateX(5px);
}
.vs-specs-table .vs-head .vs-thumb {
  background: white;
  padding: 0.3rem;
  border-radius: 0.5rem;
  border: 1px solid #d5d7dd;
}
.vs-specs-table .vs-head .vs-thumb img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.vs-specs-table .vs-head .vs-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0c0c0c;
}
.vs-specs-table .vs-head .btn-sm {
  padding: 0.5rem !important;
}
.vs-specs-table .vs-head .btn-sm:hover i {
  transform: translateX(0) !important;
}
.vs-specs-table .vs-body .vs-group-row {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  background-color: #d6e9fd;
  border-bottom: 1px solid #d5d7dd;
  padding: 0.2rem;
}
.vs-specs-table .vs-body .vs-specs {
  border-bottom: 1px solid #d5d7dd;
}
.vs-specs-table .vs-body .vs-specs .vs-specs-label {
  padding: 0.75rem;
  background: rgba(228, 242, 254, 0.4);
}
.vs-specs-table .vs-body .vs-specs .vs-specs-label img {
  display: block;
  min-width: 2rem;
  width: 2rem;
  height: 2rem;
}
.vs-specs-table .vs-body .vs-specs .vs-specs-value {
  padding: 0.75rem;
  border-left: 1px solid #d5d7dd;
}

.vs-body {
  grid-column: 2 / span 10;
}

.vs-content {
  padding: 2rem 0;
}
.vs-content .vs-content-desc {
  padding: 0.5rem 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  background: #fff;
  position: sticky;
  top: 0;
}
.vs-content .vs-content-images {
  list-style: none;
}
.vs-content .vs-content-images .vs-content-image {
  gap: 0.5rem;
}
.vs-content .vs-content-images .vs-content-image img {
  width: 100%;
}
.vs-content .vs-content-images .vs-content-image span {
  font-size: 0.9rem;
}

@media (min-width: 0) and (max-width: 767px) {
  .vs-specs-table .vs-head .empty-col {
    display: none;
  }
  .vs-specs-table .vs-body .vs-specs .vs-specs-label {
    grid-column: 1 / span 2;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #d5d7dd;
  }
  .vs-specs-table .vs-body .vs-specs .vs-specs-label img {
    min-width: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .vs-specs-table .vs-body .vs-specs .vs-specs-value {
    border-left: 0;
  }
  .vs-specs-table .vs-body .vs-specs .vs-specs-value:last-child {
    border-left: 1px solid #d5d7dd;
  }
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}
.comparison-table th {
  background: #f5f5f5;
  font-weight: 700;
}
.comparison-table .group-row td {
  background: #e9f4ff;
  font-weight: 600;
  text-transform: uppercase;
}

.how-we-test-more {
  padding: 1rem !important;
}
.how-we-test-more ul {
  margin: 0;
}
.how-we-test-more ul li .wp-block-group {
  padding: 0;
  margin: 0 0 1rem;
}
.how-we-test-more ul li .wp-block-group:last-child .wp-block-group {
  margin-bottom: 0;
}

.error404 .entry-body {
  grid-column: 3 / span 8 !important;
  border: 1px solid #d5d7dd;
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
}
.error404 .entry-body .post-image img {
  width: 80%;
}
.error404 .entry-body .post-info p {
  margin-bottom: 0.5rem;
}
.error404 .entry-body .post-info ul {
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0 0.5rem !important;
}
.error404 .entry-body .post-info ul li {
  padding: 0;
  margin: 0;
  background-image: none;
}
.error404 .entry-body .post-info .btn:hover i.fa-youtube {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .error404 .entry-body {
    grid-column: 2 / span 10 !important;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .post-card-md-list .post-description {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .hero-left {
    grid-column: 1 / span 12;
  }
  .hero-left .hero-left-main {
    grid-column: 1 / span 12 !important;
  }
  .hero-left .hero-left-sub {
    grid-column: 1 / span 12 !important;
    grid-row-start: 2;
  }
  .hero-left .hero-left-rest {
    grid-column: 1 / span 12 !important;
    grid-row-start: 3;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .post-card-lg {
    border-bottom: 1px solid #d5d7dd;
  }
  .hero-right {
    grid-column: 1 / span 12;
  }
  .hero-right .post-card-sm {
    padding: 0 0 1rem 0;
  }
  .reviews-wrapper .post-card-sm {
    grid-column: 1 / span 2;
  }
  .news-left {
    grid-column: 1 / span 12;
  }
  .news-left .post-card-md:last-child {
    border-bottom: 1px solid #d5d7dd;
  }
  .news-right {
    grid-column: 1 / span 12;
  }
  .news-right .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .post-cover .post-image,
  .post-cover .post-details {
    grid-column: span 12;
  }
  .post-cover .post-details {
    padding: 2rem;
  }
  .post-cover-s .post-image {
    aspect-ratio: 1/1;
  }
  .subscription-container {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-column: 1 / span 12;
    gap: 1rem;
  }
  .subscription-container .subs-image,
  .subscription-container .subs-description,
  .subscription-container button {
    grid-column: span 12;
  }
  .archive .hero-primary,
  .archive .hero-secondary {
    grid-column: 1/-1;
  }
  .archive article.hero .post-card-md-list .post-title {
    font-size: 17px;
  }
  .single .entry-content .entry-body,
  .single .entry-content aside,
  .page .entry-content .entry-body,
  .page .entry-content aside {
    grid-column: 1 / span 12;
  }
  .page .breadcrumb,
  .page .section-heading {
    grid-column: 1 / span 12;
  }
  .page .section-heading {
    padding: 0 0 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-left {
    grid-column: 1 / span 12;
  }
  .hero-left .hero-left-main {
    grid-column: 4/-1;
  }
  .hero-left .hero-left-sub {
    grid-column: 1 / span 3;
    grid-row-start: 1;
  }
  .hero-left .hero-left-rest {
    grid-column: 1 / span 9;
    grid-row-start: 2;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .hero-right {
    grid-column: 1 / span 12;
  }
  .hero-right .post-card-sm-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-right .post-card-sm-wrapper .post-card-sm {
    padding-top: 0;
  }
  .news-left {
    grid-column: 1 / span 12;
  }
  .news-left .post-card-md:last-child {
    border-bottom: 1px solid #d5d7dd;
  }
  .news-right {
    grid-column: 1 / span 12;
  }
  .reviews-wrapper .post-card-sm:last-child {
    border-bottom: 0;
  }
  .reviews-wrapper .post-card-sm:nth-last-child(2) {
    border-bottom: 0;
  }
  .post-cover .post-details {
    padding: 2rem;
  }
  .subscription-container {
    grid-column: 1 / span 12;
    gap: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1179px) {
  .single .entry-content .entry-body,
  .single .entry-content aside,
  .page .entry-content .entry-body,
  .page .entry-content aside {
    grid-column: 2 / span 10;
  }
}
@media (max-width: 1023px) {
  .post-card.post-card-lg .post-title {
    font-size: 1.5rem;
  }
  .post-cover .post-details .post-title {
    font-size: 1.5rem;
  }
  .post-cover .post-details p {
    font-size: 14px !important;
  }
  .archive .post-list,
  .archive aside {
    grid-column: span 12;
  }
  .single .entry-header .entry-title {
    grid-column: span 12;
    margin-bottom: 0;
  }
  .single .entry-header .entry-post-info .post-info {
    grid-column: span 12 !important;
  }
  .single .entry-header .entry-post-info .post-info .deck p {
    font-size: 1rem;
  }
  .single .entry-header .entry-post-info .post-info .disclaimer {
    padding-bottom: 0;
  }
  .single .entry-header .entry-post-info .post-image {
    grid-column: span 12 !important;
    grid-row-start: 2;
  }
  .page-template-page-image-comparison .vs-header,
  .page-template-page-image-comparison .vs-body {
    grid-column: 1 / span 12;
  }
  .archive.camera-compare .header-select .section-heading {
    grid-column: span 12;
    padding-right: 0 !important;
  }
  .archive.camera-compare .header-select .vs-header {
    grid-column: span 12;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .hero-left {
    grid-column: 1 / span 9;
  }
  .hero-left .hero-left-main {
    grid-column: 4/-1;
  }
  .hero-left .hero-left-sub {
    grid-column: 1 / span 3;
    grid-row-start: 1;
  }
  .hero-left .hero-left-rest {
    grid-column: 1 / span 9;
    grid-row-start: 2;
  }
  .hero-right {
    grid-column: 10 / span 3;
  }
  .reviews-wrapper .post-card-sm {
    border-bottom: 0;
  }
  .news-left {
    grid-column: 1 / span 6;
  }
  .news-left .post-card-md:last-child {
    border-bottom: 0;
  }
  .news-left .post-card-md:nth-last-child(2) {
    border-bottom: 0;
  }
  .news-right {
    grid-column: 7 / span 6;
  }
  .subscription-container {
    grid-column: 2 / span 10;
    gap: 3rem;
  }
}
@media (min-width: 1180px) {
  .page .entry-content .entry-body {
    grid-column: 2 / span 10;
  }
  .single .entry-content .entry-body,
  .page-template-page-sidebar .entry-content .entry-body {
    grid-column: 2 / span 6;
  }
  .single .entry-content aside,
  .page-template-page-sidebar .entry-content aside {
    grid-column: 9 / span 3;
  }
}
.ad {
  background-color: #efeff0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.site-header {
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  padding-top: 1rem;
}
.site-header .main-nav-top {
  padding-bottom: 1rem;
  gap: 1rem;
}
.site-header .social-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-header .social-menu a {
  font-size: 1.3rem;
  color: #8a8e9f;
  padding: 0.5rem;
}
.site-header .social-menu a:hover {
  color: #676c7e;
}
.site-header .brand .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .brand .logo img {
  height: 4rem;
  object-fit: contain;
  padding: 0.5rem;
}
.site-header .utilities {
  justify-content: flex-end;
  gap: 1rem;
}
.site-header .search {
  transition: all var(--animation-timing);
  cursor: pointer;
  position: relative;
}
.site-header .search svg.hidden {
  display: none;
}
.site-header .search form {
  display: none;
  position: absolute;
  top: 0;
  right: 60px;
}
.site-header .search form input {
  height: 48px;
  padding: 0 1rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  border: 1px solid #757b8f;
}
.site-header .search form.searchActive {
  display: block;
}
.site-header a {
  color: #000;
}
.site-header a:hover {
  color: #000;
}
.site-header .menu-toggle {
  display: none;
}
.site-header .navbar {
  display: block;
}
.site-header .navbar .m-search {
  display: none;
}
.site-header .navbar .main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.site-header .navbar .main-menu a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.site-header .navbar .main-menu > li > a {
  padding: 1rem;
  font-size: 1rem;
}
.site-header .navbar .main-menu > .menu-item-has-children {
  position: relative;
}
.site-header .navbar .main-menu > .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.4rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
@media (min-width: 1200px) {
  .site-header
    .navbar
    .main-menu
    > .menu-item-has-children.menu-item-has-children:hover
    > a::after {
    transform: rotate(180deg);
  }
}
.site-header .navbar .main-menu > .menu-item-has-children:hover > .sub-menu {
  display: flex;
}
.site-header .navbar .main-menu > .menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  background: #444651;
  padding: 1.5rem 2rem;
  list-style: none;
  gap: 0.5rem;
  flex-direction: column;
  z-index: 10;
}
.site-header .navbar .main-menu > .menu-item-has-children > .sub-menu a {
  color: #fff;
  padding: 0.75rem 0;
}
.site-header .navbar .main-menu > .menu-item-has-children > .sub-menu a:hover {
  text-decoration: underline;
}
.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  .sub-menu {
  list-style: none;
  columns: 2;
  column-gap: 2rem;
  margin-top: 0.5rem;
}
.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  .sub-menu
  a {
  font-weight: 500;
  padding: 0.5rem 0;
}
.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  .sub-menu
  a
  i::before {
  font-weight: 900;
  margin-left: 0.4rem;
  font-size: 0.75rem;
}
.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  > a {
  pointer-events: none;
  cursor: default;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu
  > .menu-item-has-children
  > a
  > .sub-menu {
  display: block;
  padding: 0.5rem 0 0 1rem;
}
.site-header
  .navbar
  .main-menu
  > .menu-item-has-children
  > .sub-menu:has(.sub-menu) {
  flex-direction: row;
  gap: 3rem;
}
.site-header .navbar .main-menu .dropdown-menu {
  position: absolute;
  top: 86px;
  left: calc((100vw - 1400px) / 2);
  width: 1400px;
  max-width: 100vw;
  padding: 0;
  z-index: 5;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  display: none;
}
.site-header .navbar .main-menu .dropdown-menu.show {
  display: block;
}

@media (max-width: 1200px) {
  .site-header .search {
    display: none;
  }
  .site-header .navbar {
    display: none;
  }
  .site-header .menu-toggle {
    color: #fff;
    border: none;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    cursor: pointer;
  }
  .site-header .menu-toggle svg.hidden {
    display: none;
  }
  .site-header .navbar.active {
    display: block;
    position: absolute;
    top: 113px;
    background-color: #efeff0;
    z-index: 5;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    left: 0;
  }
  .site-header .navbar .m-search {
    display: block;
    padding: 1rem;
  }
  .site-header .navbar .search-form {
    position: relative;
  }
  .site-header .navbar .search-form .search-field {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 1rem 3rem 1rem 1rem;
    border: 1px solid #babdc7;
    border-radius: 0.3rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    width: 100%;
    height: 48px;
  }
  .site-header .navbar .search-form .search-submit {
    position: absolute;
    border: none;
    background-color: transparent;
    right: 10px;
    top: 10px;
  }
  .site-header .navbar .main-menu {
    flex-direction: column;
    gap: 0;
    position: unset;
  }
  .site-header .navbar .main-menu > .menu-item {
    width: 100%;
    border-bottom: 1px solid #d5d7dd;
  }
  .site-header .navbar .main-menu > .menu-item:first-child {
    border-top: 1px solid #d5d7dd;
  }
  .site-header .navbar .main-menu .menu-item a {
    padding: 1rem;
  }
  .site-header .navbar .main-menu > .menu-item-has-children > .sub-menu {
    display: none !important;
    position: unset;
  }
  .site-header .navbar .main-menu > .menu-item-has-children > .sub-menu.show {
    display: flex !important;
  }
  .site-header
    .navbar
    .main-menu
    > .menu-item-has-children.menu-item-has-children.rotate
    > a::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 768px) {
  .site-header .brand .logo img {
    height: 4rem;
  }
  .site-header
    .navbar
    .main-menu
    > .menu-item-has-children
    > .sub-menu:has(.sub-menu) {
    flex-direction: column;
    gap: 2rem;
  }
  .site-header .navbar.active {
    top: 144px;
  }
}
@media (max-width: 600px) {
  .site-header .social-menu-nav {
    display: none;
  }
  .site-header .brand {
    grid-column: 1 / span 2;
  }
  .site-header .brand .logo {
    justify-content: flex-start;
  }
}
.site-footer {
  background-color: #30323a;
  color: #fff;
  margin-top: 0;
}
.site-footer .footer-wrapper {
  padding: 2rem 0 0;
}
.site-footer .footer-top .brand .logo {
  display: block;
  padding: 2rem 0;
}
.site-footer .footer-top .brand .logo img {
  height: 4rem;
  object-fit: contain;
}
.site-footer .footer-top nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  padding: 2rem 0;
}
.site-footer .footer-top nav .footer-nav-heading {
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.site-footer .footer-top nav ul {
  list-style: none;
  column-count: 2;
}
.site-footer .footer-top nav ul li {
  padding: 3px 0;
}
.site-footer .footer-top nav ul li a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-top nav ul li a:hover {
  text-decoration: underline;
}
.site-footer .footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom .copyright {
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-bottom nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.site-footer .footer-bottom nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.site-footer .footer-bottom nav ul a {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-bottom nav ul a i {
  font-size: 1.5rem;
}
.site-footer .footer-bottom nav ul a:hover {
  color: #fff;
}

@media (min-width: 0px) and (max-width: 599px) {
  .site-footer .footer-wrapper {
    padding: 2rem 0 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .footer-bottom.grid.grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-bottom nav {
    justify-content: center !important;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .site-footer .footer-wrapper {
    padding: 2rem 2rem 0;
  }
}
@media (max-width: 1023px) {
  .site-footer .footer-top {
    gap: 0;
  }
  .site-footer .footer-top .brand,
  .site-footer .footer-top nav {
    grid-column: 1/-1;
  }
  .site-footer .footer-top .brand .logo {
    padding: 1.5rem 0;
    text-align: center;
  }
  .site-footer .footer-top nav {
    padding: 1rem 0;
  }
  .site-footer .footer-top nav li {
    padding: 6px 0;
  }
  .site-footer .footer-top .footer-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
/**
 * To override block styling
 */
.badge-sub-heading,
.badge-section-title {
  background-color: #bfdefe !important;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400 !important;
}

.badge-section-title {
  font-size: 12px !important;
}

.number {
  border-radius: 0.25rem 0 0.25rem 0 !important;
}
.number span {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
}

.rating {
  padding: 15px 10px 10px !important;
}

.rating-sub-title {
  font-weight: 600 !important;
  margin: 0 !important;
}

.sub-rating-modal {
  background-color: #e4f2fe !important;
  border: 1px solid #bfdefe !important;
}

.product-specs li:hover {
  background-color: #e4f2fe !important;
}

.buttons-wrapper a.button-others {
  border: 2px solid rgba(64, 118, 215, 0.5) !important;
}
.buttons-wrapper a.button-others:hover {
  border: 2px solid #4076d7 !important;
}

.products-at-a-glance-buttons a.button {
  text-decoration: none;
}

.wp-block-image,
.wp-block-gallery,
.wp-block-table,
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-image .wp-element-caption {
  font-size: 12px;
  color: #8a8e9f;
}

.wp-block-list {
  margin: 1rem 0 2rem 1rem;
}
.wp-block-list li {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  list-style: none;
  padding-left: 1.2rem;
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.00213623' width='8' height='8' rx='2' fill='%234076D7'/%3E%3C/svg%3E%0A");
}

.wp-block-group {
  background-color: #efeff0;
  padding: 0 1rem 1rem;
}
.wp-block-group .wp-block-heading {
  background-color: #bfdefe;
  margin: 0 -1rem 1rem;
  padding: 1rem 1.2rem;
}

.wp-block-separator {
  margin-bottom: 2rem;
  border-color: #d5d7dd;
}

.our-pick li {
  background-image: none !important;
}

:root {
  --primary-blue-900: #3545a4;
  --primary-blue-800: #3c64c4;
  --primary-blue-700: #4076d7;
  --primary-blue-600: #4487eb;
  --primary-blue-500: #4795fa;
  --primary-blue-400: #57a5fc;
  --primary-blue-300: #71b5fc;
  --primary-blue-200: #97cafe;
  --primary-blue-100: #bfdefe;
  --primary-blue-50: #e4f2fe;
  --gray-900: #30323a;
  --gray-800: #444651;
  --gray-700: #555967;
  --gray-600: #676c7e;
  --gray-500: #757b8f;
  --gray-400: #8a8e9f;
  --gray-300: #9fa2b1;
  --gray-200: #babdc7;
  --gray-100: #d5d7dd;
  --gray-50: #efeff0;
  --wepc-acf-border-color: #9fa2b1;
  --wepc-acf-accent-color: #4076d7;
  --wepc-acf-gradient: #4076d7;
  --wepc-acf-primary-purple: #57a5fc;
  --wepc-acf-primary-red: #4076d7;
  --wepc-acf-primary-red-hover: #3c64c4;
}

/*# sourceMappingURL=style.css.map */
