/* Googlefont Poppins CDN Link */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
  --text-01: #0054b5;
  --light-01: #f0f0f0;
  --brand-01: #004592;
  --brand-02: #fff;
  --yellow-dark: #ffa600;
  --yellow-light: #fceabb;
  --card-hover: 0px 4px 24px rgba(0, 0, 0, 0.15);
  --card-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  --hover-timing: all 0.2s ease;
  --nav-card-size: 240px;
  --white-100: #fff;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  transition: var(--hover-timing);
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: var(--hover-timing);
  background: var(--light-01);
  width: 100vw;
  overflow-x: hidden;
}

p {
  font-size: 1rem !important;
  font-weight: 300 !important;
}

li {
  font-size: 1rem !important;
  font-weight: 400 !important;
}

/* globle components Start */
/* -------------------------------------------- */
/* ----------------Primery Button----------------- */
/* -------------------------------------------- */

.move-top {
  width: 50px;
  height: 50px;
  background: #000;
  position: fixed;
  z-index: 1111;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  i {
    color: #fff;
    font-size: 20px;
  }
}

.btn-donate {
  border: none;
}

.btn-donate a {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  font-size: var(--size, 1rem);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5),
    0px 5px 5px -1px rgba(58, 125, 233, 0.25),
    inset 4px 4px 8px rgba(175, 230, 255, 0.5),
    inset -4px -4px 8px rgba(19, 95, 216, 0.35);
  text-decoration: none;
}

.btn-donate a:hover {
  background-position: right top;
}

.btn-donate a:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
  .btn-donate a {
    transition: linear;
  }
}

/* -------------------------------------------- */
/* ----------------Second Button--------------- */
/* -------------------------------------------- */

.btn-second {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 0.5rem 1.5rem;
  position: relative;
  z-index: 111;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-border-radius: 25px;
  margin: 5px 5px;
}

.btn-second:hover {
  color: var(--brand-01);
}

.btn-second:hover::after {
  bottom: 0;
}

.btn-second::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: var(--yellow-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in-out;
}

/* -------------------------------------------- */
/* ----------------Buttons thired-------------- */
/* -------------------------------------------- */

.btn-third {
  color: #fff;
  background: var(--brand-01);
  /* border: 2px solid var(--yellow-dark); */
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 0.5rem 1.5rem;
  position: relative;
  z-index: 111;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-border-radius: 5px;
  margin: 5px 5px;
  overflow: hidden;
}

.btn-third:hover {
  color: var(--brand-01);
}

.btn-third:hover::after {
  bottom: 0;
}

.btn-third::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: var(--yellow-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in-out;
}

.buttonDownload {
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  background-color: #4cc713;
  color: white;
  font-family: sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  text-align: center;
  text-indent: 15px;
  border: none;
}

.buttonDownload:hover {
  background-color: #45a21a;
  color: white;
}

.buttonDownload:before,
.buttonDownload:after {
  content: " ";
  display: block;
  position: absolute;
  left: 15px;
  top: 52%;
}

.buttonDownload:before {
  width: 10px;
  height: 2px;
  border-style: solid;
  border-width: 0 2px 2px;
}

.buttonDownload:after {
  width: 0;
  height: 0;
  margin-left: 1px;
  margin-top: -7px;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: transparent;
  border-top-color: inherit;
  animation: downloadArrow 1s linear infinite;
  animation-play-state: paused;
}

.buttonDownload:hover:before {
  border-color: #cdefbd;
}

.buttonDownload:hover:after {
  border-top-color: #cdefbd;
  animation-play-state: running;
}

@keyframes downloadArrow {
  0% {
    margin-top: -7px;
    opacity: 1;
  }

  0.001% {
    margin-top: -15px;
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    margin-top: 0;
    opacity: 0.4;
  }
}

/* docoments btn */

.Documents-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  height: 45px;
  border: none;
  padding: 0px 15px;
  border-radius: 5px;
  background-color: var(--brand-01);
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.folderContainer {
  width: 40px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.fileBack {
  z-index: 1;
  width: 80%;
  height: auto;
}

.filePage {
  width: 50%;
  height: auto;
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.fileFront {
  width: 85%;
  height: auto;
  position: absolute;
  z-index: 3;
  opacity: 0.95;
  transform-origin: bottom;
  transition: all 0.3s ease-out;
}

.text {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.Documents-btn:hover .filePage {
  transform: translateY(-5px);
}

.Documents-btn:hover {
  opacity: 0.9;
}

.Documents-btn:hover .fileFront {
  transform: rotateX(30deg);
}

/* globle components End */
/* Navigation */

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* .section {
        margin: 0 auto;
        padding: 6rem 0 2rem;
    } */

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  border-radius: 0.25rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  color: #fff;
  background-color: var(--brand-01);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  padding: 0.75rem 1.5rem;
  color: #fff;
  background-color: var(--night-300);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  margin: 0 auto;
  background-color: var(--brand-01);
  box-shadow: var(--shadow-medium);
}

.darkmode .header {
  background-color: var(--night-300);
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--brand-01);
  text-transform: uppercase;
  order: 1;
}

/* .darkmode .brand {
        color: var(--brand-01);
    } */

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 0 0 17%;
  padding: 0px 1rem !important;
}

.navbar-center {
  display: flex;
  padding: 0px !important;
}

/* 
    .navbar-right {
        display: flex;
        flex: 0 0 17%;
        align-items: center;
        justify-content: flex-end;
        column-gap: 1.5rem;
    } */

@media only screen and (max-width: 992px) {
  .navbar-left,
  .navbar-right {
    flex: 0 0 auto;
  }

  .navbar-right {
    align-items: center;
  }

  .navbar-center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
  }
}

@media only screen and (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    transform: translate(-100%);
    background-color: var(--brand-01);
    transition: all 0.4s ease-in-out;
  }

  .menu.is-active {
    transform: translate(0%);
  }

  .darkmode .menu {
    background-color: var(--night-300);
  }
}

.menu-header {
  display: none;
  box-shadow: var(--shadow-medium);
}

.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding-right: 1.25rem;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* .menu-link>i.bx {
        font-size: 1.35rem;
        margin-left: 0.25rem;
        transform: rotate(90deg);
    } */

.darkmode .menu-link {
  color: #fff;
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--black-300);
  transition: all 0.25s ease;
}

.darkmode .menu-icon {
  color: #fff;
}

@media only screen and (min-width: 993px) {
  .menu-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 992px) {
  .menu-header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }

  .menu-header.is-active {
    visibility: visible;
    background-color: #fff;
  }

  .menu-header.is-active > .menu-arrow {
    display: block;
  }

  .darkmode .menu-header.is-active {
    background-color: var(--night-100);
  }

  .menu-arrow {
    display: none;
    cursor: pointer;
    width: 3rem;
    height: 4rem;
    text-align: center;
  }

  .menu-arrow > i.bx {
    font-size: 1.5rem;
    line-height: 4rem;
    color: var(--black-300);
    transition: all 0.25s ease;
  }

  .darkmode .menu-arrow > i.bx {
    color: #fff;
  }

  .menu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--black-300);
  }

  .darkmode .menu-title {
    color: #fff;
  }

  .menu-inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
    text-transform: capitalize !important;
  }

  .menu-link {
    justify-content: space-between;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }

  .menu-link > i.bx {
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}

.submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 2px solid #fff;
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease-in-out;
}

.darkmode .submenu {
  border-top: 2px solid #fff;
  background-color: var(--night-300);
}

.submenu-inner {
  flex: 0 0 50%;
  padding: 0 1rem;
}

.submenu-title {
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem 1rem;
  color: var(--brand-01);
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--yellow-dark);
  border-top: 2px solid var(--yellow-dark);
  margin: 0.5rem 0rem;
  text-align: center;
}

.darkmode .submenu-title {
  color: var(--brand-01);
}

.submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
  text-align: start;
  border-bottom: 1px solid #ccc;
}
.submenu-item:last-child {
  border: none !important;
}

.submenu-link {
  font-size: 14px !important;
  display: inline-block;
  padding: 0.8rem 0;
  text-transform: capitalize;
  color: #222;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.submenu-link:hover {
  color: var(--yellow-dark);
}

.submenu-link:hover .submenu-image {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.submenu-image {
  display: block;
  width: 200px;
  height: auto;
  margin-block: 0.5rem;
  margin-bottom: 2rem;
  object-fit: cover;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 1px solid #ccc;
}

/* 
    .submenu-image:hover {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    } */

@media only screen and (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }

  .submenu.is-active {
    display: block;
  }

  .submenu-inner {
    flex: 0 0 100%;
    padding: 0rem;
  }

  .submenu-list {
    margin-bottom: 1rem;
  }

  .submenu-link {
    display: block;
  }

  .submenu-image {
    margin-top: 0;
  }
}

.megamenu {
  left: 50%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
}

.megamenu-column-1 {
  left: 65%;
  max-width: 15rem;
  width: 100%;
  height: auto;
  background: radial-gradient(
    circle,
    rgba(188, 216, 255, 1) 0%,
    rgba(237, 237, 237, 1) 100%
  );
}

.megamenu-column-4 {
  display: flex;
  flex-wrap: wrap;
  max-width: 35rem;
  height: auto;
  background: radial-gradient(
    circle,
    rgba(188, 216, 255, 1) 0%,
    rgba(237, 237, 237, 1) 100%
  );
}

@media only screen and (max-width: 992px) {
  .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  margin-right: 0.5rem;
}

.switch-light,
.switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}

.switch-light {
  font-size: 1.3rem;
  visibility: visible;
  color: var(--black-300);
}

.darkmode .switch-light {
  font-size: 0rem;
  visibility: hidden;
}

.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: #fff;
}

.darkmode .switch-dark {
  font-size: 1.3rem;
  visibility: visible;
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 1.6rem;
  height: 1rem;
  margin-right: 1rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

@media only screen and (max-width: 992px) {
  .burger {
    opacity: 1;
    visibility: visible;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 1rem;
  background: var(--yellow-light);
}

.darkmode .burger-line {
  background: #fff;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

/* nav  End*/
/* hero main Section  Start */

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

main {
  position: relative;
  min-height: 100vh;
  column-gap: 3rem;
  padding: 2.3em;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    60deg,
    rgba(84, 58, 183, 1) 0%,
    rgba(0, 172, 193, 1) 100%
  );
  /* overflow: hidden; */
  padding-top: 125px;
}

@media screen and (min-width: 960px) {
  main {
    display: flex;
    padding-inline: 0;
  }
}

.product-img img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

main .content {
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 3em;
  height: auto;
  text-align: start;
  background: transparent;
}

@media screen and (min-width: 960px) {
  main .content {
    width: 40%;
    padding-left: 5em;
    margin-bottom: 0;
    background: transparent;
  }
}

main h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0px;
  line-height: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #fceabb;
  background: linear-gradient(
    to right,
    #fceabb 0%,
    #fccd4d 50%,
    #f8b500 51%,
    #fbdf93 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main p {
  font-size: 1rem;
  line-height: 1.8;
  margin-inline: auto;
  margin-top: 10px;
}

main .counter {
  font-weight: 400;
  display: flex;
  align-items: center;
  margin: 2.5em 0 2em 0;
  gap: 2em;
}

main .counter i {
  margin-right: 10px;
}

main .counter span {
  display: block;
  text-transform: capitalize;
  font-size: 0.8rem;
  color: #c1c1c1;
  margin-top: 3px;
}

main .btn i {
  margin-left: 15px;
}

.swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  right: 0px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .swiper-container {
    width: 60%;
    right: -60px;
  }
}

.swiper {
  position: relative;
  width: 100%;
  z-index: 2;
}

.swiper-slide {
  width: 10rem;
  height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  border-radius: 12px;
  box-shadow: -1px 5px 15px #000 1f;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.4s ease-in;
}

.swiper-slide span {
  display: inline-block;
  background: rgb(255, 1, 1);
  border-radius: 0 50px 50px 0;
  text-transform: capitalize;
  padding: 2px 10px;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: absolute;
  top: 1em;
  left: 0;
  color: #fff;
}

.swiper-slide h3 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  letter-spacing: 0.8px;
  position: relative;
  word-wrap: break-word;
}

@media screen and (min-width: 800px) {
  .swiper-slide h3 {
    font-size: 1.5rem;
  }
}

.swiper-slide p {
  color: #fff;
  line-height: 1.6;
  font-size: 0.8rem;
}

.swiper-slide .slide-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -10px);
  width: 90%;
}

/* <!-- -------- --> */

.swiper-slide--one {
  background: url("../Images/slider/tuki\ Emis.png") no-repeat 50% 50% / cover;
}

.swiper-slide--one h3 {
  font-weight: 300;
}

/* <!-- -------- --> */

.swiper-slide--two {
  background: url("../Images/slider/nyayik\ samita.png") no-repeat 50% 50% /
    cover;
}

.swiper-slide--two h3 {
  font-weight: 300;
}

/* <!-- -------- --> */

.swiper-slide--three {
  background: url("../Images/slider/apang\ parichai\ patra.png") no-repeat 50%
    50% / cover;
}

.swiper-slide--three h3 {
  font-weight: 300;
}

/* <!-- -------- --> */

.swiper-slide--four {
  background: url("../Images/slider/nyayik\ samita.png") no-repeat 50% 50% /
    cover;
}

.swiper-slide--four h3 {
  font-weight: 400;
}

/* <!-- -------- --> */

.swiper-slide--five {
  background: url("../Images/slider/cci.png") no-repeat 50% 50% / cover;
}

.swiper-slide--five h3 {
  font-weight: 400;
}

.swiper-slide--six {
  background: url("../Images/slider/jaban.png") no-repeat 50% 50% / cover;
}

.swiper-slide--six h3 {
  font-weight: 400;
}

.swiper-slide-active {
  display: grid;
  opacity: 1;
}

.swiper-pagination {
  position: relative;
  bottom: -0.313rem;
  text-align: center;
  margin-top: 35px;
  width: auto;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 10px;
  background: #fff;
  border-radius: 50px;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.content button {
  margin-top: 1.6rem;
}

.circle {
  position: absolute;
  bottom: -5em;
  left: -8em;
  width: clamp(150px, 40vw, 400px);
  height: clamp(150px, 40vw, 400px);
  background: rgba(255, 231, 12, 0.715);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.7;
  animation-name: gooey;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  filter: blur(25px);
}

@keyframes gooey {
  from {
    filter: blur(20px);
    transform: translate(15%, -15%) skew(0);
    -webkit-transform: translate(15%, -15%) skew(0);
    -moz-transform: translate(15%, -15%) skew(0);
    -ms-transform: translate(15%, -15%) skew(0);
    -o-transform: translate(15%, -15%) skew(0);
  }

  to {
    filter: blur(30px);
    transform: translate(-15%, 20%) skew(-12deg);
    -webkit-transform: translate(-15%, 20%) skew(-12deg);
    -moz-transform: translate(-15%, 20%) skew(-12deg);
    -ms-transform: translate(-15%, 20%) skew(-12deg);
    -o-transform: translate(-15%, 20%) skew(-12deg);
  }
}

/* hero main Section  End */

.card-large,
.card-med {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--hover-timing);
  cursor: pointer;
}

.card-large {
  box-shadow: var(--card-shadow);
  border-radius: 12px;
  overflow: hidden;
}

.card-large:hover {
  box-shadow: var(--card-hover);
  transform: scale(1.01);
}

.card-med:hover .card-image {
  transform: scale(1.01);
}

/*__------------------------------ products style start __------------------------------*/

.shell::-webkit-scrollbar {
  display: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.product-raw {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  justify-self: center;
  gap: 1rem;
}

.product-raw .col-md-3 {
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.wsk-cp-product {
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  position: relative;
  margin: 15px auto;
  cursor: pointer;
  overflow: hidden;
}

.hov {
  padding: 0.5rem 1rem;
  background: #fff !important;
  color: #000 !important;
  transform: scale(0.95) !important;
  border-radius: 25px !important;
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  -o-border-radius: 25px !important;
  -webkit-transform: scale(0.95) !important;
  -moz-transform: scale(0.95) !important;
  -ms-transform: scale(0.95) !important;
  -o-transform: scale(0.95) !important;
  border: none !important;
}

.hov a {
  font-weight: 400 !important;
}

.hov:hover {
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
  -moz-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  -o-transform: scale(1) !important;
}

.wsk-cp-product:hover .wsk-cp-img img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.wsk-cp-product:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.wsk-cp-img {
  padding: 0px;
}

.wsk-cp-text {
  position: absolute;
  width: 100%;
  background: #004492bd;
  color: var(--brand-02);
  backdrop-filter: blur(5px);
  bottom: -325px;
  left: 0px;
  transition: all 0.3s ease;
}

.wsk-cp-img img {
  width: 100%;
  border-radius: 6px;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transition: all 0.3s ease;
}

.wsk-cp-product:hover .wsk-cp-text {
  bottom: 0px;
  /* box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22); */
}

.wsk-cp-text .category > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
}

.wsk-cp-text .category > span {
  padding: 12px 30px;
  border: 1px solid #313131;
  background: #212121;
  color: #fff;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  border-radius: 27px;
  transition: all 0.05s ease-in-out;
}

.wsk-cp-product:hover .wsk-cp-text .category > span {
  border-color: #ddd;
  box-shadow: none;
  padding: 11px 28px;
}

.wsk-cp-product:hover .wsk-cp-text .category {
  margin-top: 0px;
}

.wsk-cp-text .title-product {
  text-align: center;
  margin-top: 0px;
  padding: 1rem;
  color: var(--yellow-dark);
}

.wsk-cp-text .title-product h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px auto;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 1rem;
}

.wsk-cp-text .description-prod p {
  margin: 0;
}

/* Truncate */

.wsk-cp-text .description-prod {
  width: 100%;
  padding: 0rem 1.5rem;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .wsk-cp-product .wsk-cp-img {
    top: -40px;
  }

  .wsk-cp-product .wsk-cp-img img {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  }

  .wsk-cp-product .wsk-cp-text .category > span {
    border-color: #ddd;
    box-shadow: none;
    padding: 10px 28px;
  }

  .wsk-cp-product .wsk-cp-text .category {
    margin-top: 0px;
  }

  a.btnbuy- {
    border-color: #ff9800;
    background: #ff9800;
    color: #fff;
  }
}

@media screen and (width: 550px) {
  .wsk-cp-product {
  }
}

/* products style end */

.card-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.card-large > .card-image {
  aspect-ratio: 3/2;
}

.card-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: contain;
}

.card-large a {
  text-decoration: none;
  font-weight: 600;
}

.card-large > .card-image > a {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  font-size: 24px;
  line-height: 1.2;
}

.card-large > ul {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
  color: var(--text-01);
  padding: 0 40px 40px;
  font-size: 28px;
  font-weight: 600;
}

.card-large > ul > li a {
  line-height: 32px;
  font-size: 14px;
  /*    border: 1px solid red;*/
}

.card-large#sup-dog,
.card-med#sup-dog > .card-image {
  background: linear-gradient(45deg, #463631 0%, #976c5b 100%);
}

button.btn-outline {
  color: var(--light-01);
  border-color: var(--light-01);
}

.card-large#sup-cat,
.card-med#sup-cat > .card-image {
  background: linear-gradient(45deg, #f6ae6c 0%, #ecbd73 100%);
}

.card-large#sup-bird,
.card-med#sup-bird > .card-image {
  background: linear-gradient(45deg, #efefef 0%, #f2f2f2 100%);
}

.card-large#sup-fish,
.card-med#sup-fish > .card-image {
  background: linear-gradient(45deg, #1e4782 0%, #709ddf 100%);
}

.card-large.card-dark a,
.card-large.card-dark > ul {
  color: var(--text-01);
}

.card-large.card-light a,
.card-large.card-light > ul {
  color: var(--light-01);
}

/* section, */

footer {
  position: relative;
  width: 100%;
  padding: 0 var(--pg-margin);
}

.card-med {
  width: var(--nav-card-size);
  height: auto;
  /*    border: 1px solid green;*/
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.card-med > a {
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  padding: 12px 16px 0px;
}

.card-med > a > span {
  width: 100%;
  /*    border: 1px solid blue;*/
}

.card-med > a > span:nth-of-type(1) {
  width: 100%;
  /*    border: 1px solid blue;*/
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.card-med > a > span:nth-of-type(2) {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 6px;
}

.card-med > a > span:nth-of-type(2) > span {
  font-size: 18px;
}

#serv-groom > .card-image {
  background: linear-gradient(45deg, #45828c 0%, #a7d4d8 100%);
}

#serv-board > .card-image {
  background: linear-gradient(45deg, #eddaa9 0%, #b87d93 100%);
}

.card-med:hover .card-image {
  box-shadow: var(--card-hover);
}

.card-med > .card-image {
  box-shadow: var(--card-shadow);
}

.card-med > .card-image > img {
  width: 80%;
  height: 80%;
  /*    border: 1px solid red;*/
}

section:not(.hero) {
  padding: calc(1rem) var(--pg-margin);
}

section h2 {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: var(--text-01);
  margin-bottom: 2rem;
  text-transform: capitalize !important;
  margin-top: 1rem !important;
}

/* section h2::after {
    font-size: 12px;
    position: absolute;
    content: 'Eagle Eye IT Service';
    left: 50%;
    top: 140%;
    color: #111;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
} */

section h2::before {
  position: absolute;
  content: "";
  width: 175px;
  height: 3px;
  background: var(--yellow-light);
  left: 50%;
  top: 110%;
  -webkit-border-radius: 25px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.card-wide {
  flex-direction: row;
  padding: 0;
}

.card-wide .card-image {
  width: 50%;
  border-radius: 0;
}

.card-image img {
  width: 80%;
  height: 80%;
}

.card-wide > ul {
  padding: 40px;
}

.card-wide > ul > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-gap: 24px;
  margin-bottom: 16px;
}

.card-wide .subtitle {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 24px;
}

.card-wide > ul > li span {
  font-size: 16px;
}

.card-large > ul > li:last-of-type {
  margin-bottom: 40px;
}

.card-large button {
  margin-top: auto;
}

#locate {
  width: 90%;
  margin: 0px auto;
  border-radius: 12px;
  transition: var(--hover-timing);
  background: var(--brand-02);
  padding: 2rem 3rem;
}

#locate .main-contact {
  display: flex;
  transition: var(--hover-timing);
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0rem 1rem;
}

#locate h2 {
  margin-top: 0;
}

.btn-group {
  display: flex;
  padding: 1rem;
}

.btn-group button a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

#locate span {
  font-weight: 600;
  color: var(--brand-01);
}

#locate h5 {
  font-size: 1.2rem;
  color: var(--brand-01);
  font-weight: 600;
}

#locate a {
  color: yellow;
}

#locate i {
  font-size: 1.5rem;
  margin: 0px 2px;
  color: var(--text-01);
  padding: 5px;
  border-radius: 5px;
  font-weight: 400;
  line-height: 1.3rem;
}

#locate p {
  text-align: start;
  margin-bottom: 0px;
  padding: 0px 0px 5px 0px;
}

#locate .left {
  width: 50%;
}

#locate .right {
  width: 40%;
}

/**
* ----------------------------------------
* footer Style
* ----------------------------------------
*/

footer {
  background: var(--text-01);
  padding: 80px 80px 0px;
  margin-top: 80px;
  display: flex;
}

#footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

#footer-main {
  width: 100%;
  background-color: var(--brand-01);
  padding-top: 2rem;
  align-items: center;
  display: flex;
  justify-content: center;
}

#footer a {
  text-decoration: none;
  color: var(--yellow-light);
}

#footer p {
  text-decoration: none;
  color: #fff;
}

/**
* ----------------------------------------
* wave style Footer
* ----------------------------------------
*/

.inner-header {
  height: 20vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  margin-bottom: -7px;
  min-height: 40px;
  max-height: 70px;
}

.content {
  position: relative;
  height: 10vh;
  text-align: center;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

/**
* ----------------------------------------
* Key frame of Waves style
* ----------------------------------------
*/

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/

@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 600px) {
  section.hero {
    aspect-ratio: 1/1;
    padding-top: 64px;
  }

  section.hero h1 {
    --hero-text: 40px;
    width: 80%;
  }

  section.hero {
    background-size: 85%;
    background-position: 360% 60%;
  }

  nav {
    position: relative;
  }

  nav ul.navigation-menu {
    position: absolute;
    position: absolute;
    top: 64px;
    background: var(--light-01);
    left: 0;
    z-index: -1;
    width: 100vw;
  }

  nav ul.navigation-menu li a {
    font-size: 16px;
    /*        padding: 0 12px;*/
    white-space: nowrap;
  }

  nav ul.navigation-menu .subnav {
    display: none;
  }

  nav ul.navigation-menu > li:hover .subnav {
    display: none;
  }

  .btn-group {
    flex-direction: column;
  }

  .services > li {
    display: flex;
    flex-direction: column;
  }

  .services > li > .card-image {
    width: 100%;
  }

  section:not(.hero) {
    padding: var(--pg-margin);
  }

  #locate p {
    width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  #locate .main-contact {
    flex-direction: column;
  }

  #locate p {
    font-size: 12px !important;
  }

  #locate .left {
    width: 100%;
  }

  #locate .right {
    width: 100%;
  }

  .move-top {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  :root {
    --pg-margin: 48px;
  }

  section.hero h1 {
    --hero-text: 48px;
  }

  section.hero {
    aspect-ratio: 2/1;
  }

  .btn-group {
    flex-direction: row;
  }

  ul.subnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: auto auto;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 48px;
  }

  nav ul.navigation-menu {
    top: 0;
    z-index: 1;
    background: none;
    width: auto;
    position: relative;
  }

  nav ul.navigation-menu .subnav {
    display: flex;
  }

  nav ul.navigation-menu > li:hover .subnav {
    display: flex;
  }

  footer {
    flex-direction: row;
    text-align: left;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
  :root {
    --pg-margin: 80px;
  }

  section.hero h1 {
    --hero-text: 56px;
  }

  nav .navigation-menu > li > ul.subnav {
    padding: 48px;
    grid-gap: 24px;
  }

  section.hero {
    aspect-ratio: 3/1;
    background-size: 30%;
    background-position: 90% 60%;
  }

  .shop-pets,
  .services {
    display: flex;
    flex-direction: row;
    grid-gap: 24px;
  }

  nav ul.navigation-menu {
    top: 0;
    z-index: 1;
    background: none;
    width: auto;
    position: relative;
  }

  x ul.subnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: auto auto;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 48px;
  }

  nav ul.navigation-menu > li:hover .subnav {
    display: grid;
  }

  footer {
    flex-direction: row;
    text-align: left;
  }
}

/* product tview design */

.product-view {
  width: 100%;
  /* height: 60vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  position: relative;
  padding: 2rem 5rem;
  border-radius: 10px;
  margin-top: 4rem;
}

.product-view .product-detail {
  width: 65%;
  display: flex;
  flex-direction: column;
}
.product-descrip {
  font-size: 1.2rem !important;
  font-weight: 400 !important;
}

.product-detail h1 {
  font-size: 4rem;
  color: var(--brand-01);
  font-weight: 600;
}

.product-detail p {
  width: 80%;
  color: #4a4a4a;
}

.product-view .product-img {
  height: auto;
  object-fit: cover;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.product-img img:hover {
  transform: scale(0.98);
  -webkit-transform: scale(0.98);
  -moz-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -o-transform: scale(0.98);
}

.product-view .product-img img {
  width: 350px;
  height: auto;
  object-fit: cover;
}

.product-butons {
  display: flex;
  flex-direction: column;
}
.product-butons h4 {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0px !important;
}

/* products Specification desighs */

.product-specification {
  width: 100%;
  background: #fff;
  position: relative;
  padding: 0rem 5rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.product-specification h2 {
  text-align: center;
  /* padding: 20px 0; */
  padding-top: 2rem;
}

.product-specification .table-bordered {
  border: 1px solid #ddd !important;
}
.product-specification table th {
  background-color: var(--brand-01);
  color: var(--yellow-dark);
}

.product-specification table caption {
  padding: 0.5em 0;
}

@media screen and (max-width: 767px) {
  table caption {
    display: none;
  }

  .product-view {
    width: 100%;
    height: auto;
    width: 100%;
    padding: 0px;
    flex-direction: column-reverse;
    font-size: 12px;
  }

  .product-detail {
    width: 100% !important;
    padding: 1rem 2rem;
  }

  .product-detail h1 {
    font-size: 2rem;
  }

  .product-detail .btn-group,
  .product-detail .btn-group a {
    align-items: center;
    margin-left: 0px;
  }

  .product-specification {
    display: flex;
    font-size: 12px;
    flex-direction: column;
    padding: 0px 1rem;
  }

  .product-img img {
    width: 80vw;
  }

  .pproduct-specification {
    margin-bottom: 1rem !important;
  }

  #booknow .container {
    width: 100% !important;
  }

  /* #booknow {
            height: 65vh !important;
        } */
  .product-specification .p {
    text-align: center;
    padding-top: 140px;
    font-size: 14px;
  }
}

/* book now style form */

#booknow {
  width: 90%;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  height: 105vh;
  -webkit-border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
}

#booknow .container {
  width: 70%;
  /* background-color: #fff; */
  /* padding: 25px 30px; */
  /* height: 100%; */
  /* margin: 0px auto; */
}

#booknow .content form .user-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}

form .user-details .input-box {
  margin-bottom: 15px;
  width: calc(100% - 20px);
}

form .user-details .input-box select,
option {
  margin-bottom: 15px;
  width: calc(100% - 20px);
  height: 45px;
  width: 100%;
  outline: none;
  font-size: 16px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

form .input-box span.details {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: start;
}

.user-details .input-box input {
  height: 45px;
  width: 100%;
  outline: none;
  font-size: 16px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

.user-details .input-box input:focus,
.user-details .input-box input:valid {
  border-color: #9b59b6;
}

form .gender-details .gender-title {
  font-size: 20px;
  font-weight: 500;
}

form .category {
  display: flex;
  width: 80%;
  margin: 14px 0;
  justify-content: space-between;
}

form .category label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 584px) {
  #booknow .container {
    max-width: 100%;
  }

  form .user-details .input-box {
    margin-bottom: 15px;
    width: 100%;
  }

  form .category {
    width: 100%;
  }

  /* #booknow .content form .user-details {
            max-height: 300px;
            overflow-y: scroll;
        } */
  .user-details::-webkit-scrollbar {
    width: 5px;
  }
}

@media (max-width: 459px) {
  #booknow .container .content .category {
    flex-direction: column;
  }
}

/* scrollbar style */
/*
 *  STYLE 8
 */

#style-8::-webkit-scrollbar-track {
  border: 1px solid black;
  background-color: #f5f5f5;
}

#style-8::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-8::-webkit-scrollbar-thumb {
  background-color: #000000;
}
