*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #0E726B;
  --teal-dark: #0a5751;
  --teal-light: #e6f4f3;
  --blue: #688DB7;
  --blue-light: #eef3f9;
  --gold-star: #FFC107;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #F2F2F2;
  --mid-gray: #DDDDDD;
  --text-dark: #111111;
  --text-mid: #333333;
  --text-muted: #777777;
  --img-bg: #CBD8E8;
  --container: 1290px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* IMAGE PLACEHOLDER */
.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #7a9ab8;
  font-size: 12px;
  font-weight: 600;
}

.img-ph img {
  max-width: 100%;
}

/* HEADER */
.site-header {
  text-align: center;
  padding: 16px 20px;
  background: var(--white);
}

.site-logo {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
}

/* PROMO BANNER */
.promo-banner {
  background: var(--white);
  padding: 15px 20px;
  text-align: center;
}

.promo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
}

.promo-text .hl {
  color: var(--teal);
}

/* DISCOUNT BAR – true full width */
.discount-bar {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  padding: 13px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  gap: 14px;
  text-transform: capitalize;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.discount-bar .hurry {
  text-transform: uppercase;
  font-size: 35px;
  color: #ffe700;
}

.discount-bar .fiftyoff {
  text-transform: uppercase;
  font-size: 35px;
  width: 160px;
  color: #27ff27;
}

/* PRODUCT SECTION */
.product-section {
  padding: 44px 0 54px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */
.banner-img {
  width: 100%;
  margin-bottom: 30px;
}

.reviews-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Review cards – 0 border-radius, 20px gap */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rev-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 0;
}

.rev-contents {
  display: grid;
  grid-template-columns: 90px 1fr;
}

.rev-img {
  /* width: 90px; */
  min-height: 130px;
}

.rev-body {
  padding: 14px 18px;
}

.rev-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 7px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ddd;
}

.rev-content {
  padding-left: 12px;
}

.rev-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.rev-loc {
  font-size: 12px;
  color: var(--text-muted);
}

.verified {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
}

.stars {
  color: var(--gold-star);
  font-size: 13px;
  letter-spacing: 1px;
}

.rev-hl {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 800;
  /* font-style: italic; */
  color: var(--text-dark);
  margin-bottom: 6px;
}

.rev-txt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* RIGHT – vertical checkout */
.checkout-box {
  width: 100%;
  min-height: 700px;
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 16px;
}

.checkout-box-label {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-muted);
}

.secure-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 14px;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  margin-bottom: 22px;
}

.badge {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 0;
}

.badge-sec {
  background: var(--teal-dark);
  color: #fff;
}

.badge-nor {
  background: #FFD700;
  color: #000;
}

.cc {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.cc-item {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 0;
  color: var(--text-mid);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #DDD;
  background-color: #f4f4f4;
}

.trust-ico {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.trust-ttl {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.trust-dsc {
  font-size: 14px;
  color: #000;
  line-height: 1.55;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--mid-gray);
}

.sec-title {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
}

.faq-q {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.faq-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-q-txt {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.faq-a {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 23px;
  padding-left: 32px;
  font-family: 'Barlow', sans-serif;
}

.faq-a ul {
  margin: 4px 0 4px 16px;
}

.faq-a li {
  margin-bottom: 2px;
}

/* SOCIAL REVIEWS */
.social-section {
  padding: 60px 0;
  border-top: 1px solid var(--mid-gray);
}

.rv2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rv2 {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 0;
  padding: 14px 18px;
}

.rv2-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ddd;
  margin-bottom: 7px;
}

.rv2-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rv2-nm {
  font-size: 13px;
  font-weight: 600;
  color: #a4a4a4;
}

.rv2-mt {
  font-size: 11px;
  color: var(--text-muted);
}

.rv2-body {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
}

/* .rv2-img {
  width: 70px;
    height: 115px;
} */

.rv2-hl {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.rv2-txt {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 20px;
}

/* FOOTER */
.site-footer {
  background: #688DB7;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 28px 20px;
  font-size: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 0 8px;
}

.site-footer a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .rv2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .promo-text {
    font-size: 14px;
  }

  .discount-bar {
    font-size: 14px;
  }
}

/* MAIN LAYOUT */
.main {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 16px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start
}

@media(max-width:660px) {
  .main {
    grid-template-columns: 1fr
  }
}

/* PACKAGE SELECTOR */
.col-title {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #1C1209;
  margin-bottom: 14px
}

.pkg-option {
  position: relative;
  border: 2px solid #DDD0B8;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  transition: border-color .2s, background .2s
}

.pkg-option:hover {
  border-color: #A0C4B0
}

/* .pkg-option.selected{border-color:#F5C842;background:#FEF3C7} */


.pkg-option.selected {
  border-color: #3b8b58;
  background: #EAF5EE;
}


.corner-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 8px 0 8px;
  letter-spacing: .5px;
  text-transform: uppercase
}

.badge-popular {
  background: #C8860A;
  color: #1C1209
}

.badge-best {
  background: #1A56DB;
  color: #fff
}

.radio-outer {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #DDD0B8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  background: #fff
}

.pkg-option.selected .radio-outer {
  border-color: #1B6B3A;
  background: #1B6B3A
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(0);
  transition: .2s
}

.pkg-option.selected .radio-dot {
  opacity: 1;
  transform: scale(1)
}

.pkg-info {
  flex: 1;
  min-width: 0
}

.pkg-name {
  font-size: 15px;
  font-weight: 700;
  color: #1C1209;
  line-height: 1.2
}

.pkg-tag {
  color: #1B6B3A;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px
}

.pkg-sub {
  font-size: 12px;
  color: #7A6040;
  margin-top: 2px
}

.pkg-price-col {
  text-align: right;
  flex-shrink: 0
}

.pkg-orig {
  font-size: 12px;
  padding-top: 15px;
  color: #7A6040;
  text-decoration: line-through
}

.pkg-price {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1C1209;
  line-height: 1
}

.pkg-each {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #7A6040
}

/* FORM CARD */
.form-card {
  width: 100%;
  background: #fff;
  border: 1.5px solid #DDD0B8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07)
}

.step-tabs {
  display: flex;
  border-bottom: 1.5px solid #DDD0B8
}

.step-tab {
  flex: 1;
  padding: 13px 8px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  font-size: 13px;
  font-weight: 600;
  color: #7A6040;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: .2s;
  position: relative
}

.step-text {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.step-text span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.step-tab.active {
  color: #1B6B3A;
  background: #EAF5EE
}

.step-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: #1B6B3A
}

.step-tab.done {
  color: #1B6B3A;
  background: #F4FBF7
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .08);
  flex-shrink: 0
}

.step-tab.active .step-num,
.step-tab.done .step-num {
  background: #1B6B3A;
  color: #fff
}

.step-panel {
  display: none;
  padding: 20px
}

.step-panel.active {
  display: block
}

/* FIELDS */
.f-section {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7A6040;
  margin: 16px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #DDD0B8
}

.f-section:first-child {
  margin-top: 0
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px
}

.field label {
  font-size: 11px;
  font-weight: 600;
  color: #7A6040;
  letter-spacing: .2px
}

.field input,
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #DDD0B8;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #1C1209;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none
}

.field input:focus,
.field select:focus {
  border-color: #1B6B3A
}

.field input::placeholder {
  color: #BBA880;
  font-size: 12px
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #7A6040;
  margin: 8px 0;
  cursor: pointer
}

.checkbox-row input {
  width: 15px;
  height: 15px;
  accent-color: #1B6B3A;
  cursor: pointer
}

/* SHIPPING OPTIONS */
.ship-opt {
  border: 1.5px solid #DDD0B8;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color .2s, background .2s
}

.ship-opt:hover {
  border-color: #A0C4B0
}

.ship-opt.selected {
  border-color: #1B6B3A;
  background: #EAF5EE
}

.ship-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #DDD0B8;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s
}

.ship-opt.selected .ship-dot {
  border-color: #1B6B3A;
  background: #1B6B3A
}

.ship-center {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: .2s
}

.ship-opt.selected .ship-center {
  opacity: 1
}

.ship-price {
  margin-left: auto;
  font-weight: 700;
  color: #0F4525
}

/* PAYMENT */
.pay-type {
  display: flex;
  gap: 8px;
  margin-bottom: 14px
}

.pay-btn {
  flex: 1;
  padding: 9px;
  border: 1.5px solid #DDD0B8;
  border-radius: 8px;
  background: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #7A6040;
  transition: .2s
}

.pay-btn.active {
  border-color: #1B6B3A;
  background: #EAF5EE;
  color: #0F4525
}

.cc-icons {
  display: flex;
  gap: 4px;
  margin-top: 7px
}

.cc {
  width: 34px;
  height: 21px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .3px
}

.cc-v {
  background: #1A1F71;
  color: #fff
}

.cc-m {
  background: #EB001B;
  color: #fff
}

.cc-a {
  background: #2E77BC;
  color: #fff
}

.cc-d {
  background: #006EBF;
  color: #fff
}

/* SUMMARY */
.summary-box {
  background: #F8F3EA;
  border: 1px solid #DDD0B8;
  border-radius: 8px;
  padding: 14px;
  margin: 14px 0
}

.s-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
  color: #7A6040
}

.s-row b {
  color: #1C1209
}

.s-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 0 0;
  margin-top: 8px;
  border-top: 1.5px solid #DDD0B8;
  color: #1C1209
}

/* BUTTONS */
.btn-primary {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #1A8A40, #0F5828);
  color: #fff;
  font-family: 'Barlow', sans-serif;

  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(15, 72, 40, .3);
  margin-top: 14px;
  letter-spacing: .2px
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 72, 40, .4)
}

/* .btn-gold{background:linear-gradient(135deg,#C8860A,#9A6300);box-shadow:0 4px 14px rgba(150,96,0,.3)} */
.btn-gold {
  background: linear-gradient(135deg, #1A8A40, #0F5828);
}

/* .btn-gold:hover{box-shadow:0 8px 22px rgba(150,96,0,.4)} */
.back-link {
  background: none;
  border: none;
  font-size: 12px;
  color: #7A6040;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Barlow', sans-serif;

  margin-bottom: 12px;
  padding: 0;
  font-weight: 500
}

.back-link:hover {
  color: #1C1209
}

.trust-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px
}

.trust-item {
  font-size: 10px;
  color: #7A6040;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px
}

.secure-note {
  text-align: center;
  font-size: 11px;
  color: #7A6040;
  margin-top: 7px
}

/* TIMER */
.timer-strip {
  background: linear-gradient(90deg, #FEF3C7, #FDE68A);
  border: 1px solid #F5C842;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.timer-txt {
  font-size: 12px;
  font-weight: 600;
  color: #78350F;
  flex: 1
}

.timer-count {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C0392B
}

/* REVIEWS */
.reviews-wrap {
  margin-top: 18px
}

.rev-title {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px
}

.rev-card {
  background: #fff;
  border: 1px solid #DDD0B8;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px
}

.rev-stars {
  color: #C8860A;
  font-size: 12px;
  margin-bottom: 4px
}

.rev-quote {
  font-size: 13px;
  font-weight: 700;
  color: #1C1209;
  margin-bottom: 4px;
  font-style: italic
}

.rev-body {
  font-size: 12px;
  color: #7A6040;
  line-height: 1.5;
  margin-bottom: 8px
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 7px
}

.rev-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1B6B3A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.rev-name {
  font-size: 11px;
  font-weight: 700
}

.rev-loc {
  font-size: 10px;
  color: #7A6040
}

.verified {
  color: #1B6B3A;
  font-size: 10px;
  font-weight: 700
}

.sep {
  height: 1px;
  background: #DDD0B8;
  margin: 16px 0
}


.secure_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.secure_img {
  width: auto;
}


.sec-title span {
  font-weight: 900;
}

.rv2-av {
  font-family: 'Barlow', sans-serif;
  margin-right: 4px;
}

.rv2-nm {
  font-family: 'Barlow', sans-serif;
}

.rv2-mt {
  font-family: 'Barlow', sans-serif;
}

.rv2-txt {
  font-family: 'Barlow', sans-serif;
}


.ing_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rev-cont {
  display: flex;
  align-items: center;
  justify-content: center;
}


@media only screen and (max-width:640px) {
  .discount-bar .hurry {
    font-size: 28px;
  }

  .discount-bar .fiftyoff {
    font-size: 28px;
  }
}

@media only screen and (max-width:480px) {
  .discount-bar .hurry {
    font-size: 22px;
  }

  .discount-bar .fiftyoff {
    font-size: 22px;
  }
}

@media only screen and (max-width:400px) {
  .discount-bar {
    padding: 13px 10px;
  }
}

@media (max-width:575px) {
  .pkg-option {
    padding: 25px 16px;
  }
}


.show_mb {
  display: none;
}

@media (max-width:992px) {
  .show_dsk {
    display: none;
  }

  .show_mb {
    display: block;
  }

  .hd_dsk {
    display: none;
  }
}

@media (max-width:575px) {
  .secure_img {
    width: 80%;
  }

  .sec-title {
    margin-bottom: 20px;
    line-height: 35px;
  }

  .site-footer {
    padding: 28px 0px;
    font-size: 11px;
  }

  .rev-card {
    padding: 10px;
  }

  .rev-body {
    padding: 8px 5px;
  }

  .rev-txt {
    font-size: 12px;
  }

  .rv2 {
    padding: 10px 8px;
  }

  .rv2-txt {
    font-size: 13px;
  }

  .faq-a {
    font-size: 15px;
  }
}

.rv2-mt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified {
  display: flex;
  align-items: center;
}

.prboximg {
  width: 40px;
}

.qtbox {
  width: 40px;
  height: 40px;
  background: #f8f3ea;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 2px 1px 3px #c1c1c1;
  line-height: 40px;
}

.paypl_btnn {
  background-image: url(../images/paypalllb.png?v1.1);
  background-position: center center;
  background-repeat: no-repeat;
  color: transparent;
  background-color: #ffd11a;
  border: 1px solid transparent;
  padding: 13px 0;
  width: 100%;
  margin: 12px auto;
  cursor: pointer;
  border-radius: 12px;
}

@supports (-webkit-touch-callout: none) {
  input, textarea, select {
    font-size: 16px;
  }
}