* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    height: 100vh;
}

/* common */
.flex {
    display: flex;
    align-items: center;
}

.flex-col {
    flex-direction: column;
}
.cursor-pointer{
    cursor: pointer;
}
/* --------------------------------------------------------------------------- */

.header {
    height: 155px;
    background-color: black;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 10;
}
/* .header {
    height: 155px;
    width: 100%;

} */

  .nav {
    width: 100%;

    /* padding: 1rem 1rem 0; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    /* background-color: var(--white); */
    background-color: white;
  }
  
  .nav-top-layer {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    margin-top: 1.25rem;
    padding: 0 2.3125rem;
    width: 100%;
  }
  
  .nav-top-layer .nav-top-layer-left {
    width: 75%;
  }
  
  .nav-top-layer .nav-top-layer-left ul {
    list-style-type: none;
    display: flex;
    /* justify-content: space-between; */
  }
  
  .left-vertical-line {
    border-left: 1px solid #000042;
    padding: 0px 0.5vw;
  }
  .pad {
    padding-right: 0.5vw;
  }
  
  .nav-top-layer a {
    text-decoration: none;
    color: var(--dark-blue-100);
    letter-spacing: 0.0006rem;
    white-space: nowrap;
    font-size: 0.75rem;
  }
  
  /* middle navbar */
  .nav-middle-layer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.625rem 0 1.25rem;
    min-height: 3.125rem;
    margin-right: 0px;
    margin-top: 0.625rem;
  }
  
  .nav-middle-layer .nav-logo-number {
    display: flex;
    justify-content: space-between;
    flex-basis: 23.6%;
    align-items: center;
  }
  
  .nav-middle-layer .nav-logo-number .lenskart-logo {
    height: 3.5625rem;
  }
  
  .nav-middle-layer .nav-logo-number .phone-number {
    width: 7.8125rem;
    height: 34px;
    margin-right: -1.375rem;
  }
 
  .nav-middle-layer .nav-search {
    width: 33%;
  }
  
  .nav-middle-layer .nav-search input {
    background: rgb(255, 255, 255);
    width: 100%;
    padding: 0.25rem 7px;
    border: 1px solid rgba(0, 0, 66, 0.5);
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 66, 0.5);
    outline: none;
    user-select: initial;
  }
  
  ::placeholder {
    letter-spacing: 0.0313rem;
  }
  

.nav-search span{
    display: none;
}
.scanner-on-mobile img{
    display: none;
}
  .nav-middle-layer .nav-middle-link {
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.025rem;
    line-height: 1.25rem;
    width: 30%;
    padding-right: 1.625rem;
  }
  
  .nav-middle-layer .nav-middle-link a {
    text-decoration: none;
    color: #000042;
    font-size: 0.8125rem;
  }
  
  .nav-middle-layer .nav-middle-link .nav-link {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.25rem;
    cursor: pointer;
  }
  
  .nav-middle-layer .nav-middle-link .nav-link .nav-link-icon {
    padding-right: 10px;
  }
  
  .nav-bottem-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fbf9f7;
    padding: 0.1875rem 0 0.3125rem;
  }
  .nav-bottem-layer .nav-bottem-left {
    display: flex;
    justify-content: space-between;
    width: 65%;
    padding-left: 1.625rem;
    white-space: nowrap;
  }
  
  .nav-bottem-layer .nav-bottem-left a {
    text-decoration: none;
    color: #000042;
    letter-spacing: 0.0056rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 3.75rem;
    letter-spacing: 0.0313rem;
  }
  
  .nav-bottem-layer .nav-bottem-right {
    display: flex;
    /* width: 20%; */
    align-items: center;
    justify-content: space-between;
    margin-right: 1.5625rem;
  }
  
  .nav-bottem-layer .nav-bottem-right .nav-bottom-image-div {
    height: 2.5rem;
    padding: 0 0.125rem;
  }
  
  .nav-bottem-layer .nav-bottem-right img {
    height: 100%;
    border-radius: 0.3125rem;
  }


/* Eye-glasses-hover-section */

:root {
    --dark-blue-100: #000042;
  
    --black: #000000;
    --white: #ffffff;
  
    --border: #ebebf0;
  
    --fw-bold: 700;
    --space-between: space-between;
    --space-evenly: space-evenly;
    --space-around: space-around;
  }
  /* top */
  .main-card {
    position: absolute;
    /* top: 100%; */
    margin-top: 1px;
    left: 0px;
    right: 0px;
    width: 96vw;
    background: rgb(255, 255, 255);
    padding: 0px 0px 30px;
    z-index: 102;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    /* display: none; */
    min-height: 42.5rem;
  }
  
  .grid-container {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 260px 260px repeat(auto-fill, minmax(250px, 1fr));
    grid-template-rows: 60px 15px repeat(1, auto);
    grid-auto-flow: column;
  }
  
  @media (max-width: 2000px) and (min-width: 1300px) {
    .grid-container {
      grid-template-columns: 260px 260px repeat(
          auto-fill,
          minmax(200px, 1fr)
        );
    }
  }
  
  .cont-flex-row {
    display: flex;
    flex-direction: row;
  }
  
  .cont-flex-col {
    display: flex;
    flex-direction: column;
  }
  
  .men-div {
    background-color: rgb(255, 255, 255);
    display: flex;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    -webkit-box-align: center;
    align-items: center;
    font-weight: var(--fw-bold);
    font-size: 14px;
    border-radius: 5px;
    margin-left: 30px;
    color: var(--dark-blue-100);
  }
  
  .gender-image {
    display: block;
    margin: auto 12px;
    padding: 0px;
    max-width: 48px;
  }
  
  .gender-text {
    width: 50%;
    display: inline-block;
  
    margin: 0px;
    padding: 0px;
  }
  
  .icon-svg-div {
    font-size: 7px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  
  .eye-flex-c {
    background-color: rgb(242, 236, 230);
    display: flex;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    -webkit-box-align: center;
    align-items: center;
    font-weight: var(--fw-bold);
    font-size: 14px;
    border-radius: 5px;
    margin-left: 30px;
    color: var(--dark-blue-100);
  }
  
  .eye-sel {
    color: var(--dark-blue-100);
    text-transform: capitalize;
    display: block;
    text-decoration: none;
    padding: 20px 20px 0px;
  }
  
  .ey-flex-row {
    display: flex;
    flex-direction: row;
    border-top: 1px solid rgb(223, 223, 223);
  }
  
  .eye-classic-color {
    background-color: rgb(242, 236, 230);
    padding: 16px 10px 16px 25px;
    margin: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: var(--justify);
    justify-content: var(--space-between);
    min-height: 48px;
    color: var(--dark-blue-100);
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 1px;
    text-decoration: none;
  }
  
  .eye-cat-col {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-transform: capitalize;
  }
  
  .eye-cat-deco {
    display: block;
    color: var(--dark-blue-100);
    height: auto;
    line-height: 18px;
  }
  
  .eye-no-wrp {
    background-color: rgb(255, 255, 255);
    padding: 16px 10px 16px 25px;
    margin: 0px;
    display: flex;
    align-items: center;
    -webkit-box-pack: var(--justify);
    justify-content: var(--space-between);
    min-height: 48px;
    color: var(--dark-blue-100);
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 1px;
    text-decoration: none;
  }
  
  .kqyBkv {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 5px;
    height: auto;
  }
  
  .cXnaGV {
    display: block;
    font-size: 12px;
    line-height: 20px;
    padding: 0px 20px;
    cursor: pointer;
    color: rgba(0, 0, 66, 0.5);
  }
  a {
    text-decoration: none !important;
  }
  
  
  /* kids-glasses-hover */
  .kg-inner-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100vw;
  }
  
  .kg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 1.875rem 2.5rem;
    background-color: rgb(251, 251, 251);
    height: 17.5rem;
    width: 15rem;
    border-radius: 1.25rem;
  }
  
  .kg-para {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    font-family: LKFuturaStd-Heavy, Arial, Helvetica, sans-serif;
  }
  
  
  
  
          /* home-eye-test-on-hover */
          .sec-main {
            background-color: white;
            width: 100%;
            height: 100%;
            display: flex;
            color: #000042;
        }
  
        .doctor {
  
            width: 50%;
        }
  
        .doctor>img {
            width: 721px;
            height: 425px;
        }
  
        .paragraph {
  
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
  
        .get-your {
            margin-top: -1.25rem;
            margin-bottom: 1.75rem;
        }
  
        .get-your>p {
            font-size: 3.125rem;
        }
  
        .a-certified>p {
            font-size: 1.5rem;
            padding: 0 2.5rem;
            white-space: initial;
        }
  
        .book-appointment {
            border: 0.0625rem solid #000042;
            width: max-content;
            font-size: 1.25rem;
            padding: 1rem 1.375rem;
            border-radius: 1.875rem;
            margin-top: 1.75rem;
        }
  
        .book-appointment:hover {
            background-color: #000042;
            color: white;
        }
  
  
  
  
  
  
  
  
  
  /* store-locator-on-hover */
  
  
  
  
  .left-store-locator-box,.right-store-locator-box{
    display: flex;
    align-items: start;
    justify-content: center;
    color: #000042;
    width: 100%;
    margin: 0 1rem;
    text-align: center;
    /* letter-spacing: 0.0625rem; */
  } 
  .left-store-locator-box{
    padding:0 2rem;
    width: 40%;
  }
  .right-store-locator-box{
    padding-top:3rem;
    width: 60%;
  }
  .left-store-locator-box-content h3{
    margin-top: 1.3rem;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
  }
  .left-store-locator-box-content p{
    font-size: 1.25rem;
      white-space: normal;
      font-weight: 300;
      letter-spacing: 0.04rem;
      font-size: 1.25rem;
      line-height: 2.5rem;
  }
  .left-store-locator-box-content button{
    padding: 1rem 2.5rem; 
    font-size: 1.125rem;
    color: #000042;
    border-radius: 1.75rem;
    font-weight: bold;
    border: 1px solid #000042;
    background-color: transparent;
  }
  .left-store-locator-box-content button:hover{
    background-color: #000042;
    color: white;
    cursor: pointer;
  }
  .locations-container{
    display: flex;
  }
  .locations-container a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  margin: 0 1rem;
  line-height: 1 !important;
  }
  
  .city-container{
    text-align: center;
    position: relative;
  }
  .city-container span{
    position: absolute;
      right: 1rem;
  }
  
  .city-container img{
    width: 100%;
  }
  
  
  .city-container .right-span-4{
  right: -0.25rem;
  }
  
  .rendered-container-on-hover{
    display: none;
    position: absolute;
    z-index: 10000;
    width: 93%;
    left: 2.25rem;
    height: 26.25rem;
    background-color: white;
    padding: 0 1rem;
    top: 98%;
    padding: 0.1875rem 0;
   
  }
  .button-for-render-nav:hover{
    border-bottom:3px solid #000042;
  }
  
  .button-for-render-nav:hover .rendered-container-on-hover{
    display: flex;
   
  }
  
.home-nav-on-phone {
    width: 100%;
    padding: 0 1rem;
    
}

.second_section {
    display: flex;
    padding: 0.8rem;
    font-size: 0.8rem;
    justify-content: space-between;
    border-radius: 1rem;
    background-color: #f8f1de;
    border: 1px solid #ad9f74;
}

.second_section .right_part{
     color: #ad9f74;
     font-weight: 550;
     cursor: pointer;
}

.second_section .right_part i {
    size: 0.5rem;
    cursor: pointer;
}

.third_section {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    
}

.third_section img{
    width: 6rem;
    cursor: pointer;
}

.home-nav-on-phone{
    display: none;
}
.nav-logo-number .logo-for-phone{
    display: none;
}

  /* ---------------------------------------------------------------------------------------------- */



.computer-glasses{
    position: fixed;
    top: 155px;
}
/* content-section */
.computer-glasses-first-section {
    padding: 0 2vw;
    overflow:auto;
   position: fixed;
   top: 155px;
   z-index: 50;
   width: 100%;
}
.computer-glasses-first-section::-webkit-scrollbar{
    width: 0;
}
/* main-section-content-header */
.first-section-up {
    font-size: 0.75rem;
    color: #999999;
    justify-content: space-between;
    padding: 20px 0px 15px;
    letter-spacing: 1px;

}

.first-section-up-list-links {
    list-style: none;
}

.first-section-up-list-links li {
    margin: 0 0.25rem;
}

.first-section-up-list-links span {
    color: black;
    font-size: 1rem;
}

.first-section-up a {
    color: #999999;
    text-decoration: none;
}

/* main-content-section-glass-content-section */
.computer-glasses-second-section{
    position: sticky;
    top: 0;
}
/* aside-bar */
.second-section-left {
    width: 16.5vw;
    height: calc(100vh + 145px);
    /* border: 2px solid blue; */
    align-items: first baseline;
    overflow-y: scroll;

}

.second-section-left::-webkit-scrollbar {
    display: none;
}

.aside-section-none-slider-container {
    align-items: start;
    /* border: 2px solid darkmagenta; */
    width: 100%;
    padding-top: 1rem;
    /* overflow-y: auto; */
}


.non-slider-item-heading {
    font-size: 0.813rem;
    color: #333333;
    text-align: left;
    margin-bottom: 0.8rem;
    width: 100%;
    cursor: pointer;
}

.non-slider-item {
    margin-bottom: 2rem;
}
.non-slider-item1{
    width: 100%;
    align-items: start;
}
.non-slider-item1 .age-group-container{
    overflow-y: scroll;
    width: 100%;
}

.age-group-container {
    
    align-items: start;
}

.aside-check-box-container {
    display: flex;
    justify-content: start;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
    align-items: center;
    cursor: pointer;
    color: #2a2a2a;
    font-size: 0.75rem;
    opacity: 0.5;
}

.age-group-container .aside-check-box-container:hover{
    color: #000042;
    opacity: 1;
}
.age-group-container .aside-check-box-container:hover input{
    color: #2a2a2a;
    opacity: 0.5;
}

.aside-check-box-container input {
    width: 1.219rem;
    height: 1.219rem;
    margin-right: 0.625rem;
}

.opticals-small-container {
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;

}

.non-slider-opticals-small-container {
    border: 1px solid rgba(205, 205, 205, 0.6);
    margin: 0.25rem 0.25rem;
    /* flex-basis: 33%; */
    width: 4.25rem;
    height: 3.75rem;
}
.non-slider-opticals-small-container:hover{
    border-color: #000042;
}

.opticals-small-container-item {
    justify-content: center;
    cursor: pointer;
}

.opticals-small-container-item-image {
    display: inline-flex;
    justify-content: center;
}

.opticals-small-container-item-image img {
    width: 3.5rem;
    height: 1.75rem;
}

.opticals-small-container-item-tag-name {
    color: #2a2a2a;
    font-size: 0.75rem;
    opacity: 0.5;
    text-align: center;
}

/* aside-section-slider-container */
.aside-section-slider-container {
    width: 100%;
}

.aside-dropdown-container {
    border-bottom: 1px rgb(109, 110, 113,0.5) solid;
    cursor: pointer;
}

.aside-dropdown-heading-box {
    justify-content: space-between;
    width: 100%;
    padding: 0.4rem 0;

}

.dropdown-symbol {
    width: 0.57rem;
    height: 0.57rem;
    color: #c1c1c1;
    margin-left: -1.56rem;
    margin-top: -0.25rem;
}

.dropdown-symbol-container {
    margin-top: -0.7rem;
}

.aside-dropdown-content-box {
    color: #2a2a2a;
    font-size: 0.75rem;
    /* opacity: 0.5; */
    letter-spacing: 1.8px;
    align-items: start;
    width: 100%;
    display: none;
}

.aside-dropdown-heading-box:focus+.aside-dropdown-content-box {
    display: flex;
}

.overflow-in-y-container {
    overflow: auto;
    max-height: 24.75rem;
    padding-bottom: 1rem;
}


/* Optical cards section */
.second-section-right {
    width: 83.5vw;
    border-left: 2px #ededed solid;
    height: calc(100vh + 145px);
    /* overflow: auto; */
}


.second-section-right-heading {
    width: 100%;
    justify-content: space-between;
    font-size: 0.75rem;
    /* z-index: 12; */
}
.second-section-right-heading-items{
    width: 100%;
    padding: 0.375rem 0.625rem;
    background-color: #EDEDED;
    justify-content: space-between;
}
.item-number-container{
    width: 100%;
    text-align: center;
    padding: 0.55rem 0;
    color: #333333;
    font-size: 0.8125rem;
    letter-spacing: 0.11rem;
    background-color: white;
   
}
.right-section-heading-item {
    display: inline-flex;

}

.right-section-heading-item .heading-green-para {
    color: #329c92;
    font-weight: 600;
}

.right-section-heading-item1 p {
    color: #6d6e71;
    font-size: 0.75rem;
    font-family: 400;
    letter-spacing: 2px;
    line-height: 1.875rem;

}



/* second-section-right-opticals */
.second-section-right-opticals{
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    overflow-y: scroll;
    height: 62.5rem;
}
.second-section-right-opticals::-webkit-scrollbar{
    width: 0;
}
.second-section-right-card-items{
    width: min-content;
    border-radius: 0.5rem;
    border: 1px solid #ebebf0;
    background-color: white;
    height: auto;
}
.second-section-right-card-items:hover{
    box-shadow: rgba(0, 0, 0, 0.11) 0px 3px 16px 0px;
}
.large-optical-container{
    border-radius: 0.25rem;
    width: 100%;
    padding: 0.7rem;
    padding-bottom: 0;
}
.large-optical-image{
    margin-top: 1.8rem;
}
.large-optical-image img{
    width: 22.125rem;
    height: 10.6rem;
}
.large-optical-image-container{
    position: relative;
}
.like-button-container{
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}
.large-optical-content-container{
    justify-content: start;
    align-items: start;
    width: 100%;
}


.large-optical-rating-container{
    background-color: #dcdce7;
    padding: 0.2rem 0.7rem;
    border: #00bac6;
    border-radius: 0.6rem;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.large-optical-rating-container .star-icon{
margin: 0 0.5rem;
margin-top: -0.188rem;
}
.large-optical-card-title-section{
    color: #333333;
    margin-top: 1.3rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;

}

.large-optical-size{
    font-size: 0.75rem;
    color: #333338;
    margin: 0.5rem 0;
}

.large-optical-cost-section{
    font-size: 1rem;
    display: inline-flex;
    font-weight: bold;
    color: #000042;
    font-size: 0.75rem;
    
}
.large-optical-color-section{
    justify-content: space-between;
    width: 100%;
}
.large-optical-color-choises .color-items{
    width: 1.5rem;
    height: 1.5rem;
 
    border-radius: 50%;
    
}

.color-item-border{
    padding: 0.15rem;
    border: 1px solid gray;
    border-radius: 50%;
    margin: 0 0.0625rem;
}

.large-optical-footer-section{
    background: linear-gradient(90deg, rgb(247, 241, 222) 0%, rgba(247, 241, 222, 0) 100%);
    margin-top: 0.5rem;
    padding: 0.625rem 0.9375rem;
    border-radius: 0 0 0.5rem 0.5rem;
    width: 100%;
    color: #b59a50;
    font-size: 0.75rem;
    font-weight: bold;
}


.card-hover-image{
    display: none;
    position: absolute;
}

.large-optical-image:hover .card-hover-image{
    display: block;
}






/* --------------------------------------------- */
/* switch-button */
.switch {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 23px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #329c92;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #329c92;
}

input:focus+.slider {
    box-shadow: 0 0 1px #329c92;
}

input:checked+.slider:before {
    -webkit-transform: translateX(42px);
    -ms-transform: translateX(45px);
    transform: translateX(45px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ------------------------------------------------ */
.right-section-heading-item2 {
    justify-content: space-between;
    line-height: 1.4;
    letter-spacing: 1.5px;
    font-synthesis: none;
}

.switch-button-container {
    margin: 0 1rem;
}

.right-section-heading-item3 select {
    margin-left: 0.4rem;
    border-radius: 0px;
    padding: 0.3rem 1rem 0.3rem 0.5rem;
    cursor: pointer;
    border: 1px solid gray;
    font-synthesis: none;
    font-size: 1em;
    line-height: 1.375rem;
}



.border-color {
    border: 2px solid red;
}












.nav-search span{
    display: none;
}
.scanner-on-mobile img{
    display: none;
}


@media screen and (max-width:1340px){
    .nav-bottem-layer .nav-bottem-left .hide-on-overflow{
        display: none;
    }
}
@media screen and (max-width:1200px) {
  .nav-top-layer-left ul .hide-on-1200{
        display: none;
    }
}

@media screen and (max-width:984px) {
    .nav-top-layer-left ul .hide-on-984{
        display: none;
    }
}

@media screen and (max-width:1064px){
    .nav-bottem-layer .nav-bottem-right{
        display: none;
    }
    .nav-bottem-layer .nav-bottem-left{
        width: 100%;
    }
    .hide-on-1064{
        display: none;
    }
    .nav-middle-layer .nav-search{
        width: 25%;
    }
}

@media screen and (max-width:800px) {
    .hide-on-tab,.nav-top-layer .nav-top-layer-left ul .hide-on-tab{
        display: none;
    }
    .second-section-right{
        width: 95%;
        border:none;
    }
    .second-section-right-card-items{
        width: 48%;
    }
    .nav-middle-layer .nav-logo-number .phone-number{
        display: none;
    }
    .nav-bottem-layer .nav-bottem-left a,.nav-middle-layer .nav-middle-link a{
        font-size: 0.675rem;
    }

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

@media screen and (max-width:520px) {
    .second-section-right-card-items{
        width: 100%;
        margin:0 auto;
    }
    .nav-top-layer{
        display: none;
    }
    .nav-search span{
        display: initial;
    }
    .nav-search input{
        display: none;
    }
    .nav-search{
        text-align: center;
    }
    .scanner-on-mobile img {
        display: initial;
        width: 1.2rem;
        height: 1.2rem;

    }
    .scanner-on-mobile a{
        display: none;
    }
    .nav-middle-layer .nav-middle-link{
        padding-right: 0;
        width: 32%;
    }
    .nav-middle-layer .nav-middle-link .nav-link .nav-link-icon{
        padding: 0;
    }
    .home-nav-on-phone{
        display: inline;
    }
    .nav-logo-number .lenskart-logo{
        display: none;
    }
    .nav-logo-number .logo-for-phone{
        display: block;
        width: 3.5rem;
    }
    .nav-bottem-layer, .first-section-up{
        display: none;
    }
    .header{
        position: relative;
    }
    .nav{
        position: relative;
    }
    .nav-middle-layer{
        margin-top: 0;
        padding-top: 0.6rem;
    }
    .computer-glasses-first-section{
        position: relative;
        top: 50px;
    }
    .computer-glasses-second-section{
        position: relative;
    }
    .large-optical-image img{
        width:100%
    }
}

