@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Praise&family=Satisfy&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
}
header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: center;
  width: 80%;
  margin: 30px 10%;
  background-color: rgb(128 128 128 / 43%);
  /* -webkit-box-reflect: below 10px linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5)); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px); /* For older Safari support */
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: -1px 0px 2px 0px white;
  top: 20px;
  /* background: #002949; */
  z-index: 99;
  position: sticky;
}

header .navbar ul {
  display: flex;
  margin: 0;
}
header .navbar ul li {
  list-style: none;
  margin: 0 10px;
  position: relative;
  padding: 5px 15px;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
}
header .navbar ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: 550;
}
header .navbar ul li::before {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background-color: #ffcc00;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
}
header .navbar ul li:hover::before {
  width: 100%;
}
header .navbar ul li:hover a {
  color: black;
}
.drop-down-menu {
  position: relative;
  z-index: 99;
  padding: 0;
}
.drop-down-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 35px;
  right: -200px;
  bottom: 0;
  z-index: -1;
  height: 300px;
  width: 350px;
  gap: 5px;
  display: none;
  margin-top: -400%;
  transition: 0.5s;
  padding: 5px;
}
.drop-down-menu:hover .drop-down-content {
  display: flex;
  margin-top: 0px;
}
.drop-down-content a {
  color: #002949;
  text-decoration: none;
  padding: 5px 10px;
  background: #ffc900;
  text-transform: uppercase;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  border-radius: 10px;
}
.drop-down-content a:hover {
  background-color: #002949;
  color: white;
}
header .side-btn {
  display: flex;
  align-items: center;
}
header .side-btn span {
  margin-right: 20px;
  color: white;
  color: #ffc900;
  font-weight: 600;
}

header .side-btn .hireBtn {
  background-color: #ffcc00;
  padding: 7px 15px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 550;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
header .side-btn .hireBtn::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: white;
  position: absolute;
  z-index: -1;
  top: 0;
  transition: 0.5s;
  left: -100%;
  border-radius: 50px;
}
header .hireBtn:hover::before {
  left: 0;
}
header .side-btn .hireBtn a {
  text-decoration: none;
  color: black;
}
.side-btn span a {
  color: #ffc900;
  text-decoration: none;
}

.hero-section {
  height: 700px;
  width: 100%;
  background-color: gray;
  /* position: absolute; */
  top: -135px;
  z-index: 1;
  /* background: url("file:///C:/xampp/htdocs/eyeteck/assets/images/heroback.png"); */
  /* background: url("http://localhost/eyeteck/assets/images/heroback.png"); */
  background-size: cover;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
  position: relative;
}
.hero-section video{
  width: 100%;
  position: absolute;
  z-index: -1;
}
.hero-section-upper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    #002949 14.5%,
    rgba(255, 255, 255, 0.113) 60%
  );
  height: 100%;
  width: 100%;
}
.hero-section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 85px;
}
.hero-section-content h1 {
  font-size: 104px;
  color: #ffc900;
  font-family: Radley;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-section-content span {
  color: #fff;
  color: color(display-p3 1 1 1);
  font-family: Inter;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 8.74px;
  text-transform: uppercase;
}
.hero-section-content p {
  width: 50%;
  text-align: center;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 151.714%; /* 25.791px */
  text-transform: capitalize;
  margin: 20px 0;
}
.hero-btns button {
  padding: 10px 30px;
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 151.714%; /* 31.86px */
  letter-spacing: -0.84px;
  text-transform: capitalize;
  border-radius: 62px;
  border: none;
  margin: 0 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-btns button a{
  text-decoration: none;
  color: #000;
}
.hero-btns button::before {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 62px;
  background-color: #ffc900;
  z-index: -1;
  transition: 0.5s;
}
.white-hover-btn {
  background-color: #ffc900;
}
.white-hover-btn::before {
  background-color: white !important;
}
.hero-btns button:hover::before {
  width: 100%;
}
.portion-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px 0;
}
.portion-heading h2 {
  position: relative;
  color: #002949;
  text-align: center;
  font-family: Radley;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding: 0 30px;
  z-index: 1;
  transition: 0.8s;
}

.portion-heading h2::before {
  content: "";
  display: block;
  height: 100%;
  width: 10px;
  position: absolute;
  background-color: #002949;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s;
}
.portion-heading h2:hover {
  color: white;
}
.portion-heading h2:hover::before {
  width: 100%;
}
.about-site-home {
  display: flex;
}
.about-site-image2 {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
.about-site-home-content {
  padding: 40px;
  background: transparent;
  overflow-y: scroll;
  height: 500px;
}
.about-site-home-content h3 {
  color: #002949;
  font-family: Montserrat;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.about-site-home-content p {
  color: #002949;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 143.763%; /* 28.753px */
  letter-spacing: -1px;
  text-transform: capitalize;
}
.expert-security-card img {
  width: 100%;
}
.expert-security-image {
  position: relative;
}
.expert-security-image-upper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;

  /* background: linear-gradient(183deg, color(display-p3 0.0078 0.1569 0.2784 / 0.00) -28.57%, color(display-p3 0.0078 0.1569 0.2784) 97.84%); */
}
.expert-security-card p {
  color: #002949;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  padding: 15px 10px;
}
.our-commitment-portion1,
.our-commitment-portion2 {
  display: flex;
  gap: 20px;
}
.our-commitment-image {
  height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: 0.5s;
}

.our-commitment-image5 img {
  transform: scale(1.5);
}
.our-commitment-image1,
.our-commitment-image6 {
  flex: 1;
}

.our-commitment-image2,
.our-commitment-image3,
.our-commitment-image4,
.our-commitment-image5,
.our-commitment-image1,
.our-commitment-image6 {
  width: 23.65%;
}
.our-commitment-image:hover {
  width: 50%;
}
.contact-us-home-portion {
  background-color: #002949;
  padding: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.contact-us-home-portion .contact-us-home-image {
  width: 50%;
  height: 450px;
  overflow: hidden;
  border-radius: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us-home-portion .contact-us-home-image img {
  width: 100%;
  /* height: 100%; */
}
.contact-us-home-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  color: white;
  justify-content: center;
  padding-right: 40px;
}
.contact-us-home-content h4 {
  font-family: Montserrat;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 10px;
}
.contact-us-home-content p {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 143.763%; /* 28.753px */
  letter-spacing: -1px;
  text-transform: capitalize;
}
.contact-us-home-content table tr .day-heading {
  width: 70px;
}
.contact-us-home-content table tr td {
  font-family: Montserrat;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.social-icons-portion ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 0;
  margin:110px 0;
}
.social-icons-portion ul li {
  list-style: none;
}
.social-icons-portion ul li .bi {
  font-size: 100px;
  background-color: black;
  color: white;
  padding: 20px 30px;
  border-radius: 50%;
}
.social-icons-portion ul li img {
  height: 70px;
}
/*.social-insta,*/
/*.social-yelp {*/
/*  height: 70px !important;*/
/*}*/
.latestnews-portion {
  display: flex;
  gap: 40px;
}
.latestnews {
  padding: 20px;
  border-radius: 30px;
  transition: 0.5s;
}
.latestnews:hover {
  box-shadow: 2px 4px 10px 1px gray;
}
.latestnews-image {
  width: 100%;
}
.latestnews-image img {
  width: 100%;
}
.latestnews-content {
  color: #002949;
  font-family: Montserrat;
  text-transform: capitalize;
}
.latestnews-content p {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 17.4px */
  letter-spacing: -0.24px;
  margin: 15px 0 10px 0;
}
.latestnews-content h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 29px */
  letter-spacing: -0.4px;
}
.newsletter-portion {
  color: white;
  background-color: #002949;
  display: flex;
  padding: 100px 50px;
  border-radius: 45px;
  justify-content: space-between;
  margin-top: 80px;
}
.newsletter-content {
  width: 40%;
}
.newsletter-content h3 {
  font-family: Radley;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.793%; /* 58.897px */
  text-transform: capitalize;
  /* width: 70%; */
}
.newsletter-content p {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 23.2px */
  letter-spacing: -0.32px;
  text-transform: capitalize;
}
.newsletter-input {
  width: 50%;
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: end;
}
.newsletter-input label {
  font-family: Montserrat;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 145%; /* 21.75px */
  letter-spacing: -0.3px;
  text-transform: capitalize;
}
.newsletter-input-fields {
  display: flex;
}
.newsletter-input-fields input {
  padding: 10px 15px;
  flex: 1;
  background-color: white;
  border-radius: 65px;
  border: none;
  outline: none;
  font-size: 21px;
}
.newsletter-input-fields input::placeholder {
  color: #002949;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  position: relative;
}
.newsletter-input-fields input::placeholder::after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background-color: red;
  bottom: 3px;
  left: 0;
  position: absolute;
  z-index: 1;
}
.newsletter-input-fields button {
  padding: 10px 25px;
  font-family: Montserrat;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  background-color: #ffc900;
  color: #002949;
  border-radius: 65px;
  border: none;
  outline: none;
  margin-left: 15px;
}
.newsletter-input p {
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}
footer {
  background: #e6f6ff;
  overflow: hidden;
  padding: 50px 120px;
  margin-top: 80px;
}

footer .about-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
footer .about-footer p {
  color: #000;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 132.233%; /* 15.868px */
  width: 50%;
}
footer .about-footer h3 {
  color: #000;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}
.footer-navigations {
  display: flex;
  justify-content: space-between;
}
.footer-navigations .nav-head {
  color: #002949;
  font-family: Montserrat;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 68.75% */
  margin-bottom: 15px;
}
.footer-navigations ul li {
  list-style: none;
  margin: 10px 0;
  font-style: italic;
}
.footer-navigations ul li a {
  text-decoration: none;
  color: #002949;
  font-size: 18px;
  font-weight: 600;
}
.footer-bottom {
  padding: 10px 50px;
  background: #002949;
}
.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}
.rights-para {
  padding-left: 60px;
}
.bottom-address {
  display: flex;
  justify-content: space-around;
}

/******************** SERVICES PAGE *******************/
.page-margin {
  margin-top: 100px;
}
.service-slider {
  /* position: relative; */
  width: 100%;
  /* top: 150px; */
  border-radius: 50px;
  overflow: hidden;
}
.image-slider {
  position: relative;
  width: 100%;
}
.image-slider-upper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    13deg,
    color(display-p3 0.0078 0.1569 0.2784) 0.24%,
    color(display-p3 0.0078 0.1569 0.2784 / 0) 50%,
    color(display-p3 0.0078 0.1569 0.2784) 99.76%
  );
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 0 0 70px 70px;
}
.image-slider-upper h3 {
  color: #fff;
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
}
.image-slider-upper p {
  color: #fff;
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  width: 55%;
}
.image-slider img {
  width: 100%;
}
.service-main-heading {
  color: #002949;
  text-align: center;
  font-family: Radley;
  font-size: 56px;
  font-weight: 400;
  text-transform: capitalize;
  border-bottom: 2px solid gray;
  padding: 20px 0;
  margin: 0px 0 30px 0;
}
.services-portion {
  margin: 70px 10%;
  text-align: center;
  /* box-shadow: 2px 2px 10px 5px gray; */
  box-shadow: 2px 2px 31px 8px #8080801f;
  border-radius: 110px;
  padding: 75px 54px;
}
.services-portion h3 {
  color: #002949;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
.services-portion p {
  color: #002949;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  text-transform: capitalize;
}
.servicer-portion-inner {
  height: 500px;
  overflow-y: scroll;
  padding: 0 40px;
}

/*********************** CAREER PAGE ******************/

.career-side-image {
  overflow: hidden;
  border-radius: 33px;
}
.career-side-image img {
  width: 100%;
}
.career-form-portion {
  padding: 0 40px;
}
.career-form-portion h3 {
  color: #002949;
  font-family: Radley;
  font-size: 56px;
  font-weight: 400;
  text-transform: capitalize;
}
.career-form-portion p {
  color: #002949;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}
.career-form-portion form input,
.career-form-portion form textarea {
  width: 100%;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid #000;
  border: 1px solid color(display-p3 0.0078 0.1569 0.2784);
  background: color(display-p3 1 1 1);
  padding: 10px;
  margin-bottom: 5px;
}

.career-form-portion form input::placeholder,
.career-form-portion form textarea::placeholder {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
}
.submit-btn {
  display: flex;
}
.submit-btn input[type="file"] {
  border: none;
}
.submit-btn button {
  background-color: #002949;
  color: white;
  position: relative;
  padding: 10px 15px;
  width: 200px;
  z-index: 1;
  border: none;
  outline: none;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 500;
}
.submit-btn button::before {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  position: absolute;
  background-color: #ffc900;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 8px;
  transition: 0.5s;
}
.submit-btn button:hover::before {
  width: 100%;
  color: black;
}
.submit-btn button:hover {
  color: black;
}

/*************************** ABOUT US PAGE **************************/

.about-main-banner {
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}

.about-main-banner-upper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    103deg,
    #002949 0.05%,
    #0063b3 49.52%,
    #002949 99.95%
  );
  background: linear-gradient(
    103deg,
    color(display-p3 0.0078 0.1569 0.2784) 0.05%,
    color(display-p3 0.0191 0.3822 0.6784 / 0) 49.52%,
    color(display-p3 0.0078 0.1569 0.2784) 99.95%
  );
}
.about-main-banner img {
  width: 100%;
}
.about-main-content {
  /* margin: 80px 10% 0 10%; */
  margin: 80px 5% 0 5%;
  text-align: center;
  /* box-shadow: 2px 2px 10px 5px gray; */
  height: 400px;
  overflow-y: scroll;
  padding: 0 40px;
  /* direction: rtl; */
}
.about-main-content h3 {
  color: #002949;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  margin: 40px 0 10px 0;
}
.about-main-content p {
  color: #002949;
  font-size: 19px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-main-content ul li {
  text-align: left;
  font-size: 17px;
  color: #002949;
  margin-bottom: 5px;
  font-weight: 500;
}
.about-main-content ul li span {
  font-weight: 700;
}
.we-serve-portion{
  display: flex;
  justify-content: space-between;
      /* margin: 80px 10% 0 10%; */
      margin: 80px 5% 0 5%;
          box-shadow: 2px 2px 31px 8px #8080801f;
    border-radius: 110px;
    padding: 75px 54px;
}
.we-serve-content{
  padding: 10px;
}
.we-serve-content h3{
color: #002949;
font-family: Radley;
font-size: 50px;
font-style: normal;
font-weight: 400;
text-transform: capitalize;
}
.we-serve-content ul li{
color: #002949;
font-size: 19px;
font-style: normal;
font-weight: 500;
margin-bottom: 5px;

text-transform: capitalize;
}
.we-serve-image{
  padding: 20px;
}
.get-consultant-btn {
  background-color: #ffc900;
  color: #002949;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  transform: rotate(-90deg);
  outline: none;
  border: none;
  padding: 10px;
  position: fixed;
  bottom: 250px;
  right: -64px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  z-index: 2;
}
.get-call-btn {
  background-color: #ffc900;
  color: #002949;
  padding: 5px 12px;
  border-radius: 15px 0 0 15px;
  position: fixed;
  bottom: 147px;
  right: -106px;
  transition: 0.5s;
  z-index: 2;
}
.get-call-btn:hover{
  right: 0px;
}
.get-call-btn a {
  color: #002949;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
  padding: 5px;
  /* border-left: 1px solid white; */
  text-decoration: none;
}


.home-chat-box{
  border: 1px solid gray;
  background-color: white;
  width: 300px;
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 0;
  padding: 20px;
  border-radius: 20px;
  /* transform: translateX(100%); */
  display: none;
  z-index: 3;
}
/* .get-consultant-btn:hover .home-chat-box{
   transform: translateX(0%);
} */
.home-chat-box-close{
  color: #002949;
  text-align: right;
  font-size: 20px;
  cursor: pointer;
}
.home-chat-box h3{
color: #002949;
text-align: center;
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 145%; /* 29px */
letter-spacing: -0.4px;
text-transform: capitalize;
}

.home-chat-box input,.home-chat-box textarea{
   width: 100%;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid #000;
  border: 1px solid color(display-p3 0.0078 0.1569 0.2784);
  background: color(display-p3 1 1 1);
  padding: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
}
.home-chat-box input::placeholder,.home-chat-box textarea::placeholder{
  color: #002949;
}
.home-chat-box .flag{
   border: 1px solid #000;
  border: 1px solid color(display-p3 0.0078 0.1569 0.2784);
   width: 100%;
  border-radius: 8px;
   margin-bottom: 5px;
   padding: 5px;
}
.home-chat-box span img{
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}













.input-hidden {
  opacity: 0; /* Makes the input invisible */
  position: absolute; /* Positions it over the label */
  z-index: -1; /* Puts it behind the label */
}

.custom-file-label {
  /* Style your custom button appearance here */
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer; /* Makes it look like a button */
  display: inline-block;
  margin-right: 10px;
}

#file-name-display {
  /* Style for the file name display area */
  font-family: sans-serif;
  color: #555;
}

/** STYLE 1*/

#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar {
  width: 9px;
  background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #002949;
}

/* Style-2  Transparent Scrollbar */

.scrollbartransparent {
  /* float: left; */
  height: 350px;
  background: transparent;
  overflow-y: scroll;
  padding: 0;
}

#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: transparent;
}

#style-2::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}

#style-2::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  /* background-color: #555; */
}
