:root {
  --primary-color: #284b88;
  --header-nav-bg-color: aliceblue;
}

.bg-theme-color {
  background-color: var(--primary-color);
}

.font-theme-color {
  color: var(--primary-color);
}

.outer-wrapper {
  position: relative;
}

@media (min-width: 1200px) {
  .outer-wrapper {
    overflow: visible !important;
  }
}

/* header */
header {
  background-color: aliceblue;
  padding: 0.5rem 2rem !important;
  border-bottom: 2px solid rgb(215, 224, 231);
}

header a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
}

.header-links {
  justify-content: flex-end;
  gap: 1rem;
  font-size: small;
}

.header-links a {
  padding: 0 1rem;
  border-inline: 2px solid var(--primary-color);
}

.navigation {
  position: relative;
  height: 120px;
  width: 100%;
  margin-bottom: 2rem;
  z-index: 1030;
  transition: top 0.3s ease, transform 0.3s ease;
}

.navigation.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.placeholder {
  display: none;
  height: 0;
}

nav {
  padding: 0.5rem 2rem !important;
  background-color: var(--header-nav-bg-color);
}

.top-nav>.row {
  align-items: center;
}

.top-nav img {
  max-width: 12vw;
}

.top-nav form button {
  position: absolute;
  height: 100%;
  right: 0;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.top-nav form button:hover {
  background-color: var(--header-nav-bg-color);
}

.top-nav form button:hover i {
  color: var(--primary-color);
}

.top-nav form button i {
  color: var(--header-nav-bg-color);
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: end;
  margin: 0;
}

.top-nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.top-nav ul li a>i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.wishlist .wishlist-count {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  top: -30%;
  right: 64%;
  border-radius: 50%;
  background-color: crimson;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
}

.account .account-count {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  top: -30%;
  right: 64%;
  border-radius: 50%;
  background-color: crimson;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
}

.cart .cart-count {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  top: -30%;
  right: 45%;
  border-radius: 50%;
  background-color: crimson;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
}

/* Top-Nav hover Style */
.top-nav ul li a span {
  transform: scale(1);
  transition: all 0.3s;
}

.top-nav ul li a:hover span {
  transform: scale(1.1);
}

.bottom-nav {
  background-color: var(--primary-color);
}

.bottom-nav ul {
  list-style: none;
  gap: 1rem;
  margin: 0;
}

.bottom-nav ul li a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 2rem;
  border-right: 2px solid white;
}

.bottom-nav a:nth-child(2),
.bottom-nav a:nth-child(3),
.bottom-nav a:nth-child(4) {
  padding: 0 1rem;
}

/* Bootom-Nav hover Style */
.bottom-nav .categories {
  position: relative;
}

.bottom-nav .categories::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: white;
  transition: all 0.3s;
}

.bottom-nav .categories:hover::after {
  width: 90%;
}

/* Bootom-Nav sub menu */
.all-categories-sub-menu,
.all-laptops-sub-menu {
  position: absolute;
  min-height: 35vh;
  min-width: 30vw;
  display: flex;
  opacity: 0;
  visibility: hidden;
  top: 135%;
  left: 0;
  background-color: white;
  padding: 2rem 0rem;
  z-index: 99;
  border-radius: 10px;
  box-shadow: 1px 1px 5px black;
  transition: all 0.3s;
}

.all-categories:hover .all-categories-sub-menu,
.all-laptops:hover .all-laptops-sub-menu {
  visibility: visible;
  opacity: 1;
}

.all-categories-sub-menu-main-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--primary-color);
}

.all-categories-sub-menu-main-menu li {
  position: relative;
}

.all-categories-sub-menu-main-menu li a {
  color: var(--primary-color) !important;
  font-weight: 600;
  border: none !important;
}

.all-categories-sub-menu-main-menu-all-laptops-child {
  position: absolute;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  top: -165%;
  left: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.all-categories-sub-menu-main-menu-all-laptops:hover .all-categories-sub-menu-main-menu-all-laptops-child {
  visibility: visible;
  opacity: 1;
}

.all-laptops-sub-menu-child {
  display: flex;
  flex-direction: column;
}

.all-laptops-sub-menu-child li a {
  color: var(--primary-color) !important;
  font-weight: 600;
  border: none !important;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 320px;
  max-width: 90vw;
  background-color: var(--header-nav-bg-color);
  z-index: 1200;
  /* above sticky/fixed navbars */
  transition: right 0.3s ease;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-close {
  cursor: pointer;
  color: var(--primary-color);
}

/* Accordion submenu */
.mobile-dropdown-menu[hidden] {
  display: none;
}

.mobile-dropdown-menu {
  background: #f8f9fa;
  padding: 0.25rem 0 0.5rem 0;
}

.mobile-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  text-decoration: none;
}

.mobile-link:hover {
  background: #e9ecef;
}

.mobile-nav>div>div {
  cursor: pointer;
  color: var(--primary-color);
}

.nav-item {
  padding-left: 2rem;
}

.nav-link {
  border: 0;
  background-color: transparent;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.nav-link-child {
  position: relative;
  width: 100%;
  padding-left: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: transparent;
  border: none;
}

.nav-link-child a {
  padding: 0.4rem 0;
}

/* Mobile Account Nav */
.mobile-account-nav {
  position: fixed;
  height: fit-content;
  max-width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--header-nav-bg-color);
  z-index: 1200;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
}

.mobile-account-nav ul li a {
  color: var(--primary-color);
  font-size: 1.25rem;
}

@media (max-width: 767.98px) {

  .mobile-nav .dropdown,
  .mobile-nav .dropdown-menu,
  .mobile-nav .dropdown-toggle {
    all: unset;
    display: revert;
  }
}

/* Mobile Account Menu */
#mobileAccountMenu {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1200;
  background-color: var(--header-nav-bg-color);
  transform: translateY(110%);
  transition: all 0.3s;
}

#mobileAccountMenu ul li a {
  font-size: 1rem;
}

.mobile-nav .dropdown-menu {
  position: static !important;
  transform: none !important;
  inset: auto !important;
  width: 100%;
  border: 0;
  box-shadow: none;
  margin: 0;
}

.dropdown-menu {
  z-index: 1040;
}


/* Hero */
.hero {
  position: relative;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.heroSwipper {
  position: relative;
  aspect-ratio: 16/5;
  border-radius: 15px;
}

.heroSwipper .swiper-wrapper {
  position: relative;
  display: flex;
}

.heroSwipper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: top;
}

.heroSwipper .swiper-slide img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.heroSwipper .swiper-button-prev,
.heroSwipper .swiper-button-next {
  height: 40px;
  width: 50px;
  border-radius: 25%;
  background-color: var(--header-nav-bg-color);
}

.heroSwipper .swiper-navigation-icon {
  display: none;
}

.heroSwipper .swiper-button-prev::after {
  content: "\F284";
  font-family: "bootstrap-icons";
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
}

.heroSwipper .swiper-button-next::after {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
}

.hero .swiper-pagination {
  position: relative;
  bottom: -10px;
}

.hero .swiper-pagination .swiper-pagination-bullet {
  height: 5px;
  width: 30px;
  border-radius: 0;
}

.heroSwipper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

#productShortcuts div a {
  font-size: 1rem;
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
#productShortcuts div a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* All Product listing */
.sectionHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sectionHeading h2 {
  color: var(--primary-color);
}

.sectionHeading a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: var(--header-nav-bg-color);
  background-color: var(--primary-color);
  border: 2px solid transparent;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.sectionHeading a:hover {
  background-color: var(--header-nav-bg-color);
  border: 2px solid var(--primary-color);
}

.sectionHeading a:after {
  content: "\F144";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "bootstrap-icons";
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0;
  scale: 0;
  transition: all 0.3s;
}

.sectionHeading a:hover:after {
  opacity: 1;
  scale: 1;
}

.offerProductsSwipper .swiper-slide {
  display: flex;
}

.productCard {
  position: relative;
  display: block;
  height: fit-content;
  width: 20rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}

.productCard img {
  height: 10rem;
  width: calc(20rem - 2rem);
  object-fit: contain;
  margin-bottom: 1rem;
}

.productCard .productDetails {
  height: 10rem;
  width: calc(20rem - 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.productDetails .productPrice .discount {
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  background-color: crimson;
  color: white;
  border-radius: 0.5rem;
  font-size: smaller;
  font-weight: 600;
  margin-bottom: 1rem;
}

.productCard .productDetails button {
  width: 100%;
  border: 0;
  background-color: black;
  color: white;
  padding: 0.5rem 0;
  opacity: 0;
  transition: all 0.3s;
}

.productCard .productDetails button:hover {
  background-color: var(--primary-color);
}

.productCard:hover {
  border: 1px solid var(--primary-color);
  color: inherit;
  box-shadow: 1px 1px 5px 0px #dadada;
}

.productCard:hover .productDetails button {
  opacity: 1;
}

.productCard .shortcut-icons {
  position: absolute;
  top: 15px;
  right: 15px;
  transform: translateX(50px);
  transition: all 0.3s;
}

.productCard:hover .shortcut-icons {
  transform: translateX(0px);
}

.productCard .shortcut-icons div {
  height: 2rem;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
}

.promotion a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Bulk order */
#bulkOrder form input:focus,
#bulkOrder form select:focus {
  outline: 1px solid var(--primary-color);
  box-shadow: none;
}

.iconforbulkorder div {
  font-size: 2rem;
  display: inline;
  margin-right: 10px;
  cursor: pointer;
}

/* Footer */
.footer {
  height: fit-content;
  width: 100%;
  background-color: var(--primary-color);
}

.group-1 a {
  text-decoration: none;
  color: white;
}

.group-2 ul li a,
.group-3 ul li a,
.group-4 ul li a {
  position: relative;
  text-decoration: none;
  color: white;
}

.group-2 ul li a:after,
.group-3 ul li a:after,
.group-4 ul li a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: all 0.3s;
}

.group-2 ul li a:hover::after,
.group-3 ul li a:hover::after,
.group-4 ul li a:hover::after {
  width: 100%;
}

/* Resposiveness */
@media screen and (min-width: 0px) and (max-width: 500px) {
  header {
    padding: 0.5rem 1rem !important;
  }

  .navigation {
    height: 90px;
    margin-bottom: 0rem;
  }

  .top-nav {
    padding: 1rem !important;
  }

  .top-nav img {
    max-width: 120px;
  }

  .top-nav ul {
    gap: 0.2rem;
  }

  .top-nav ul li a span {
    display: none;
  }

  .sectionHeading h2,
  .all-laptops-result-header h2 {
    font-size: 1.2rem;
  }

  .sectionHeading a,
  .all-laptops-result-header .btn-secondary {
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
  }

  #productShortcuts div a {
    font-size: 0.7rem;
  }

  .productCard {
    height: fit-content;
    width: 10rem;
    padding: 0.5em;
  }

  .productCard img {
    height: 7rem;
    width: calc(10rem - 1rem);
    margin-bottom: 0.5rem;
  }

  .productCard .productDetails {
    height: 7rem;
    width: calc(10rem - 1rem);
  }

  .productDetails .price {
    font-size: 0.8rem;
    margin: 0;
  }

  .productDetails .productPrice span {
    font-size: 0.5rem;
  }

  .productDetails .productPrice .discount {
    padding: 0.3rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .productPrice p {
    font-size: 0.5rem;
  }

  .productPrice button {
    font-size: 0.5rem;
  }

  .productCard .productDetails button {
    font-size: 0.6rem;
    padding: 0.2rem;
  }

  .promotion {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 0px) and (max-width: 768px) {
  .top-nav .mobile-menu {
    font-size: 1rem;
    font-weight: 800;
  }
}

@media screen and (min-width: 501px) and (max-width: 1399px) {
  .productCard {
    height: 21rem;
    width: 16rem;
    padding: 0.5rem;
  }

  .productCard img {
    height: 9rem;
    width: calc(16rem - 1rem);
    margin-bottom: 0.5rem;
  }

  .productCard .productDetails {
    height: 10rem;
    width: calc(16rem - 1rem);
  }

  .productDetails .price {
    font-size: 1rem;
    margin: 0;
  }

  .productDetails .productPrice span {
    font-size: 0.8rem;
  }

  .productDetails .productPrice .discount {
    padding: 0.5rem 0.8rem;
    margin-left: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .productPrice p {
    width: 100%;
    font-size: 0.9rem;
  }

  .productPrice button {
    font-size: 0.5rem;
  }

  .productCard .productDetails button {
    font-size: 0.8rem;
    padding: 0.4rem;
  }

  .promotion {
    margin-top: 1rem;
  }
}

/* all-budget-laptops */
.all-budget-laptops-banner {
  aspect-ratio: 16/4;
  border-radius: 15px;
}

.all-budget-laptops-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.all-laptops-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.all-laptops-result-header h2 {
  margin: 0;
  color: var(--primary-color);
}

.all-laptops-result-header .btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-wrapper {
  position: sticky;
  z-index: 1020;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 1rem;
  transition: top 0.3s ease;
}

.filter-header {
  display: flex;
  justify-content: space-between;
}

.result-wrapper {
  min-height: 100vh;
}

.accordion {
  border: none;
}

.accordion-item {
  border: none;
}

.accordion-button {
  padding: 1rem 0rem;
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.form-check {
  margin-bottom: 1rem;
}

/* selected laptop */
.product-images {
  display: flex;
  flex-direction: column;
  min-height: 40vh;
  width: 100%;
}

.product-view {
  flex-grow: 1;
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 10px;
}

.product-view img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-gallery {
  height: unset;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-gallery img {
  width: 5rem;
  padding: 0.5rem;
  border: 1px solid var(--primary-color);
}

.product-details {
  height: fit-content;
  width: 100%;
}

.product-details .sec-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-details .sec-1 p {
  margin: 1rem 0 2rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.product-order {
  height: fit-content;
  width: 100%;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem;
}

.product-order .sec-1 .actualPrice {
  text-decoration: line-through;
  opacity: 0.8;
}

.product-order .sec-1>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-order .sec-1 .discount {
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  background-color: crimson;
  color: white;
  border-radius: 0.5rem;
  font-size: smaller;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: end;
}

.product-order .sec-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sec-2 .input-group {
  max-width: 150px;
}

.sec-2 #quantity-input {
  border-color: #ced4da !important;
}

.sec-2 #decrement-btn,
#increment-btn {
  border-color: #ced4da !important;
  outline: none;
}

.sec-2 #decrement-btn:focus,
#increment-btn:focus {
  box-shadow: none;
}

.product-order .sec-3 {
  text-align: center;
}

.product-order .sec-3 span {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.sec-4 .payment-mode img {
  width: 4rem;
}

.sec-4 h5 {
  text-decoration: underline;
}

.sec-4 button,
.mobile-qtn-cart button:nth-child(2) {
  width: 100%;
  font-weight: 600;
  background-color: black;
  border: 2px solid transparent;
  color: white;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.sec-4 button:hover,
.mobile-qtn-cart:hover {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.profile-header p {
  position: relative;
  padding: 0.2rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-header p::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.profile-header p:hover::after {
  width: 100%;
}

.profile li a {
  text-decoration: none;
  color: slategray;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.3s;
}

.profile li a:hover {
  color: var(--primary-color);
}

.profile li a i {
  margin-right: 1rem;
}

/* Address-book */
.new-address-button {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.new-address-button:hover,
.new-address-button:focus {
  background-color: var(--header-nav-bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.address-details-header div {
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s;
}

.address-details-header div:hover {
  color: var(--primary-color);
}

.active {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

.product-types-btn:hover {
  color: #fff !important;
}


.mobile-nav-items a {
  text-decoration: none !important;
  list-style: none;
  color: inherit !important;
  padding-left: 29px;
}

.mobile-nav-items a:hover {
  text-decoration: underline !important;
}

/*25 Nov*/

.custom-navbar {
    background-color: #294f8c;
}
.custom-navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}
.custom-navbar ul li.nav-item {
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid#fff;
    border-right: 1px solid #fff;
}

.custom-navbar ul li.nav-item:nth-of-type(1) {
    border-left: 2px solid #fff;
}
.custom-navbar ul li.nav-item:nth-last-child(1) {
    border-right: 2px solid #fff;
}

.custom-navbar .navbar-nav .nav-link:hover {
    transform: scale(1.2);
    color: #fff;
}

.facility-sec {
    margin-bottom: 30px;
}

.all-facility {
  position: relative;
  background: #284a88;
  padding: 30px 0;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
}
.facility-sec .container {
    max-width: 1920px;
}

.all-facility ul {
  display: flex;
  position: relative;
  z-index: 9;
  list-style: none;
  justify-content: space-evenly;
  margin-bottom: 0;
  padding-left: 10px;
  flex-wrap: wrap;
}
.all-facility ul li img.support {
    max-width: 42px;
}
.all-facility img.delivery {
    max-width: 60px;
}
.all-facility img.Certified {
    max-width: 35px;
}
img.lowest-price {
    max-width: 40px;
}

.all-facility ul p {
  margin-bottom: 0;
}

.all-facility ul li {
  display: flex;
  gap: 10px;
  flex-basis: 20%;
  cursor: pointer;
  padding: 0 10px;
  align-items: center;
  transition: .3s;
}
.all-facility ul li:hover img {
    transition: .3s;
    transform: scale(1.2);
}

.all-facility ul li i.bi-microsoft {
  font-size: 36px;
  transition: 0.3s;
  font-weight: 600;
}
.all-facility ul li p {
  font-size: 18px;
  transition: 0.3s;
  text-align: left;
  line-height: 1.2;
  font-weight: 600;
}


.all-facility ul li:hover i {
  transform: scale(1.2);
}

.custom-none {
    display: none;
}
.sectionHeading {
    border: 1px solid #9996;
    padding: 30px;
    border-radius: 10px;
}

.custom-navbar .submenu {
    position: absolute;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
     visibility: hidden; 
     opacity: 0; 
    transition: .5s;
    box-shadow: 0px 0px 10px #00000042;
}
.custom-navbar .submenu ul {
    padding-left: 0;
    list-style: none;
    line-height: 1.8;
}
.custom-navbar .submenu ul a {
    color: #000 !important;
    text-decoration: none;
    transition: .5s;
    font-size: 17px;
    font-weight: 600;
}

.custom-navbar ul li.nav-item:nth-last-child(1):hover .submenu {
    visibility: visible;
    opacity: 1;
}
.about-sec {
    padding-bottom: 30px;
    padding-top: 20px;
}
.about-sec ul.list-one {
    list-style: none;
}
.about-sec ul {
    line-height: 1.8;
}

div#subModal form.modal-content {
    margin-bottom: 0;
}


@media screen and (max-width:991.5px){
    .all-facility {
        padding: 35px 0 10px 0;
    }

    .all-facility ul li {
        flex-basis: 50%;
        margin-bottom: 30px;
    }
    .custom-navbar .navbar-nav .nav-link {
        font-size: 13px;
     }
    .facility-sec {
        margin-top: 60px;
    }
    .custom-navbar ul li.nav-item {
    padding-left: 15px;
    padding-right: 15px;
}
}

@media screen and (max-width:767.5px){
    .custom-navbar {
        display: none;
    }
    .facility-sec {
        margin-top: 0;
    }
    .navigation {
        margin-bottom: 0;
    }
}

@media screen and (max-width:576px){
    
    .all-facility ul li i {
        font-size: 20px;
     }
    .all-facility ul li {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    .all-facility ul li p {
        font-size: 16px;
     }
}
