* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Scrollbar-Width */
/* Firefox */
* {
  scrollbar-width: none;
  scrollbar-color: #88858a #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #88858a;
  border-radius: 2px;
  border: 3px solid #968d8d;
}

body {
  font-family: "Whitney", -apple-system, "BlinkMacSystemFont", "Segoe UI",
    "Roboto", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background-color: rgb(250, 251, 253);
}

/* Navbar section CSS*/
.header {
  background: #fffefe;
  z-index: 10;
  
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  height: 80px;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  backdrop-filter: blur(50px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.header a {
  text-decoration: none;
  color: rgb(44, 44, 44);
}
.header a img {
  width: 100px;
  height: 56px;
}
.header ul {
  list-style: none;
}

.menu-items {
  display: flex;
  align-items: center;
}
.menu-items li {
  font-size: 14px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease-in-out;
}
.menu-items .menu-item-1:hover {
  border-bottom: 3px solid #ee5f73;
  padding-bottom: 27px;
}
.menu-items .menu-item-2:hover {
  border-bottom: 3px solid #fb56c1;
  padding-bottom: 27px;
}
.menu-items .menu-item-3:hover {
  border-bottom: 3px solid #f26a10;
  padding-bottom: 27px;
}
.menu-items .menu-item-4:hover {
  border-bottom: 3px solid #f2c210;
  padding-bottom: 27px;
}
.menu-items .menu-item-5:hover {
  border-bottom: 3px solid #0db7af;
  padding-bottom: 27px;
}
.menu-items .menu-item-6:hover {
  border-bottom: 3px solid #ff3f6c;
  padding-bottom: 27px;
}

/* dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-right {
  top: 0;
  left: 110%;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.dropdown:hover .dropdown-menu {
  top: 34px;
  opacity: 1;
  visibility: visible;
}
.dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

/* mega menu  */
.drop_menu {
  position: absolute;
  left: 0;
  width: 80vw;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.drop_menu .content {
  background: #fff;
  position: relative;
  box-shadow: 1px 1px 25px -4px rgba(207, 28, 28, 0.54);
  top: 30px;
  margin: 0 auto;
  padding: 1rem 2rem 1rem 2rem;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
   gap: 0.5rem; 
  width: 70vw;
  justify-content: space-between;
}
.drop_menu .content4 {
  background: #fff;
  position: relative;
  box-shadow: 1px 1px 25px -4px rgba(207, 28, 28, 0.54);
  top: 32px;
  margin: 0 auto;
  padding: 1rem 2rem 1rem 2rem;
  display: flex;
   grid-template-columns: repeat(5, 1fr); 

   gap: 0.5rem; 
  width: 60vw;
  justify-content: space-between;
}
.content .col,
.content4 .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.5rem;
}
.content .col .item-1-heading {
  color: #ee5f73;
  font-size: 0.8rem;
  line-height: 3rem;
  font-weight: bold;
}
.content .col .item-2-heading {
  color: #fb56c1;
  font-size: 0.8rem;
  line-height: 3rem;
  font-weight: bold;
}
.content .col .item-3-heading {
  color: #f26a10;
  font-size: 0.8rem;
  line-height: 3rem;
  font-weight: bold;
}
.content4 .col .item-4-heading {
  color: #f2c210;
  font-size: 0.8rem;
  line-height: 3rem;
  font-weight: bold;
}
.content4 .col .item-5-heading {
  color: #0db7af;
  font-size: 0.8rem;
  line-height: 3rem;
  font-weight: bold;
}
.content .col p {
  line-height: 1.2rem;
}
.col .mega-links li,
.col .mega-links li a {
  padding: 0rem;
  color: gray;
  font-weight: 400;
  font-size: 14px;
  font-weight: 400;
}
.menu-items li:hover .drop_menu {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.col .mega-links :hover {
  color: black;
  font-size: 14px;
  font-weight: 500;
}

.nav-last {
  padding: 0 12px 0 17px;
  margin-right: 15px;
  position: relative;
  display: flex;
  height: 40px;
}
.nav-last > div {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 13px !important;
  font-weight: 700;
  align-items: center;
  padding-top: 5px;
  margin-left: 15px;
}

#svg {
  height: 17px !important;
  margin-left: 0px;
}
.search-div {
  position: relative;
  left: 40px;
  display: flex;
  width: 32%;
  background-color: #f5f5f6;
  height: 30px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 3px;
}

#searchpng {
  width: 15px;
  margin: 15px;
  opacity: 0.5;
}
.search-div input {
  width: 70%;
  border: none;
  margin-left: 2%;
  background-color: #f5f5f6;
  outline: none;
}

.menu-item-6 .sup-part {
  color: red;
  position: relative;
  font-size: 9px;
  font-weight: 900;
  bottom: 8px;
}

.image-1 {
  display: block;
  width: 103.1px;
  height: 29.5px;
  margin: 10px auto 0;
}
.image-2 {
  display: block;
  width: 514px;
  height: 274px;
  margin: 20px auto 0;
}
.image-3 {
  display: block;
  width: 192px;
  height: 42px;
  object-fit: cover;
  margin: 20px auto 0;
  cursor: pointer;
}
.drop_menu .content-6 {
  background: #fff;
  box-shadow: 1px 1px 25px -4px rgba(207, 28, 28, 0.54);
  position: relative;
  top: 30px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  /* grid-template-columns: repeat(1, 1fr); */
  gap: 0.5rem;
  width: fit-content;
  justify-content: space-between;
}
.content-6 section p {
  margin-top: 9.5px;
  font-family: "Whitney";
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: #535766;
}


