.header-section .fixed-top {
  position: fixed !important;
  background-color: var(--light-color) !important;
  z-index: 9999 !important;
  left: 0;
  right: 0;
  top: 0;
  color: var(--text-light);
  box-shadow: 0 2px 2px rgba(206, 206, 206, 0.2) !important;
}
.header-section .main-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  padding: 10px 0;
  background: var(--light-color);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.header-section .main-header .navbar-brand {
  color: #000 !important;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  margin-right: 26px;
  padding: 0;
}
.header-section .main-header .navbar-brand img {
  max-width: 230px;
}
.header-section .main-header .open-menu-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-section .main-header .navbar {
  padding: 0;
}
.header-section .main-header .header-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-section .main-header .navbar-nav {
  align-items: center;
}
.header-section .main-header .navbar-nav .nav-item {
  padding-right: 40px;
}
.header-section .main-header .navbar-nav .nav-item:last-child {
  padding: 0;
}
.header-section .main-header .navbar-nav .nav-item .nav-link {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 30px;
  padding: 0;
  font-weight: 500;
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.header-section .main-header .navbar-nav .nav-item .nav-link::before {
  content: "";
  background-color: var(--secondary-color);
  width: 40px;
  margin: auto;
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: -15px;
  right: 0;
  opacity: 0;
  transition: 0.4s;
  top: unset;
}
.header-section .main-header .navbar-nav .nav-item .nav-link:hover {
  color: var(--hover-text) !important;
}
.header-section .main-header .navbar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
  left: 0;
}
.header-section .main-header .navbar-nav .nav-item .active {
  color: var(--hover-text) !important;
  font-weight: 700;
}
.header-section .main-header .closebtn {
  display: none;
  height: 35px;
  width: 35px;
}
.header-section .main-header .navbar-light .navbar-toggler {
  color: unset !important;
  border-color: transparent !important;
  padding: 0;
}
.header-section .main-header .header-right-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}
.header-section .main-header .header-right-box .login-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--secondary-text-color);
  margin-right: 40px;
  position: relative;
}
.header-section .main-header .header-right-box .login-btn::before {
  content: "";
  background-color: var(--secondary-color);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -3px;
  opacity: 0;
  right: 10px;
  transition: 0.4s;
  border-radius: 100px;
}
.header-section .main-header .header-right-box .login-btn:hover::before {
  opacity: 1;
  right: 0;
}
.header-section .main-header .header-right-box .header-contact-box-item {
  margin-left: 80px;
  position: relative;
}
.header-section .main-header .header-right-box .header-contact-box-item p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #121212;
}
.header-section .main-header .header-right-box .header-contact-box-item span a {
  font-size: 16px;
  color: #636363;
}
.header-section .main-header .header-right-box .header-contact-box-item::before {
  content: "";
  background-image: url(../images/contact-icon.png);
  width: 30px;
  height: 30px;
  position: absolute;
  left: -46px;
  right: 10px;
  top: 18px;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-section {
  background-color: var(--secondary-color);
  padding: 60px 0;
}
.footer-section .sub-footer {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 44px;
}
.footer-section .sub-footer .footer-heading h4 {
  color: var(--primary-btn-text);
  margin: 0;
}
.footer-section .sub-footer .subscription-form {
  position: relative;
}
.footer-section .sub-footer .subscription-form .form-control {
  padding: 20px 150px 20px 18px;
  background-color: var(--light-color);
  border-radius: 100px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  box-shadow: none !important;
  border: none !important;
}
.footer-section .sub-footer .subscription-form .btn-primary {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  border-radius: 100px;
  margin: auto;
  padding: 12px 14px;
  height: 50px;
  font-size: 14px;
}
.footer-section .footer-link h6 {
  color: var(--primary-btn-text);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 24px;
}
.footer-section .footer-link h6::before {
  content: "";
  background-image: url(../images/ft-link-pattern.svg);
  width: 100%;
  height: 10px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
}
.footer-section .footer-link .footer-logo {
  padding-bottom: 24px;
  display: block;
}
.footer-section .footer-link p {
  margin: 0;
  color: var(--footer-text);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}
.footer-section .footer-link .social-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.footer-section .footer-link .social-icon li {
  padding-right: 32px;
}
.footer-section .footer-link .social-icon li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 100%;
  color: var(--secondary-text-color);
}
.footer-section .footer-link .listing-link {
  margin: 0;
  padding: 0;
}
.footer-section .footer-link .listing-link li {
  padding-bottom: 24px;
}
.footer-section .footer-link .listing-link li a {
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  color: var(--primary-btn-text);
  padding-left: 0;
  transition: 0.3s;
}
.footer-section .footer-link .listing-link li a:hover {
  padding-left: 10px;
}
.footer-section .footer-link .social-link {
  margin: 0;
  padding: 0;
}
.footer-section .footer-link .social-link li {
  padding-bottom: 24px;
}
.footer-section .footer-link .social-link li a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--primary-btn-text);
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-section .footer-link .social-link li a .contact-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 100%;
  color: var(--secondary-text-color);
  margin-right: 9px;
}

@media (max-width: 1549px) {
  .header-section .main-header .navbar-brand img {
    max-width: 180px;
  }
  .header-section .main-header .navbar-nav .nav-item {
    padding-right: 24px;
  }
  .header-section .main-header .header-right-box .header-contact-box-item {
    margin-left: 60px;
  }
  .header-section .main-header .header-right-box .header-contact-box-item::before {
    width: 20px;
    height: 20px;
    left: -34px;
    top: 11px;
  }
}
@media screen and (max-width: 1399px) {
  .header-section .main-header .navbar-brand img {
    max-width: 150px;
  }
  .header-section .navbar-nav .nav-item {
    padding-right: 15px;
  }
  .header-section .header-right-box .header-contact-box-item {
    margin-left: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .header-section .main-header .navbar-brand img {
    max-width: 125px;
  }
  .header-section .main-header .navbar-nav .nav-item {
    padding-right: 10px;
  }
  .header-section .main-header .header-right-box .header-contact-box-item {
    margin-left: 41px;
  }
  .header-section .main-header .header-right-box .header-contact-box-item::before {
    left: -28px;
  }
  .header-section .main-header .header-right-box .header-contact-box-item p {
    font-size: 13px;
  }
  .header-section .main-header .header-right-box .header-contact-box-item span a {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .navbar-nav {
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 99;
    margin: unset !important;
  }
  .main-header .navbar-nav .nav-item {
    padding: 0;
  }
  .main-header .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 10px;
  }
  .main-header .header-navbar {
    display: block;
    text-align: center;
  }
  .navbar-toggler {
    padding: 0;
    position: absolute;
    right: 20px;
    display: block !important;
  }
  .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 40px;
    width: 40px;
  }
  .sidenav-new-menu {
    height: 100%;
    height: 100vh;
    width: 100%;
    position: fixed;
    right: -1010px;
    top: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: all 0.5s;
    z-index: 999999;
    background: var(--light-color);
  }
  .closebtn {
    display: block !important;
    color: #000;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 24px;
    z-index: 999;
  }
  #cd-shadow-layer {
    position: fixed;
    min-height: 102vh;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--light-color);
    cursor: pointer;
    z-index: 9;
  }
  .header-section .main-header .open-menu-section {
    height: 100%;
    display: block;
    align-items: flex-start;
    justify-content: center;
  }
  .header-section .main-header .navbar-nav .nav-item:last-child {
    padding-bottom: 20px;
  }
  .width-menu {
    width: 100%;
    right: 0;
    display: block !important;
    transition: all 0.5s;
  }
  .sub-header {
    display: none;
  }
  .header-section .main-header .header-right-box {
    padding-right: 60px;
    position: relative;
    z-index: 9999;
    display: block;
  }
  .header-section .main-header .navbar-brand {
    position: relative;
    z-index: 9999999;
  }
  .header-section .main-header .navbar-nav {
    align-items: flex-start;
    padding: 0 40px;
    justify-content: flex-start;
    padding-top: 100px;
    flex-direction: column;
  }
  .header-section .main-header .navbar-nav .nav-item {
    padding-bottom: 30px;
  }
  .header-section .main-header .navbar-nav .nav-item .nav-link {
    min-height: unset;
    font-size: 24px;
    line-height: 36px;
  }
  .header-section .main-header .header-right-box .login-btn {
    font-size: 16px;
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .header-section .main-header .header-right-box {
    padding-right: 40px;
  }
  .navbar-toggler .navbar-toggler-icon {
    width: 36px;
    height: 36px;
  }
  .header-section .main-header .navbar-brand {
    max-width: 130px;
  }
  .header-section .main-header .navbar-nav {
    padding-top: 110px;
  }
}/*# sourceMappingURL=header-footer.css.map */