.header-section {
  transition: all 0.3s ease;
}
.header-section nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 7rem;
  padding-right: 7rem;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.header-section nav .navbar .links li.header-quote-btn .btn-primary {
  height: auto;
  padding: 0.6rem 2.5rem;
  border: 0px;
  color: #000;
  font-weight: 500;
  font-size: 1.25rem;
}
.header-section nav .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0px;
}
.header-section .navbar .header-logo a {
  color: var(--bg-primary);
  font-size: 20px;
  text-decoration: none;
  font-weight: 700;
  line-height: 55px;
  font-family: var(--Font-quicksand);
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-section .navbar .header-logo img {
  width: 100%;
  max-width: 220px;
}
.header-section nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
.header-section nav .navbar .links {
  display: flex;
  gap: 1.5rem;
}
.header-section nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.header-section nav .navbar .links li a {
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  display: flex;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: var(--font-Roboto);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  justify-content: center;
  align-items: center;
  height: 60px;
  text-transform: capitalize;
}
.header-section nav .navbar .links li a:hover {
  border-bottom-color: var(--bg-primary);
}
.header-section nav .navbar .links li.active-menu a {
  border-bottom-color: var(--bg-primary);
}
.header-section .links li:hover .htmlcss-arrow,
.header-section .links li:hover .js-arrow {
  transform: rotate(180deg);
}
.header-section nav .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
  display: none;
}
.header-section nav .navbar .links li .sub-menu {
  position: absolute;
  top: 60px;
  left: 0;
  line-height: 40px;
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  min-width: -moz-max-content;
  min-width: max-content;
  border: 3px solid var(--bg-hover-200);
}
.header-section nav .navbar .links li:hover .htmlCss-sub-menu,
.header-section nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.header-section .navbar .links li .sub-menu li {
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(54, 198, 255, 0.47);
}
.header-section .navbar .links li .sub-menu li:last-child {
  border-bottom: 0px;
}
.header-section .navbar .links li .sub-menu a {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  font-family: var(--font-Roboto);
  border-bottom: 0px;
  height: auto;
}
.header-section .navbar .links li .sub-menu a:hover {
  color: var(--bg-primary);
}
.header-section .navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.header-section .navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.header-section .links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.header-section .navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.header-section .navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-section .navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.header-section .navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.header-section .search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.header-section .search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.header-section .navbar .nav-links .sidebar-logo {
  display: none;
}
.header-section .navbar .bx-menu {
  display: none;
}

.header-fixed nav {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #000;
}

.footer-section {
  background-color: #000;
  padding-top: 2.5rem;
}
.footer-section .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.5rem;
}
.footer-section .footer-middle {
  padding: 2rem 0px;
  border-top: 2px solid #104155;
  border-bottom: 2px solid #104155;
}
.footer-section .footer-logo a {
  color: var(--bg-primary);
  font-size: 20px;
  text-decoration: none;
  font-weight: 700;
  line-height: 55px;
  font-family: var(--Font-quicksand);
}
.footer-section .footer-logo img {
  width: 100%;
  max-width: 220px;
}
.footer-section .follow-div p {
  color: #fff;
  line-height: 150%;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0px;
  font-family: var(--font-Roboto);
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.footer-section .follow-div p a {
  display: inline-block;
  margin-left: 2px;
  color: var(--bg-primary);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #fff;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.2s ease;
}
.footer-section .follow-div p a:hover {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
}
.footer-section .follow-div p a:hover img {
  filter: invert(1);
}
.footer-section .follow-div p a img {
  width: 19px;
}
.footer-section .footer-menu-card {
  word-break: break-word;
}
.footer-section .footer-menu-card h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  font-family: var(--font-Roboto);
  margin-bottom: 1.5rem;
}
.footer-section .footer-menu-card .footer-menu-list li {
  display: block;
}
.footer-section .footer-menu-card .footer-menu-list li .menu-link {
  color: #bdc4ca;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-Roboto);
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: all 0.4s ease;
}
.footer-section .footer-menu-card .footer-menu-list li .menu-link:hover {
  color: var(--bg-primary);
}
.footer-section .menu-card-3 {
  padding-left: 20px;
}
.footer-section .footer-contact-card {
  padding: 1.25rem 1.5rem;
  background-color: hsla(208, 6%, 57%, 0.2);
  border-radius: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-left: 54px;
}
.footer-section .footer-contact-card svg {
  width: 24px;
  margin-right: 1.5rem;
}
.footer-section .footer-contact-card p {
  color: #fff;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 300;
  font-family: var(--font-Roboto);
  margin-bottom: 0px;
}
.footer-section .footer-contact-card a {
  color: #fff;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 300;
  font-family: var(--font-Roboto);
  margin-bottom: 0px;
  display: inline-block;
  transition: all 0.4s ease;
}
.footer-section .footer-contact-card a:hover {
  color: var(--bg-primary);
}
.footer-section .footer-contact-card .text-uppercase {
  font-size: 0.75rem;
  line-height: 22px;
}
.footer-section .footer-contact-card .contact-card2 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.footer-section .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.footer-section .footer-bottom .privacy-div p {
  color: #fff;
  line-height: 150%;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0px;
  font-family: var(--font-Roboto);
}
.footer-section .footer-bottom .privacy-div p a {
  display: inline-block;
  color: #fff;
}
.footer-section .footer-bottom .privacy-div p a:hover {
  color: var(--bg-primary);
}
.footer-section .footer-bottom-border {
  height: 0.5rem;
  background-color: var(--bg-primary2);
  width: 100%;
  margin-top: 3rem;
}

@media (max-width: 1279px) {
  .header-section nav {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .footer-section .footer-contact-card {
    margin-left: 0px;
  }
}
@media (max-width: 1199px) {
  .header-section nav .navbar .links {
    gap: 1rem;
  }
  .header-section nav .navbar .links li.header-quote-btn .btn-primary {
    padding: 0.6rem 1.2rem;
  }
}
@media (max-width: 991px) {
  .header-section .navbar .header-logo img {
    max-width: 172px;
  }
  .header-section nav {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .header-section nav .navbar .links li.header-quote-btn .btn-primary {
    font-weight: 700;
  }
  .header-section nav .navbar .links li a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-color: transparent;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    font-family: var(--Font-Neue-Power);
    display: inline-block;
    height: auto;
  }
  .header-section nav .navbar .links li a:hover {
    border-color: transparent;
  }
  .header-section nav .navbar .links li.active-menu a {
    border-color: var(--bg-primary);
  }
  .header-section .navbar .bx-menu {
    display: block;
  }
  .header-section nav .navbar .nav-links {
    position: fixed;
    top: 0rem;
    right: -100%;
    display: block;
    max-width: 450px;
    width: 100%;
    background-color: #131313;
    line-height: 40px;
    padding: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
    height: calc(100dvh - 64px);
    overflow: auto;
    height: 100%;
  }
  .header-section nav .navbar .nav-links::-webkit-scrollbar {
    width: 0px;
  }
  .header-section .navbar .links li .sub-menu a {
    padding: 0.25rem 1.5rem;
  }
  .header-section .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-section .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .header-section .sidebar-logo i,
  .header-section .navbar .bx-menu {
    font-size: 35px;
    color: var(--bg-primary);
  }
  .header-section nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  .header-section nav .navbar .links li .arrow {
    line-height: 40px;
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    height: auto;
    transform: rotate(-90deg);
    font-size: 23px;
    color: var(--bg-primary);
    transition: all 0.3s ease;
  }
  .header-section nav .navbar .links li.active-menu .arrow {
    transform: rotate(0deg);
  }
  .header-section nav .navbar .links li {
    display: block;
    position: relative;
    margin-bottom: 1.5rem;
  }
  .header-section nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
    transition: all 0.3s ease;
    border-color: transparent;
  }
  .header-section nav .navbar .links li .sub-menu li {
    margin-bottom: 0px;
    background-color: transparent;
  }
  .header-section .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .header-section .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-section .links li:hover .htmlcss-arrow,
  .header-section .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .header-section .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .header-section .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .header-section .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  .header-section nav .navbar .links li:hover .htmlCss-sub-menu,
  .header-section nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .header-section .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .header-section .navbar .nav-links.show3 .links .js-sub-menu,
  .header-section .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .header-section .navbar .nav-links.show1 .links .htmlcss-arrow,
  .header-section .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .header-section .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
  .header-section nav .navbar .links li.active-menu .sub-menu {
    display: block;
  }
  .header-fixed nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .footer-section .footer-menu-card {
    margin-bottom: 15px;
  }
  .footer-section .menu-card-3 {
    padding-left: 0px;
  }
  .footer-section .footer-logo img {
    max-width: 172px;
  }
}
@media (max-width: 767px) {
  .header-section .navbar .header-logo img {
    max-width: 156px;
  }
  .header-section nav .navbar .nav-links {
    padding: 1.2rem;
  }
  .header-section nav .navbar .links li {
    margin-bottom: 0.6rem;
  }
  .header-section nav .navbar .links li a {
    font-size: 1.4rem;
  }
  .header-section nav .navbar .links li .sub-menu a {
    padding: 0.25rem 1rem;
  }
  .header-section nav .navbar .links li.header-quote-btn .btn-primary {
    font-size: 1.1rem;
    padding: 0.3rem 1.1rem;
  }
  .footer-section .footer-logo img {
    max-width: 156px;
  }
}
@media (max-width: 575px) {
  .header-section nav {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-section nav .navbar .nav-links {
    max-width: 100%;
  }
  .footer-section .footer-top {
    flex-direction: column;
  }
  .footer-section .footer-top .footer-logo {
    margin-bottom: 10px;
  }
  .footer-section .footer-middle {
    padding: 2rem 0px 2rem;
  }
  .footer-section .footer-menu-card .footer-menu-list li .menu-link {
    line-height: 18px;
  }
  .footer-section .footer-bottom-border {
    margin-top: 3rem;
  }
}
@media (max-width: 370px) {
  .header-section nav .navbar .nav-links {
    max-width: 100%;
  }
}/*# sourceMappingURL=header.css.map */