* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
}

:root {
  --white: #fdfdfa;
  --black: #000;
  --primary: #45cbc0;
  --primary_bg: #a87732;
}

.img:hover img {
  /* transform: scale(1.1); */
  animation-name: elementor-animation-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }

  33.3% {
    transform: translateX(-6px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.dark-mode-toggle {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  display: inline-block;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  /* border: .2rem solid var(--grey--dark); */
  position: fixed;
  right: 10px;
  top: 45%;
  background-color: #000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 999;
}

.dark-mode-toggle:focus {
  outline: none;
  border-color: var(--primary);
}

:root[data-theme="dark"] .dark-mode-toggle__text:before {
  content: "deactivate ";
}

:root[data-theme="light"] .dark-mode-toggle__text:before {
  content: "activate ";
}

.dark-mode-toggle__icon {
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  position: relative;
  transition: width 0.3s, height 0.3s;
  z-index: 1;
  transform: rotate(-20deg);
}

.dark-mode-toggle__icon:before {
  z-index: 0;
  content: "";
  position: absolute;
  display: block;
  border-right: none;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 50%;
  transition: opacity 0.3s, background-image 03s;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: spin__rays 4s linear infinite;
  background-image: linear-gradient(
      0deg,
      transparent 46%,
      #fff 46%,
      #fff 54%,
      transparent 54%
    ),
    linear-gradient(90deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(45deg, transparent 47%, #fff 47%, #fff 53%, transparent 53%),
    linear-gradient(
      135deg,
      transparent 47%,
      #fff 47%,
      #fff 53%,
      transparent 53%
    );
}

.dark-mode-toggle__icon:after {
  content: "";
  position: absolute;
  display: block;
  background: #000;
  border-radius: 0.7rem;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  left: 200%;
  transform: translateY(-50%);
  transition: left 0.3s;
}

/* .dark-mode-toggle:hover .dark-mode-toggle__icon {
    background: var(--primary);
} */

:root[data-theme="light"] .dark-mode-toggle__icon:after {
  left: 40%;
}

:root[data-theme="dark"] .dark-mode-toggle__icon {
  width: 1.3rem;
  height: 1.3rem;
}

:root[data-theme="dark"] .dark-mode-toggle__icon:before {
  opacity: 1;
}

@keyframes spin__rays {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* Hide only visually, but have it available for screenreaders */
.hidden--visually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

img {
  max-width: 100%;
  transition: ease-in-out 0.3s;
}

li {
  list-style: none;
  font-family: "Archivo", sans-serif;
}

ul {
  padding-left: 0;
}

a {
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  transition: ease-in-out 0.5s;
}

p {
  font-size: 16px;
  line-height: 30px;
}

.img:hover img {
  /* transform: scale(1.1); */
  animation-name: elementor-animation-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.top_contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
}

.contact-list-one {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}

.contact-list-one li {
  position: relative;
  font-size: 13px;
  line-height: 25px;
  color: var(--white);
  font-weight: 400;
  padding-left: 30px;
  padding-right: 20px;
  border-right: 1px solid #6f6f6f;
}

.contact-list-one li i {
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 17px;
  line-height: 30px;
  color: var(--white);
}

.contact-list-one li:last-child {
  border: none;
}

.contact-list-one li a {
  color: var(--white);
}

.contact-list-one li a:hover {
  color: var(--primary);
}

.socal_media {
  display: flex;
  gap: 0 35px;
  justify-content: right;
}

.socal_media a {
  color: var(--white);
  font-size: 16px;
}

.nav_bar .nav_bar_nav {
  display: flex;
}

#myHeader.sticky {
  position: fixed;
  background-color: #000;
  width: 100%;
  top: 0;
  z-index: 9999;
  animation: slideDown 1s ease-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-color: #fff;
}

#myHeader.sticky .logo img {
  width: 80px;
}
/*@keyframes slideDown {*/
/*  from {*/
/*    transform: translateY(-100%);*/
/*  }*/

/*  to {*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

#myHeader.sticky .top_1 {
  display: none;
}

#myHeader.sticky .logo {
  margin-top: 0;
}

.togal {
  background: #ffffff;
  width: 37px;
  height: 33px;
  cursor: pointer;
  display: none;
  order: 3;
}

.btn-icon {
  width: 100%;
  height: 31px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #ffffff;
}

.btn-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000000;
  transition: 0.35s ease-in-out;
}

.open .btn-icon span:nth-of-type(1) {
  transform: translateY(10px) rotate(315deg);
}

.open .btn-icon span:nth-of-type(2) {
  width: 0;
  left: 50%;
}

.open .btn-icon span:nth-of-type(3) {
  transform: translateY(-11px) rotate(-315deg);
}

nav {
  position: relative;
  z-index: 99;
}
nav::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-image: url(../../assets/image/img/menu-draw.png);
  background-repeat: no-repeat;
  z-index: 9;
}

.nav_bar_n {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  z-index: 99;
}

.nav_bar .nav_bar_nav li a {
  color: #000;
  padding: 15px 6px;
  transition: ease-in-out 0.3s;
  font-weight: 600;
}

.nav_bar .nav_bar_nav li {
  padding: 25px 15px;
}

.nav_bar_nav li {
  position: relative;
}

.nav_bar_nav li a:hover {
  color: var(--primary);
}

.nav_bar_nav .droupdown {
  position: absolute;
  background-color: #fff;
  width: 300px;
  max-height: 600px;
  overflow: auto;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: ease-in-out 0.5s;
}

.clk_btn {
  position: absolute;
  right: 0;
  top: 30%;
  color: #000;
  cursor: pointer;
}

.nav_bar_nav .droupdown li {
  padding: 0;
}

.nav_bar_nav li:hover .droupdown {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.nav_bar_nav .droupdown li a {
  display: block;
  padding: 8px 15px;
  font-size:15px;
  transition: ease-in-out 0.5s;
  color: #000;
}

.nav_bar_nav .droupdown li a:hover {
  background-color: var(--primary);
  color: #fff;
}

.nav_bar_nav {
  margin-bottom: 0;
}

.logo img {
  padding: 2px 0px;
  width: 100px;
}

.slick-nav.next-arrow.slick-arrow {
  position: absolute;
  left: 1%;
  top: 45%;
  color: #fff;
  z-index: 9;
  border: 1px solid #fff;
  padding: 5px 12px;
  transform: rotate(45deg);
  cursor: pointer;
  transition: ease-in-out 0.5s;
  display: none !important;
}

.slick-nav.prev-arrow.slick-arrow i,
.slick-nav.next-arrow.slick-arrow i {
  transform: rotate(-45deg);
}

.slick-nav.prev-arrow.slick-arrow {
  position: absolute;
  right: 1%;
  top: 45%;
  color: #fff;
  z-index: 9;
  border: 1px solid #fff;
  padding: 5px 12px;
  transform: rotate(45deg);
  cursor: pointer;
  transition: ease-in-out 0.5s;
  display: none !important;
}

.slick-nav.prev-arrow.slick-arrow:hover,
.slick-nav.next-arrow.slick-arrow:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.head_banner .slick-slide.slick-current.slick-active .small_line {
  animation: 1.5s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active .big_line {
  animation: 2s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active p {
  animation: 3s linear 0s alternate headerline;
  transition-delay: 0.2s;
}

.head_banner .slick-slide.slick-current.slick-active .all_btn {
  animation: 4s linear 0s alternate headerline;
  transition-delay: 0.2s;
}

.head_banner .slick-slide.slick-current.slick-active .img {
  animation: 4s linear 0s alternate headerimg;
  transition-delay: 0.2s;
}

@keyframes headerline {
  0%,
  25% {
    transform: translateY(-20%);
    opacity: 0;
  }

  75%,
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes headerimg {
  0%,
  25% {
    transform: translateY(-20%);
    opacity: 0;
  }

  75%,
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.container-fluid {
  padding: 0 2%;
}

.top_1 {
  background-color: var(--primary_bg);
}

.manin_box {
  width: 50%;
  float: left;
}
.head_banner {
  z-index: 9;
}
.baner_head {
  font-size: 70px;
  font-weight: 900;
  font-family: "Josefin Sans", sans-serif;
}

.banner_item img {
  width: 100%;
}

.top_pro {
  margin: 70px 0;
}
.top_item .img {
  border-radius: 50%;
  margin-bottom: 10px;
}
.top_item .img img {
  border-radius: 50%;
}
.top_item {
  text-align: center;
  margin: 10px 20px;
}
.top_item span {
  display: block;
  font-weight: 600;
}
.ab_img {
  width: 50%;
  float: left;
  margin-right: 50px;
}
.my {
  margin: 70px 0;
}
.ab_about {
  display: flex;
  position: relative;
}
.head_1 {
  display: block;
  font-size: 20px;
  color: var(--primary_bg);
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
}
.head_2 {
  font-size: 40px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.ab_vector {
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  z-index: -1;
}
.product {
  position: relative;
  padding: 60px 0 80px;
  background-color: #fff4e6;
  margin-top: 180px;
}
.pr_vector {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: -1;
}
.pro_item {
  margin: 10px;
}
.pro_item span {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}
.speeial {
  background-color: #facfbc;
  padding: 150px 0 200px;
  position: relative;
  margin-top: 150px;
}
.sp_vector {
  position: absolute;
  bottom: 100%;
}
.speeial_text span {
  font-size: 70px;
  font-weight: 900;
  font-family: "Titan One", sans-serif;
  color: #fb5a41;
}
.speeial .img {
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 4s;
}
.shape {
  position: absolute;
  top: 0;
  left: 10%;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}
@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0);
  }

  50% {
    transform: rotateX(0deg) translateY(-20px);
  }

  to {
    transform: rotateX(0deg) translateY(0);
  }
}
.sp {
  position: relative;
  z-index: 9;
}
.speeial_text {
  padding-left: 10%;
}

.why_box {
  text-align: left;
  margin-bottom: 50px;
}
.why_box_1 {
  text-align: right;
}
.why_box span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary_bg);
}
.swewt_con {
  text-align: center;
  margin-top: 30px;
}
.swewt_con span {
  font-size: 25px;
  font-weight: 800;
  display: block;
}
.swewt_con p {
  margin-top: 20px;
}

.testmonial {
  position: relative;
}

.test_item .row {
  align-items: center;
}

.test_img {
  padding: 30px;
  position: relative;
  text-align: center;
}

.circles {
  position: absolute;
  width: 200px;
  left: 0;
  top: 0;
  z-index: -1;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

.pattern {
  position: absolute;
  right: 0;
  width: 100px;
  top: 50px;
  z-index: -1;
  animation-name: ribbonRotate;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.pattern-2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: auto;
  opacity: 0.7;
}

.shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 4s;
}

.test_item p {
  color: #000;
  line-height: 35px;
}

.test_item .name {
  color: #03226a;
  font-weight: 600;
  font-size: 18px;
}

.test_item {
  text-align: left;
  padding: 30px;
}

@keyframes ribbonRotate {
  0%,
  to {
    transform: rotate(0);
  }

  25%,
  75% {
    transform: rotate(360deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.test_item .img1 img {
  border-radius: 50%;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 5s;
}

@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0);
  }

  50% {
    transform: rotateX(0deg) translateY(-20px);
  }

  to {
    transform: rotateX(0deg) translateY(0);
  }
}

.install_box {
  background-color: var(--black);
  padding: 120px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.install_box .shapes {
  position: absolute;
  width: auto;
}
.install_box .big_head {
  color: var(--white);
}
.shapes_1 {
  left: 0;
  top: 0;
}
.shapes_2 {
  right: 0;
  bottom: 0;
}
.shapes_3 {
  left: 5%;
  bottom: 10%;
  animation: rotate-animation 15s infinite linear;
}
.shapes_4 {
  right: 5%;
  top: 10%;
  animation: rotate-animation 15s infinite linear;
}
.in_btn {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}
.in_btn a {
  font-size: 35px;
  color: var(--primary);
}
.in_btn a i {
  background-color: var(--primary);
  border-radius: 50%;
  padding: 10px;
  font-size: 25px;
  color: var(--white);
}
.install_box .big_head {
  font-size: 40px;
  position: relative;
  z-index: 9;
}

.all_btn {
  background-color: var(--primary_bg);
  color: var(--white);
  padding: 13px 33px;
  border-radius: 5px;
}
.all_btn:hover {
  background-color: var(--primary);
}
.contact_detail {
  background-color: var(--primary_bg);
  padding: 35px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.button{
     background-color: var(--primary_bg);
  color: var(--white);
  padding: 13px 33px;
  border-radius: 5px; 
}

.button:hover {
  background-color: var(--primary);
}

/*.contact_detail::after {*/
/*  content: "";*/
/*  background-color: var(--black);*/
/*  width: 200px;*/
/*  height: 200px;*/
/*  position: absolute;*/
/*  right: -50px;*/
/*  bottom: -60px;*/
/*  border-radius: 50%;*/
/*}*/

.c_head {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Figtree", sans-serif;
}

.contact_detail a {
  color: #fff;
}

.contact_detail li {
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 9;
}

.contact_detail i {
    font-size: 14px;
    margin-right: 10px;
    background: #352f3d;
    padding: 10px;
    border-radius: 4px;
}

form {
  padding: 0 30px;
}

form input,
select,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #575757;
  padding: 12px 0;
  margin-bottom: 15px;
  outline: none;
}

.contact_page form button {
  border: none;
  margin-top: 10px;
}

.cont_form {
  /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
  padding: 10px 0;
  border-radius: 10px;
}
.cont_form form{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding:30px;
}

.Get_touch {
  font-size: 35px;
  font-weight: 600;
  color: var(--primary);
  display:none;
}

.contact_detail p {
  color: #fff;
}

.foot_bg {
  background-color: #000000;
  padding-top: 40px;
  text-align: left;
}

.foot_head {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.foot_con li {
  margin: 20px 0;
  display: flex;
  color: #848e9f;
}
.foot_con .socal_media {
  justify-content: left;
}
.foot_con li a {
  color: #848e9f;
}

.foot_con li i {
    font-size: 14px;
    margin-right: 10px;
    background: #352f3d;
    padding: 10px;
    border-radius: 4px;
}

.foot_nav2 ul li {
  margin: 15px 0;
  font-size: 15px;
}

.foot_nav2 ul {
  height: 220px;
  overflow: auto;
}

.foot_nav2 ul li a {
  color: #848e9f;
}

.foot_nav2 ul li a:hover {
  color: var(--primary);
}

.foot_nav ul li a:hover {
  color: var(--primary);
}

.foot_nav2 {
  padding-left: 80px;
}

.foot_logo img {
  width: 120px;
}

.foot_ab p {
  font-size: 15px;
}

.foot_nav ul li {
  margin: 8px 0;
  font-size: 15px;
}

.foot_nav ul li a {
  color: #848e9f;
}

.foot_ab {
  padding: 30px 0;
  border-bottom: 1px solid #383838;
  margin-bottom: 50px;
}
.foot_bg p {
  color: var(--white);
}

.copyright p {
  margin-bottom: 0;
  padding: 10px;
  color: #fff;
}

.copyright {
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid #383838;
}
.copyright p a {
  color: var(--white);
  text-decoration: overline !important;
}











/* ///////////////////////////////////////////// */

.main_img {
  width: 50%;
  float: left;
  padding-right: 40px;
}

.inner_header {
  position: relative;
  margin-bottom: 50px;
}
.marcket_plase a {
  display: block;
  margin: 5px 0;
}
.inner_header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000000b0;
}
.inner_header img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.inner_text {
  position: absolute;
  width: 100%;
  top: 40%;
  text-align: center;
  z-index: 9;
  color: var(--white);
}
.inner_hrad {
  font-size: 35px;
  font-weight: 800;
}
.brade_crom {
  font-size: 20px;
}
.brade_crom a {
  color: var(--white);
}


.static-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: end;
  z-index: 9;
}
.static-cta-phone a {
  background-color: #0d239a;
  padding: 8px 20px;
  border-radius: 20px 0px 20px 0px;
  color: #fff;
  font-size: 15px;
  transition: 0.2s;
}
.static-cta-whats a {
  background-color: #075e54;
  padding: 8px 20px;
  border-radius: 20px 0px 20px 0px;
  color: #fff;
  font-size: 15px;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  .inner_header img {
    height: 282px;
  }
  .inner_hrad {
    font-size: 30px;
  }
  .brade_crom {
    font-size: 17px;
  }
  .main_img {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 15px;
  }
  .my {
    margin: 50px 0;
  }
}
/* ///////////////////////////////////////////// */




@media only screen and (max-width: 995px) {
  .shape {
    width: 85%;
  }
  .foot_nav2 {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 900px) {
  .togal {
    display: block;
  }

  nav {
    padding-right: 8px;
  }

  .nav_bar {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    display: none;
  }

  .nav_bar .nav_bar_nav {
    flex-direction: column;
  }

  .nav_bar .nav_bar_nav li {
    padding: 11px 5px;
  }

  .clk_btn {
    top: 10px;
    width: 45px;
    text-align: center;
  }

  .nav_bar_nav .droupdown {
    position: revert;
    width: 100%;
    display: none;
  }

  .nav_bar_nav .droupdown li {
    padding: 3px 5px;
  }

  .nav_bar_n {
    padding: 8px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .ab_img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  nav::after {
    top: 97%;
  }
  .head_2 {
    font-size: 25px;
  }
  .head_1 {
    font-size: 18px;
  }
  .speeial_text {
    padding-left: 0;
  }
  .speeial_text span {
    font-size: 42px;
  }
  .speeial {
    padding: 150px 0 89px;
  }
  .why_box_1 {
    text-align: left;
  }
  form {
    margin-top: 10px;
  }
  .install_box {
    padding: 111px 40px;
  }
  .install_box .big_head {
    font-size: 30px;
  }
  .in_btn a {
    font-size: 30px;
  }
  .foot_nav2 {
    margin-top: 10px;
  }
  .main_img {
    width: 100%;
    padding-right: 0px;
  }
  .product {
    margin-top: 68px;
  }
  .foot_nav2 ul{
    height: auto;
    overflow: auto;
}
}

@media only screen and (max-width: 500px) {
  .product {
    padding: 37px 0 74px;
    margin-top: 45px;
  }
  .top_contact {
    justify-content: center;
  }
  .socal_media {
    justify-content: center;
  }
  .logo img {
    width: 76px;
  }
  .head_btn {
    display: none;
  }
}






/* width */
.foot_nav2 ::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.foot_nav2 ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.foot_nav2 ::-webkit-scrollbar-thumb {
  background: #075e54; 
  border-radius: 10px;
}
