@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --color--white: white;
    --font-family-grotesk: "Schibsted Grotesk", sans-serif;;
    --color--black: black;
    --_typography---paragraph-font-size--small-paragraph: 14px;
    --_typography---line-height--large: 140%;
    --_typography---font-weight--normal: 400;
    --color--gray-900: #272727;
    --_typography---heading-font-size--h1: 64px;
    --_typography---line-height--small: 110%;
    --_typography---heading-font-size--h2: 48px;
    --_typography---heading-font-size--h3: 40px;
    --_typography---heading-font-size--h4: 36px;
    --_typography---font-weight--medium: 500;
    --_typography---heading-font-size--h5: 32px;
    --_typography---line-height--medium: 130%;
    --_typography---heading-font-size--h6: 24px;
    --color--dark-blue-800: #23232b;
    --color--gray-200: #27272733;
    --_spacing---border-radius--radius-xxl: 100px;
    --_typography---paragraph-font-size--paragraph: 16px;
    --color--green-900: #00ab41;
    --color--gray-800: #272727cc;
    --color--white-800: #fffc;
    --color--gray-250: #27272740;
    --color--white-100: #ffffff1a;
    --_typography---link-font-size--text-link: 16px;
    --color--green-600: #26ff79;
    --color--elephant-950: #002738;
    --_spacing---padding-margin--space-md: 24px;
    --color--white-700: #ffffffb3;
    --color--sky-blue-700: #0094ca;
    --color--green-800: #00d250;
    --_spacing---padding-margin--space-xxl: 80px;
    --_spacing---border-radius--radius-sm: 8px;
    --color--black-200: #e3e3e3;
    --color--gray-500: #27272780;
    --color--gray-700: #272727b3;
    --color--white-400: #fff6;
    --color--gray-150: #27272726;
    --color--sky-blue-800: #0c6ad5;
    --color--black-50: #f9f9f9;
    --color--green-300: #f4f7f3;
    --_spacing---padding-margin--space-xl: 60px;
    --_typography---paragraph-font-size--large-text: 20px;
    --_spacing---border-radius--radius-md: 12px;
    --_typography---paragraph-font-size--large-paragraph: 18px;
    --color--white-50: #ffffff0d;
    --color--white-250: #ffffff40;
    --color--dark-blue-950: #14161b;
    --color--gray-400: #27272766;
    --color--white-200: #fff3;
    --color--eminence-300: #f6f3f7;
    --_spacing---border-radius--radius-xl: 16px;
    --color--green-700: #58ca00;
    --color--cyan: #00caca;
    --color--gray-100: #2727271a;
    --_spacing---padding-margin--space-sm: 18px;
    --color--sky-blue-400: #e2f4fa;
    --color--green-400: #e2faea;
    --color--fair-pink-100: #f8e9e7;
    --color--gray-950: #101010;
    --color--sky-blue-100: #0cb7d51a;
    --color--pomegranate-100: #ff492c1a;
    --color--eminence-200: #691f7433;
    --color--cyan-100: #15c39a1a;
    --color--black-100: #efefef;
    --_typography---link-font-size--button: 16px;
    --color--green-500: #d7efdf;
    --color--green-200: #00ab4133;
    --color--green-100: #00ab411a;
    --color--dark-blue-900: #000a24;
    --color--dark-blue-600: #06194c;
    --color--sky-blue-900: #1f5874;
    --color--sky-blue-300: #dce9ee;
    --color--sky-blue-200: #1f627433;
    --color--eminence-900: #691f74;
    --color--eminence-500: #e2dcee;
    --color--eminence-400: #f5efff;
    --color--eminence-100: #691f741a;
    --color--sunset-orange: #eb6047;
    --color--sunset-orange-200: #eb604733;
    --color--pomegranate: #ff492c;
    --color--pomegranate-700: #ff492cb3;
    --color--pomegranate-200: #ff492c33;
    --color--pomegranate-40: #ff492c0a;
    --color--fair-pink-200: #f8e6e3;
    --_typography---font-weight--light: 300;
    --_typography---font-weight--semi-bold: 600;
    --_typography---font-weight--bold: 700;
    --color--dark-blue-700: #23272e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-grotesk);
  font-size: var(--_typography---paragraph-font-size--small-paragraph);
  background-color: var(--color--white);
  color: var(--color--black);
}

h1, h2, h3, h4 {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 3.2rem;

}

.grid {
  display: grid;
}

.section {
  padding-block: 2rem 1rem;
  margin-top: 2rem;
}


.main {
  overflow: hidden; /* For animation ScrollReveal */
}
.button-green {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: var(--_spacing---border-radius--radius-xxl);
    background-color: var(--color--green-600);
    color: var(--color--elephant-950);
    font-size: var(--_typography---link-font-size--button);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--medium);
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}

.button-black {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: var(--_spacing---border-radius--radius-xxl);
    background-color: var(--color--gray-900);
    color: var(--color--white-800);
    font-size: var(--_typography---link-font-size--button);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--medium);
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}



.button i {
    font-size: 25px;
}



/* HOME SECTION */

/* PRE LOADER  */
#preloader{
    background: #ffff url(/images/preloader202.gif) no-repeat center center;
    background-size: 50%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;

}

/* HOME SECTION */
.v1-hero-background-image {
    z-index: -1;
    width: 100%;
    height: 69%;
    position: absolute;
    inset: auto 0% 0%;
}
.gradient-text {
    background-image: linear-gradient(90deg, var(--color--sky-blue-700), var(--color--green-800));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.landingpage{
    background-image: url('images/background1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.hero__div{
    padding-top: 6rem;
    margin-inline: 1.1rem;
}
.top__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    row-gap: 1.2rem;
}
.top__content h1{
    text-align: center;
    font-weight: 500;
}
.top__content p, .reach__more-container p{
    text-align: center;
    font-size: 1rem;
    color: #272727cc;
    font-weight: 450;
}

.top__content_flex, .reach__more_content_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .6rem;
}
.top__content_flex h2, .reach__more-container h2{
    font-size: .9rem;
    font-weight: 550;
}
.left__grid{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  
}
.bottom__content{
      margin-top: 2rem;
      margin-bottom: 2rem;
}
.apilox__RX{
    display: flex;
    column-gap: 1.5rem;
    align-items: center;
    padding: 10px 8px;
    border: solid 1px var(--color--gray-200);
    justify-content: space-between;

}
.apilox__RX{
    border-radius: 5px;
}
.apilox__RX p{
    font-weight: 500;
    color: #272727;
}
.apilox__RX div{
    background-color: var(--color--green-600);
    padding: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color--elephant-950);
}
.home__banner{
    margin-bottom: 0rem;
    border-radius: 5px;
}
.ultimate__card{
    display: flex;
    column-gap: 1.5rem;
    align-items: center;
    padding: 10px 8px;
    border: solid 1px var(--color--gray-200);
    justify-content: space-between;
    border-radius: 40px;
}
.ultimate__cover{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ultimate__cover img{
    width: 20px;
    margin-left: 5px;
}
.ultimate__card p{
    font-weight: 500;
}
.right_arrow{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color--elephant-950);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color--white-800);
    font-size: 20px;
}

/*BANNER SECTIONS  */
.banner{
    margin-inline: 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.banner div{
    text-align: center;
    color: var(--color--gray-800);;
    font-size: 1rem;
}
.pictures__org{
    display: flex;
    width: 100%;
    flex-flow: wrap;
    justify-content: center;
    gap: 1rem;
}
.pictures__org img{
    width: 25%;
}

/* REFILL SECTION */
.refill__container{
    margin-inline: 1.5rem;
    
}
.rc__heading{
    text-align: center;
    margin-bottom: 1.5rem;
}
.rc__heading h2{
    font-size: 1.6rem;
    font-weight: 500;
}
.refill__contents{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
}
.content-3triple{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
}
.content-3triple h1{
    color: var(--color--green-900);
    font-weight: 500;
}
.content-3triple h2{
    font-weight: 500;
    text-align: center;
}
.content-3triple p{
    text-align: center;
    font-size:.9rem;
    color: var(--color--gray-800);
}

/* PHARMACY PROFILE */
.pharmacy__profile{
    background-color: var(--color--black-50);
    padding-top: 2rem;
    margin-top: 2rem;
    
}
.pharmacy__profile__container{
    margin-inline: 1.5rem;
}
.grid__main{
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
.pc___content{
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    margin-bottom: 2rem;
}
.pc___content h1{
    font-weight: 400;
}
.pc___content p{
    color: var(--color--gray-800);
    font-size: 1rem;
}
.pc__content__grid{
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
.grid__contatainer{
    display: flex;
    flex-direction: column;
    row-gap: .8rem;
}
.grid__icon{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: solid 1px var(--color--gray-200) ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid__icon i{
    font-size: 1.2rem;
   color: var(--color--green-800);
}
.grid__contatainer h2{
    font-size: 1.2rem;
    color: var(--color--gray-900);
    line-height: var(--_typography---line-height--small);
    font-weight: var(--_typography---font-weight--medium);
    letter-spacing: 0;
    margin-bottom: 0;
}
.grid__contatainer p{
    color: var(--color--gray-900);
}

/* LEFT GRID */
.second__right{
    position: relative;

}
.second__right img{
    border-radius: 10px;
    z-index: -1;
}

#notification1{
    bottom: 23%;
    left: 10%;
    position: absolute;
    z-index: 2;
    width: 40%;
}
#notification2{
    bottom: 5%;
    left: 30%;
    position: absolute;
    z-index: 2;
    width: 40%;
}
#notification3{
    bottom: 42%;
    right: 8%;
    position: absolute;
    z-index: 2;
    width: 40%;
}

/* REACH MORE PHARMACIES */

.reach__more-container{
    margin-inline: 1.5rem;
    margin-top: 4rem;
}
.reach__more_grid{
    grid-template-columns: 1fr;
    gap: 2rem;
}
.reach__more_heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.2rem;
}
.reach__more-container h1{
    text-align: center;
    font-weight: 500;
}
.reach__more_img{
    position: relative;
    z-index: 5;
}

/* PRICING CONTAINER    */
.pricing__container{
    margin-inline: 1.5rem;
}
.pricing__heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
}
.pricing__heading h1{
    color: var(--color--gray-900);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.pricing__heading p{
    text-align: center;
    font-size: 0.9rem;
    color: #272727cc;
    font-weight: 450;
}
.grid__cover_price{
    border: solid 2px var(--color--gray-200) ;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.grid__cover_price h2{
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 1rem;
}
.grid__cover_price p{
    font-size: .95rem;
    color: #272727cc;
    font-weight: 450;
}
.grid__cover_price h3 sup{
    font-size: 1rem;
    font-weight: 500;
}
.grid__cover_price h3 span{
    font-size: 1.6rem;
    font-weight: 500;
}
.grid__cover_price h3{
    font-size:1.6rem;
    font-weight: 500;
}

.grid__cover_price .lists{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 1rem;
}

.grid__cover_price .lists div{
    display: flex;
    column-gap: 5px;
    font-size: 1.1rem;
    font-weight: 550;
    color: var(--color--gray-800);
}
.grid__cover_price .lists div i{
    font-size: 1rem;
    font-weight: 400;
}
.grid__cover_price .lists div p span{
    color: var(--color--green-900);
}


/* REVIEWS  */
.reviews{
    background-color: #23232b;
}
.reviews__container{
    margin-inline: 1.5rem;
}
.reviews__heading{
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
}
.reviews__heading h1{
    color: var(--color--white);
    font-size: 1.9rem;
    line-height: var(--_typography---line-height--small);
    font-weight: var(--_typography---font-weight--normal);
    letter-spacing: 0;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}
.reviews__heading p{
    color: var(--color--white);
    text-align: center;
    font-weight: 400;
}
.reviews__grid{
    margin-top: 2.3rem;
    gap: 1.5rem;
}

.reviews__cards{
    grid-column-gap: 110px;
    grid-row-gap: 60px;
    border-radius: var(--_spacing---border-radius--radius-sm);
    background-color: var(--color--white-50);
    flex-flow: column;
    justify-content: space-between;
    /* height: 100%; */
    padding: 16px;
    display: flex;
}
.reviews__cards p{
    color: var(--color--white);
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
}
.reviewer__profile{
    display: flex;
    column-gap: 1rem;
}
.reviewer__profile img{
    width: 40px;
    height: 40px;
}
.profile__data h3{
    color: var(--color--white);
}
.profile__data h4{
    color: var(--color--white-700);
}
.video_cont{
    border-radius: 10px;
}

.price__button__special__self__addict{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}
.review_subdata div{
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: .5rem;
}
.review_subdata div h1{
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color--white);
}
.review_subdata div p{
    color: var(--color--white-700);
    font-size: .95rem;
}
.profile__data h4{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* FAQ QUESTION */

.faq__section{
    margin-top: 4rem;
    margin-bottom: 4rem;
}



/* CTA SECTION */

.cta-section {
    background-image: url('/images/background2.webp');
    background-size: cover;
    padding: 20px;
    border-radius:20px;
}
.cta__container{
    margin-inline: 1.5rem;
}
.cta__cover_box{
    background-color: var(--color--white);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.2rem;
}
.cta__heading_stars{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: .3rem;
}
.cta__heading_stars h3{
    font-weight: 500;
}
.cta__content_center{
    text-align: center;
}
.cta__content_center h1{
    font-size: 1.6rem;
    font-weight: 500;
}
.cta__bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: .7rem;
}
.cta__bottom a{
    font-size: .9rem;
    font-weight: 550;
}

.rc__heading{
    display: flex;
    justify-content: center;
    align-items: center;
}

.our__team-heading h1{
    font-weight: 600;
    text-align: center;
}
.cta-section{
    margin-bottom: 3rem;
}
.visible1{
    display: none;
}
.visible2{
    display: none;
}

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delays */
.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }
.delay-6 { transition-delay: 1.2s; }
.delay-7 { transition-delay: 1.4s; }
.delay-8 { transition-delay: 1.6s; }
.delay-9 { transition-delay: 1.8s; }
.delay-10 { transition-delay: 1.9s; }

/* Demo styling */
/* .section {
  padding: 80px 20px;
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
} */



/* ----------------------------------------------------
   BASE — no media query needed
   ---------------------------------------------------- */

/* Very Small Phones — 320px */
@media (min-width: 320px) {
  /* BASE CODE */

  .abt_content-3triple {
    row-gap: .6rem;
}
.top__content h1{
    font-weight: 600;
}

}


/* Small Phones — 375px */
@media (min-width: 375px) {
/* PASS */
}

/* Medium Phones — 414px (iPhone Plus) */
@media (min-width: 414px) {
/* PASS */
}

/* Large Phones — 480px */
@media (min-width: 480px) {
.pc__content__grid {
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

}

/* Tablets Portrait — 600px (Android) */
@media (min-width: 600px) {
.apilox__RX {
    padding: 25px 8px;
    border-bottom: 30px;
    border: solid 2px var(--color--gray-200);
}
.left__grid {
    row-gap: 2.5rem;
}
.hero__div {
    padding-top: 10rem;
    margin-inline: 2rem;
}

.landingpage {
    width: 100%;
    height: 100%;
}
.top__content h1{
    font-size: 2.6rem;
}
.top__content p, .reach__more-container p {
    font-size: 1.1rem;
   
}
.ultimate__card {
    padding: 20px 13px;
    border: solid 2px var(--color--gray-200);
    border-radius: 60px;
}
.right_arrow {
    width: 35px;
    height: 35px;
}
.ultimate__cover img {
    width: 30px;
}

.ultimate__card p {
    font-size: 1.3rem;
}
.banner div {
    font-size: 1.2rem;
}
.rc__heading h2 {
    font-size: 1.9rem;
}
.refill__container {
    margin-inline: 2rem;
}
.content-3triple h1 {
    font-size: 2rem;
}
.content-3triple h2 {
   font-size: 1.5rem;
}
.content-3triple p {
    font-size: 1.1rem;
}
.pc___content h1 {
    font-weight: 500;
    font-size: 2.2rem;
}

.pc___content p {
    font-size: 1.3rem;
}
.grid__contatainer p {
   font-size: 1rem;
}
.grid__contatainer h2 {
    font-size: 1.4rem;
}
.grid__icon i {
    font-size: 1.5rem;
}
.reach__more-container h1 {
   font-size: 2.3rem;
}
.pricing__heading h1{
    font-weight: 500;
    font-size: 2rem;
}

.pricing__heading p {
    font-size: 1.3rem;
}
.reviews__heading h1 {
    font-size: 2.3rem;
}
.reviews__heading p {
 font-size: 1.3rem;
}
.reviews__cards p {
    font-size: 18px;
}
.profile__data h3 {
   font-size: 1.1rem;
}
.profile__data h4 {
   font-size: 1rem;
}
.review_subdata div p {
    max-width: 200px;
    font-size: 1rem;
}
.cta__content_center h1 {
    font-size: 2rem;
}
.cta__heading_stars h3 {
    font-size: 1.4rem;
}
.cta__heading_stars div i {
    font-size: 1.4rem;
}
.cta__bottom {
    flex-direction: row;
    column-gap: .7rem;
}
.cta__cover_box {
   padding: 20px 35px;
}
}

/* Large Phones / Small Tablets — 640px */
@media (min-width: 640px) {
    .apilox__RX {
    border-radius: 20px;
}

.apilox__RX div {
    width: 50px;
    height: 50px;
  
}
.apilox__RX div i{
    font-size: 1.6rem;
}

.apilox__RX p {
    font-size: 1.2rem;
}
.bottom__content{
    margin-bottom: 3rem;
}
}

/* Tablets Portrait — 720px */
@media (min-width: 720px) {

}

/* Tablets Landscape — 768px */
@media (min-width: 768px) {
.visible1{
    display: block;
}



.middle__grid{
    display: block;
}
.bottom__content{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    margin-top: 3rem;
}

.left__grid {
        row-gap: 1rem;
    }

.apilox__RX {
    display: flex;
    column-gap: 1.5rem;
    align-items: center;
    padding: 10px 8px;
    border: solid 1px var(--color--gray-200);
    justify-content: space-between;
}
.ultimate__card {
    display: flex;
    column-gap: 1.5rem;
    align-items: center;
    padding: 10px 8px;
    border: solid 1px var(--color--gray-200);
    justify-content: space-between;
    border-radius: 40px;
}
.middle__grid{
    display: flex;
}
.middle__grid img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.home__banner{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.banner{
    margin-top: 5rem;
}
.rc__heading h2 {
    font-size: 2rem;
}
.refill__contents {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
}
.content-3triple {
  align-items: start;
}
.content-3triple h2, .content-3triple p{
    text-align: left;
}
.content-3triple h2 {
        font-size: 1.2rem;
    }

.pc___content h1 {
 max-width: 70%;
 font-size: 2.5rem;
}

.pc___content p {
    font-size: 1.4rem;
}
.grid__contatainer h2 {
    font-size: 1.6rem;
}
.grid__contatainer p {
    font-size: 1.1rem;
}
.reach__more-container h1 {
    font-size: 2.8rem;
}
.pricing__heading h1 {
    font-size: 2.7rem;
}
.pricing__heading p {
   max-width: 60%;
    font-size: 1.3rem;
}
.pricing__grid{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
}
.ultimate__card p {
        font-size: 1.2rem;
    }
.reviews__grid{
    grid-template-columns: repeat(2, 1fr);
}
.cta__content_center h1 {
    font-size: 2.3rem;
}
.cta__bottom p{
    font-size: 1.2rem;
}
.cta__bottom{
    margin-bottom: 2rem;
}
.reach__more_img img{
    border-radius: 20px;
}

}


/* Large Tablets — 820px (iPad Air) */
@media (min-width: 820px) {
.content-3triple h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.refill__contents {
    
    column-gap: 1rem;
}
.top__content_flex h2, .reach__more-container h2 {
    font-size: 1.1rem;
    font-weight: 550;
}
.rc__heading h2 {
    max-width: 90%;
    margin-bottom: 3rem;
}
.pc___content p {
     max-width: 50%;
    }

.reach__more-container h1 {
    max-width: 80%;
}
.cta-section{
    margin-inline: 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

}

/* iPad Pro 11 — 834px */
@media (min-width: 834px) {
    .pictures__org img {
    width: 20%;
}
.cta__cover_box {
    padding: 30px 45px;
}
.top__content h1 {
     max-width: 90%;
}
.our__team-heading h1{
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
}
}

/* iPad Pro 12.9 Portrait — 900px */
@media (min-width: 900px) {
 .button-green{
    font-weight: 600;
    font-size: 20px;
 }
.top__content h1 {
    font-size: 2.8rem;
    max-width: 90%;
}

.top__content p, .reach__more-container p {
    font-size: 1.3rem;
    max-width: 90%;
}
.rc__heading h2 {
    font-size: 2.5rem;
    max-width: 80%;
}
.reach__more-container h1 {
    font-size: 3rem;
}
.cta__content_center h1 {
    font-size: 2.6rem;
}
.reviews__cards p {
    line-height: 23px;
}
}

/* Small Laptops — 1024px */
@media (min-width: 1024px) {
 .visible2{
    display: none;
}
.top__content h1 {
        font-size: 3.5rem;
        max-width: 80%;
        font-weight: 600;
    }

    .top__content p, .reach__more-container p {
        font-size: 1.3rem;
        max-width: 80%;
    }

    .top__content {
    row-gap: 2rem;
}
.right__grid{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.3rem;
}
.cta__heading_stars h3 {
    font-size: 1.6rem;
}

.cta__cover_box {
    padding: 4rem 0rem;
}

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

.apilox__RX p {
    font-size: 1rem;
}
.ultimate__card p {
    font-size: 1rem;
}

.pictures__org img {
    width: 15%;
}
.grid__main {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
}
    .rc__heading h2 {
        font-size: 2rem;
        max-width: 70%;
    }

  #bg{
    position: absolute;
    bottom: 12%;
    z-index: 2;
    border-radius: 15px;
  }

  .pc___content p {
        max-width: 90%;
    }
    .pc___content h1 {
        max-width: 90%;
        font-size: 2.5rem;
    }

    #notification2 {
    bottom: 15%;
}
.reviews__cards p {
    line-height: 23px;
}

.reach__more_grid{
    grid-template-columns:repeat(2, 1fr); 
    
}
.reach__more_grid{
    direction: rtl;
}
.reach__more_grid>*{
    direction: ltr;
}
.reach__more_heading{
    align-items: flex-start;
}
.reach__more-container h1, .reach__more-container p {
    text-align: start;
}
.pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
}

.reviews__cards p {
    font-size: 16px;
    line-height: 23px;
}

.grid__cover_price h2 {
    font-size: 2.2rem;
}
.grid__cover_price p {
font-size: 1.2rem;
}
.button-black{
    font-size: 19px;
}
.grid__cover_price h3 {
    font-size: 2.7rem;
}
.grid__cover_price h3 span {
    font-size: 2.3rem;
}
.grid__cover_price p
{
font-size: 1.6rem;
}
.grid__cover_price .lists {
    row-gap: 1.5rem;
}
.grid__cover_price .lists div i {
    font-size: 1.5rem;
    font-weight: 600;
}
.reviews__heading h1 {
    font-size: 2.8rem;
}
.banner {
        margin-top: 8rem;
        margin-bottom: 3rem;
    }
/* .reviews__heading p {
    font-size: 1.6rem;
}
.reviews__heading{
    margin-bottom: 4rem;
} */
.reviews__grid{
    margin-bottom: 3rem;
    margin-inline: 2rem;
}
.reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cta__content_center h1 {
        font-size: 3.2rem;
        max-width: 74%;
        display: inline-flex;
        align-self: center;
        
    }
}


/* Medium Laptops — 1152px */
@media (min-width: 1152px) {
.content-3triple h2 {
font-size: 1.8rem;

}
.content-3triple h1 {
    font-size: 2.3rem;
}
.content-3triple p {
    font-size: 1.3rem;
}
#bg {
    bottom: -6%;
    width: 90%; 
    right: 0%;
}
.reviews__grid{
    margin-inline: 4rem;
}
#notification2 {
    bottom: 11%;
}
.pricing__grid {
        margin-inline: 3.5rem;
        margin-top: 2rem;
    }

.pricing__grid {
margin-inline: 7rem;
}

.pricing__grid {
column-gap: 6rem;
}
}

/* Large Laptops / Small Desktops — 1280px */
@media (min-width: 1280px) {
#bg {
bottom: -5%;
width: 80%; 
right: 0%;
}
#notification2 {
    bottom: -1%;
    left: 39%;
}
#notification1 {
    bottom: 10%;
    left: 22%;
}
#notification3 {
    bottom: 25%;
}
.pricing__heading p {
    font-size: 1.5rem;
}
section{
    padding-inline: 2rem;
}
}
/* Full HD width — 1366px */
@media (min-width: 1366px) {
    section{
    padding-inline: 4rem;
}
.top__content p, .reach__more-container p {
        font-size: 1.3rem;
        max-width: 70%;
    }
}

/* Large Desktop — 1440px */
@media (min-width: 1440px) {
section{
    padding-inline: 6rem;
    }
#bg {
bottom: -2%;

}
#notification2 {
bottom: 1%;
}

#notification1 {
bottom: 13%;
left: 22%;
}

#notification3 {
    bottom: 33%;
}

}

/* WQHD — 1600px */
@media (min-width: 1600px) {
section{
    padding-inline: 7rem;
}

#bg {
bottom: -10%;

}
#notification2 {
bottom: 1%;
}

#notification1 {
bottom: 13%;
left: 22%;
}

#notification3 {
    bottom: 33%;
}
}

/* Ultra-Wide — 1920px (Full HD) */
@media (min-width: 1920px) {
section{
padding-inline: 10rem;
}
.grid__main{
    padding-bottom: 8rem;
}
#bg {
    width: 70%;
    position: relative;
}

#notification3 {
right: 35%;
}

#notification1 {
    bottom: 11%;
    left: 5%;
}
#notification2 {
        bottom: -3%;
        left: 17%;
    }
.top__content h1 {
    font-size: 5rem;
    margin-top: 4rem;
}

.top__content p, .reach__more-container p {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  
}
}

/* Quad HD — 2560px */
@media (min-width: 2560px) {
    section{
        padding-inline: 24rem;
    }
}

/* 4K — 3840px */
@media (min-width: 3840px) {
    .top__content h1 {
        font-size: 8rem;
        margin-top: 8rem;
    }
    .top__content p, .reach__more-container p {
        font-size: 2.3rem;
        margin-bottom: 2rem;
    }
    .top__content p, .reach__more-container p {
        font-size: 1.3rem;
        max-width: 50%;
    }
    section{
        padding-inline: 66rem;
    }
}