/* ----------------------------------
   GLOBAL SETTINGS
---------------------------------- */

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'),
        url('../fonts/Lato-Bold.woff') format('woff'),
        url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff'),
        url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
  --primary: #0066ff;
  --accent: #ff5d84;
  --muted: #6c757d;
  --bg: #f8f9fa;
  --card-radius: 16px;
  --pink-light: #fff7f9;
  --pink-hover: #e84f79;
  --blue: #334ECB;
  --grey: #333333;
  --light-grey: #7C7C7C;
  --light-grey1: #d3d3d3;
  --light-grey2: #F4F4F4;
  --white: #FFFFFF;

  --bs-body-color: var(--grey);

  /* FONT SIZES */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 36px;
  --fs-5xl: 48px;
  --fs-6xl: 60px;
  --fs-7xl: 72px;
  --fs-8xl: 96px;
  --fs-9xl: 128px;

  /* Line height */
  --bs-body-line-height: 1.4;

  /* FONT WEIGHTS */
  --fw-700: 700;
  
}

.navbar {
  --bs-navbar-color: var(--grey);
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Lato";
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  padding-top: 124px;
}

h1 {
  font-size: var(--fs-3xl);
}

h2{
  font-size:var(--fs-4xl);
}

h3{
  font-size:var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h1,
h2,
h3 
{
  font-weight: var(--fw-700);
}

ul{
  margin-bottom:3rem;
}

hr{
  opacity:1;
}

.pt-6{
  padding-top:4em;
}

.pb-7{
  padding-bottom:4rem;
}

@media(min-width:1920px){
  .my-xl-10vh{
    margin-top:10vh !important;
    margin-bottom:10vh !important;
  }
}

@media(min-width:768px){
  .pt-6{
    padding-top:3rem;
  }

  .pb-7{
    padding-bottom:3rem;
  }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 980px;
    }

    
  .pt-6{
    padding-top:80px;
  }

  .pb-7{
    padding-bottom:80px;
  }

  .under-title{
      font-size:var(--fs-2xl);
  }

}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1180px;
    }
    h2{
      font-size:var(--fs-4xl);
    }



}


@media (min-width: 1400px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    max-width: 1260px;
  }

  h2{
      font-size:var(--fs-5xl);
  }

  #hero .col-12 > img{
    height:671px !important;
  }
}


@media (min-width: 1920px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    max-width: 1400px;
  }
}





/* Stats */
.stats-wrapper {
  gap: 2rem;
  display: flex;
}

.stat {
  flex: 1 1 180px;
  text-align: center;
}

/* Numbers */
.stat p {
  font-size: var(--fs-7xl);
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat span {
  font-size: var(--fs-2xl);
  font-weight: bold;
}

/* Diagonal line */
.diagonal-line {
  align-self: stretch;
  width: 2px;
  background-color: var(--accent);
  transform: rotate(17deg);
  transform-origin: center;
}

/* Products */
.product-card {
  display: flex;
  gap: 12px;
}

.icon-wrapper {
  height: 93px;
  width: 93px;
  padding: 31px 22px;
  background-color: var(--accent);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------
   HEADER
---------------------------------- */
#hero {
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

#hero .hero-top{
  color:var(--light-grey);
}

#hero .hero-trust{
  margin-right:.75rem;
}

.hero-description{
  font-size:var(--fs-lg);
  line-height:1.5;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

#hero h1 {
  font-size: var(--fs-5xl);
  line-height: 1.4;
}

#hero #hero-buttons {
  margin-bottom: 48px;
  gap: 32px;
}

#hero-footer-text {
  padding-bottom: 10px;
  line-height:1.5;
}

.btn-primary {
  padding: 0.75rem 1.7rem;
  font-size: 1.1rem;
}

.btn-second {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.btn-second:hover {
  background: none !important;
}

/* ----------------------------------
   PARTNERS
---------------------------------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.partners img {
  max-width: 120px;
  max-height: 70px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partners-section {
  height: 100px;
  display: flex;
  align-items: center;
}

/* ----------------------------------
   FEATURE CARDS
---------------------------------- */
#resources-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}


.feature-card .card-img {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  margin:auto;
  margin-bottom:3rem;
}

.feature-card a {
  width: max-content;
  margin:auto;
  margin-bottom:0;
  height: 60px;
  width: 190px;
  display: flex;
  justify-content: center;
  border-radius: 0;
  border: 2px solid;
}

.feature-card a span {
  font-size: var(--fs-sm);
  color: var(--accent);
  font-weight: 800;
  line-height: 140%;
}

.feature-card a:hover {
  background: none;
}

.feature-card p {
  margin-bottom: 0.5rem;
  line-height: 140%;
}

.feature-card span {
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 140%;
}

.blog-image-title > p{
  line-height:1.4;
  min-height: calc(4 * 1.4em);
}

.blog-content{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  margin-top:12px;
}

.blog-content > a{
  margin-top:auto;
}

@media(max-width:1024px){
  .feature-card .card-img{
    margin-bottom:2rem;
  }
  .blog-image-title > p{
    min-height:auto;
  }
}


/* ----------------------------------
  REGIONS
---------------------------------- */
.region {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

/* ----------------------------------
  PRODUCTS
---------------------------------- */
#items {
  position: relative;
  /*min-height: 100vh;*/
}


.icon-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
    position: sticky;
    top: 165px;
    z-index: 100;
}

.icon-tabs.sticky {
  position: sticky;
  top: 150px;
  z-index: 100;
}

.icon-tab {
  text-align: center;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  padding: 16px;  
  background-color: var(--light-grey2);
  border-bottom: 4px solid transparent;
  width: 117px;
  
}

.icon-tab.active {
  border-bottom-color: var(--accent);
  transform: scale(1.1);
  opacity: 1;
}

.icon-tab span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-700);;
}

.icon-tab img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.35; 
  transition: filter 0.3s, opacity 0.3s;
}

.icon-tab.active img{
  filter:grayscale(0%);
  opacity:1;
}

.content-wrapper {
  padding: 20px;
}

.content-wrapper.active {
  opacity: 1;
  transform: translateY(0);
}

.product {
  display: flex;
  gap: 20px;
  text-align: center;
  height: 100%;
}

.product .card-img {
  height: 327px;
  width: 327px;
}

.product a:hover {
  background: none;
}

.product p {
  color: var(--grey);
  font-size: var(--fs-base);
}

#content-image {
  max-height: 444px;
  max-width: 560px;
  object-fit: contain;
}

#content-title {
  font-size: var(--fs-4xl);
}

#content-text {
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 150%;
}

/* ----------------------------------
   FAQ
---------------------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.accordion .accordion-item {
  border-color: var(--accent);
  border-top: 1px solid var(--accent) !important;
}

.accordion .accordion-item .accordion-header {
  background: var(--pink-light);
}

.accordion .accordion-item .accordion-header button {
  font-size: var(--fs-lg);
  color: var(--accent);
  background: var(--pink-light);
}

.accordion .accordion-item .accordion-body {
  font-size: var(--fs-lg);
  background: var(--pink-light);
  padding-top:0;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion .accordion-item .accordion-body,
.accordion-item:last-of-type {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.accordion-item:first-of-type {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.accordion-button:not(.collapsed) {
  border-bottom: none;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button::after { display: none; }
.accordion-button { display: flex; justify-content: space-between; align-items: center; }
.accordion-icon { width: 16px; transition: transform 0.3s ease; }
.accordion-button:not(.collapsed) .accordion-icon { transform: rotate(180deg); }
.accordion-button span { font-size: var(--fs-lg); font-weight: var(--fw-700);; }

#touFaqAccordion .accordion-header .accordion-button,
#touFaqAccordion .accordion-item .accordion-body {
  background: var(--white) !important;
}


/* ----------------------------------
  CONTACT
---------------------------------- */
.contact-section {
  width: 100%;
}

.contact-wrap {
  display: flex;
}

/* LEFT */
.contact-left {
  width: 50%;
  background: var(--accent);
  color: var(--white);
  padding: 80px 80px 80px 0;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left p {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-700);;
  margin-bottom: 40px;
  justify-self: auto;
}

.contact-info {
  font-size: var(--fs-lg);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-note {
  font-size: var(--fs-lg);
  opacity: 0.9;
}

/* RIGHT */
.contact-right {
  width: 50%;
  background: var(--blue);
  padding: 80px;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
}

.contact-form label {
  color: var(--white);
  font-size: 13px;
  margin-top: 20px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 8px 0;
  outline: none;
}

.contact-form button {
  margin-top: 40px;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: var(--fs-sm);
}

/* ----------------------------------
  FOOTER
---------------------------------- */
footer {
  background: var(--grey);
  color: #d7e6ff;
  padding: 64px 0 48px 0;
}

footer ul{
  margin-bottom:0;
}

footer a {
  font-size: var(--fs-base);
  color: var(--white);
}

footer p {
  font-size: var(--fs-base);
  color: var(--white);
}

footer h6 {
  color: var(--white);
  font-size: var(--fs-lg);
}

footer a:hover {
  color: var(--white);
}

footer .copyright,
footer .copyright a {
  font-size: var(--fs-base);
  color: var(--white);
  text-decoration: none;
}

footer .copyright a:hover{
  text-decoration: underline;
}

.footer-contact li {
  color: var(--light-grey1);
}


/* ----------------------------------
   UTILITIES
---------------------------------- */

.section-padding {
  padding: 70px 0;
}

.text-primary {
  color: #0d6efd !important;
}

.bg-light-gray {
  background: #f7f7f7;
}

.bg-pink {
  background: var(--accent) !important;
  border: var(--accent) !important;
}

.pink-line {
  height: 2px;
  background-color: var(--accent);
}

.white-line {
  height: 1px;
  color: var(--white);
  font-weight: 200;
  margin: 1.5rem 0;
}

.btn-sky-cta {
  display: inline-flex;
  align-items: center;
  border: 2px solid;
  border-radius: 0;
  padding:1.25rem 2.5rem;
  height:60px;
}

.btn-sky-cta span {
  text-transform: uppercase;
  font-weight: var(--fw-700);;
  font-size: var(--fs-sm) !important;
  letter-spacing:.1em;
  text-align:center;
  line-height:1.4;
}

.img-93 {
  height: 93px;
  width: 93px;
  aspect-ratio: 1 / 1;
}

.img-24 {
  height: 24px;
  width: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-12{
  margin-bottom:.75rem;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}


.mt-0 {
  margin-top: 0;
}


.pt-20 {
  padding-top: 20px;
}

.text-left {
  text-align: left;
}

section h1, h2, p {
  max-width: 1146px;
  justify-self: center;
}

.p-nav {
  padding: 15px 0;
}


/* ----------------------------------
   FONT SIZES
---------------------------------- */

.fs-xs {
  font-size: var(--fs-xs);
}

.fs-sm {
  font-size: var(--fs-sm);
}

.fs-base {
  font-size: var(--fs-base);
}

.fs-lg {
  font-size: var(--fs-lg);
}

.fs-xl {
  font-size: var(--fs-xl);
}

.fs-2xl {
  font-size: var(--fs-2xl);
}

.fs-3xl {
  font-size: var(--fs-3xl);
}

.fs-4xl {
  font-size: var(--fs-4xl);
}

.fs-5xl {
  font-size: var(--fs-5xl);
}

.fs-6xl {
  font-size: var(--fs-6xl);
}

.fs-7xl {
  font-size: var(--fs-7xl);
}

.fs-8xl {
  font-size: var(--fs-8xl);
}

.fs-9xl {
  font-size: var(--fs-9xl);
}


/* ----------------------------------
   FONT WEIGHTS
---------------------------------- */
.fw-700 {
  font-weight: var(--fw-700);;
}

/* ----------------------------------
   COLORS
---------------------------------- */
.pink {
  color: var(--accent);
}

.white {
  color: var(--white);
}

.light-grey {
  color: var(--light-grey);
}

.bg-pink-light {
  background-color: #fff7f9;
}

.bckg-pink {
  background-color: var(--accent);
}

.text-alignment {
  text-align: left;
}

/* ----------------------------------
  PARTNERSHIP
---------------------------------- */
.info-card {
  background: #fff7f8;
  border-left: 10px solid var(--accent);
  border-bottom: 10px solid var(--accent);
  padding: 3rem;
  padding-left: 100px;
  position: relative;
}

.info-card-reverse {
  border-left: none;
  border-right: 10px solid var(--accent);
}

.icon-box {
  height: 210px;
  width: 210px;
  padding: 31px 22px;
  background-color: var(--accent);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-list {
  padding-left: 1.2rem;
}

.info-list li {
  font-size: var(--fs-lg);
  margin-bottom: 0.6rem;
}

.info-list li:last-child{
  margin-bottom:0;
}

.wwlf-section {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ----------------------------------
  ARTICLE
---------------------------------- */
.article-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.article-content h3{
  margin-top:4rem;
}

/* ----------------------------------
  RESPONSIVE
---------------------------------- */
@media(max-width:1024px){
  .feature-card .card-img{
    max-width:250px;
  }

  
  #resources-container {
    grid-template-columns: repeat(2, 1fr);
    gap:2rem;
  }

  .region img{
    max-width:88px;
  }

  .icon-box{
    width:130px;
    height:130px;
  }
  .icon-box img{
    width:80px;
    height:80px;
  }

  .info-card{
    padding:2.5rem;
  }
}



@media (max-width: 576px) {
  .text-alignment {
    text-align: center;
    justify-content: center;
  }

  #resources-container {
    grid-template-columns: 1fr;
  }

  #resources-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }



  .feature-card p{
    margin-bottom:0;
  }

  .feature-card a{
    margin-top:2rem;
  }



  .accordion-button span{
    font-size:var(--fs-xl);
  }

}

@media (max-width: 767px) {
  /*#items{
    min-height:100%;
  }*/
  main {
    padding-top: 70px;
  }

  #hero {
    background-size: cover;
    background-position: left center;
  }

  .stats-wrapper {
    justify-content: center;
  }

  .stat {
    margin-bottom: 2rem;
  }

  .product-card {
    flex-wrap: nowrap !important;
  }

  .content-wrapper {
    display: none !important;
  }

  .icon-tabs-nav {
    position: sticky !important;
    top: 80px;
    background-color: var(--white);
  }

  .icon-tab {
    padding: 10px 16px;
  }

  .icon-tab img {
    height: 45px;
    width: 45px;
  }
  .icon-tab span {
    white-space: pre;
  }

  .mobile-products section {
    scroll-margin-top: 150px;
  }
}

@media(min-width:1920px){
    .mobile-products section {
    scroll-margin-top: 150px;
  }
}


@media (max-width: 992px) {



  .contact-wrap {
    flex-direction: column;
  }
  
  .contact-left,
  .contact-right {
    width: 100%;
    padding: 4rem 30px;
  }

  .contact-left{
    padding: 4rem 30px 2rem 30px;
  }

  .contact-right{
    padding: 2rem 30px 4rem 30px;
  }
  
  .product-card {
    flex-wrap: wrap;
    display:block;
  }

  .product-card h3{
    margin-top:1.5rem;
  }
  
  .info-card,
  .info-card-reverse {
    border-left: 10px solid var(--accent);
    border-right: none;
  }
  
  .info-card-container-sm {
    display: flex;
    gap: 2.5rem;
  }
  
  .border-end {
    border: none !important;
  }

  .stats-wrapper {
    gap: 1rem;
    flex-direction: column;
  }



  .scroll-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .btn-sky-cta{
    height:auto;
    width:auto;
  }


  #hero {
    height: auto !important;
    background-position: left;
  }

  #hero .hero-trust{
    height:24px;
  }

  #hero-footer-text{
    line-height:1.4;
  }

  .p-nav {
    padding: 18px 0;
  }

  .hero-description{
    font-size:var(--fs-base);
    line-height:1.4;
  }
}
@media(max-width:1399px){
  .hero-features, .hero-features, .pink-line{
    display:none !important;
  }
    #hero #hero-buttons{
      margin-top:1.5rem !important;
      margin-bottom:1.5rem !important;
    }

    #hero h1{
    line-height:1.25;
    font-size:var(--fs-4xl);
  }
  
}
@media (max-width: 1200px) {
  .icon-tabs {
    gap: 24px;
  }

  .icon-tab {
    min-width: 100px;
    width: 100px !important;
  }
  
  #hero-footer-text {
    padding-bottom: 10px;
  }
  
  #hero .hero-top{
    font-size:var(--fs-sm);
  }

  #hero-buttons{
    margin-top:1.25rem !important;
    margin-bottom:1.25rem !important
  }
}


@media (max-width: 1440px) {

  .icon-tabs.sticky {
    top: 120px;
  }

  main {
    padding-top: 80px;
  }
  

  #content-image {
    max-height: 400px;
  }

  #content-title {
    font-size: var(--fs-3xl);
  }

  #content-text {
    font-size: var(--fs-base);
  }
}

@media(max-width:992px){
  #hero #hero-buttons{
    gap:.75rem;
    margin-top:-2.5rem !important;
  }
}

@media(max-width:768px){
  #hero #hero-buttons{
    margin-top:-1.5rem !important;
  }
}



@media(max-width:400px){
  #hero-buttons{
    flex-wrap:wrap;
  }
}
/* INTERESTED */
.btn-pink {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-pink:hover {
  background: var(--pink-hover);
  color: #fff;
}

.interested-img {
  width: 100%;
  max-width: 515px !important;
}

/* WHY SKY POS */
.sky-pos-reasons {
  display: flex;
  gap: 12px;
  padding: 18px;
}


/* CONTACT */
.contact-section {
  background: linear-gradient(to right,
      var(--accent) 0%,
      var(--accent) 50%,
      var(--blue) 50%,
      var(--blue) 100%);
}

.contact-info p {
  margin-bottom: 8px;
  color: #333;
}

.contact-form .form-control {
  background: #fff5f7;
  border: none;
  border-radius: 0;
  padding: 16px;
  margin-bottom: 16px;
  color: #333;
}

.contact-form .form-control::placeholder {
  color: #ff8fa3;
}

.contact-form .form-control:focus {
  box-shadow: none;
  outline: none;
  background: #fff0f4;
}


/* SIDEBAR */
#sidebar{
  top:145px;
  position:sticky
}

.sidebar-item-img {
  min-width: 117px;
  height: 100px;
  object-fit: cover;
}

/* Article */
#article-image {
  display: flex;
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

.items-icons-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 12px;

  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 10px;
}

.items-icons-wrapper::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

.icon-tabs-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-tabs-inner {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}


.scroll-btn {
  background: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.scroll-btn {
  display: none;
}

.scroll-btn.left {
  margin-right: 8px;
}

.scroll-btn.right {
  margin-left: 8px;
}

.scroll-btn:hover {
  transform: scale(1.1);
}


.privacy-policy h2, .privacy-policy h3,.privacy-policy section, .privacy-policy p, .terms-of-use h2, .terms-of-use h3,.terms-of-use section, .terms-of-use p{
  justify-self: auto;
}

.privacy-policy h2, .privacy-policy h3, .terms-of-use h2, .terms-of-use h3{
  color:var(--accent);
}

.privacy-policy h3, .terms-of-use h3{
  margin-top:1.5rem;
}

@media(min-width:1921px){


  .content-wrapper{
    display: none !important;
  }

  .mobile-products{
    display: block !important;
    margin-top:3rem;
  }

    .icon-tabs {
    gap: 24px;
  }

      .icon-tabs-nav {
        position: sticky !important;
        top: 120px;
        background-color: var(--white);
    }

    .icon-tabs-inner{
      max-width:100%;
    }

    .items-icons-wrapper{
      padding: 1.5rem 10px;
    }

}




@media(min-width:1920px){
  .blog-image-title > p{
      line-height:1.4;
    min-height: calc(3 * 1.4em); /* reserve 4 lines */
  }
}