body {
  font-family: "Montserrat", sans-serif !important;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  min-width: 300px;
  padding: 0 10px;
}

.main-header {
  position: sticky;
  width: 100%;
  margin: 0 auto;
  left: 0;
  top: 0;
  z-index: 1049;
  color: #000;
  padding: 5px 0;
  background-color: #000;
  
}
.main-header .headerrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .fixed-top {
  top: 0 !important;
  transform: translateY(0);
  transition: transform 0.3s;
  background-color: #000;
}

.side-menu {
  width: 500px;
  top: 0;
  background-color: #161614;
  height: 100vh;
  position: fixed;
  right: -500px;
  transition: 0.5s;
  padding: 4.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 30;
}
.side-menu.show {
  right: 0;
}
.side-menu .aside-wrap {
  border-top: 1px solid #4d4646;
}
.side-menu .aside-wrap .icon-close {
  position: absolute;
  right: 0;
  top: 25px;
  transition: 0.5s;
}
.side-menu .aside-wrap .icon-close:hover svg line {
  stroke: #de3818;
}
.side-menu .aside-info {
  display: flex;
  flex-direction: column;
}
.side-menu .aside-info .info-links {
  margin-bottom: 35px;
}
.side-menu .aside-info .info-links a {
  display: block;
  color: #fff;
  margin-bottom: 15px;
  text-decoration: none;
}
.side-menu .aside-info .info-links a:hover {
  text-decoration: underline;
}
.side-menu .aside-info .info-content a {
  color: #babab1;
  display: flex;
  margin-bottom: 13px;
  transition: 0.5s;
  text-decoration: none;
  gap: 10px;
}

.aside-wrap,
.hover-box,
.hover-box > * {
  position: relative;
}

.aside-nav {
  list-style: none;
  padding-top: 25px;
}
.aside-nav li {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 40px;
  list-style: none;
}
.aside-nav li a {
  color: #fff;
  transition: 0.5s;
  text-decoration: none;
}

/* Content Section */
.content-section {
  width: 100%;
  padding: 30px 0;
}

.footer-main {
  padding: 5.0625rem 0 0;
  background-color: #161614;
  color: #fff;
  font-family: "Montserrat", sans-serif !important;
}
.footer-main .footer-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-main .footer-section .footer-left {
  width: 25%;
  padding-right: 20px;
}
.footer-main .footer-section .footer-left img {
  max-width: 100%;
  height: auto;
}
.footer-main .footer-section .footer-left .social-links-footer {
  display: flex;
  gap: 6px;
  padding-top: 30px;
}
.footer-main .footer-section .footer-left .social-links-footer a {
  margin-right: 0.9375rem;
  display: inline-block;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
.footer-main .footer-section .footer-left .social-links-footer a:hover {
  transform: scale(1.3);
}
.footer-main .footer-section .footer-right {
  width: 75%;
}
.footer-main .footer-section .footer-right .underline-hover-effect {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.footer-main .footer-section .footer-right .underline-hover-effect .footer-nav h4 {
  color: #de3818;
  font-size: clamp(1rem, 0.8438rem + 0.5vw, 1.125rem);
  margin-bottom: 15px;
  font-weight: 500;
}
.footer-main .footer-section .footer-right .underline-hover-effect .footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.footer-main .footer-section .footer-right .underline-hover-effect .footer-nav ul li {
  padding: 10px 0;
}
.footer-main .footer-section .footer-right .underline-hover-effect .footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.8125rem, 0.7344rem + 0.25vw, 0.875rem);
}
.footer-main .footer-section .footer-right .underline-hover-effect a {
  display: inline-block;
  padding-bottom: 1px;
  position: relative;
}
.footer-main .footer-section .footer-right .underline-hover-effect a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.25s ease-out;
}

.footerbtm {
  border-top: 1px solid rgba(60, 60, 57, 0.45);
  padding: 1.625rem 0;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footerbtm .copy {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.6875rem, 0.5313rem + 0.5vw, 0.8125rem);
}
.footerbtm ul {
  margin: 0;
}
.footerbtm ul li {
  list-style: none;
}
.footerbtm ul li a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.6875rem, 0.5313rem + 0.5vw, 0.8125rem);
}

.footer-address {
  line-height: 1.25rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.mobile-res {
  display: none !important;
}

.deskshow {
  display: inline-block !important;
}

@media (max-width: 1199.98px) {
  .mobile-res {
    display: block !important;
  }
  .deskshow {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .desk-hide {
    display: none;
  }
  .main-nav > ul {
    margin: 0;
    padding: 0;
  }
  .main-nav > ul > li {
    display: inline-block;
    position: relative;
    padding: 0 25px;
    line-height: 3.4375rem;
  }
  .main-nav > ul > li.submenu i {
    position: absolute;
    width: 37px;
    height: 33px;
    top: 50%;
    transform: translateY(-50%);
    right: -5px;
    cursor: pointer;
    transition: 0.5s;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .main-nav > ul > li {
    padding: 0 18px;
  }
  .main-nav > ul > li.submenu i {
    right: -10px;
  }
}
@media (min-width: 1200px) {
  .main-nav > ul > li.submenu i:after {
    content: "";
    height: 0;
    width: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #de3818;
    position: absolute;
    right: 12px;
    top: 14px;
    z-index: 10;
  }
  .main-nav > ul > li:last-child {
    margin: 0;
  }
  .main-nav > ul > li:last-child ul {
    left: auto;
    right: 0;
  }
  .main-nav > ul > li > a {
    display: block;
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;
    position: relative;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
  }
  .main-nav > ul > li > a:before {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #de3818;
    transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
  }
  .main-nav > ul > li.menu a:before,
  .mob-btn {
    display: none;
  }
  .main-nav > ul > li:hover > a:before,
  .main-nav > ul > li > a.active:before {
    width: 100%;
  }
  .main-nav > ul > li:hover > a {
    transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
  }
  .main-nav > ul > li:hover > ul {
    display: block;
  }
  .main-nav > ul > li ul {
    background: #fff;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 275px;
    display: none;
    list-style: none;
    border: 1px solid rgba(199, 199, 199, 0.2705882353);
    z-index: 9999;
  }
  .main-nav > ul > li ul li {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
  }
  .main-nav > ul > li ul li:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #d4d4cf;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: none !important;
  }
  .main-nav > ul > li ul li:hover {
    transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    background: #f0f0e6;
  }
  .main-nav > ul > li ul li:hover:after {
    background: #de3818;
  }
  .main-nav > ul > li ul li a {
    color: #212529;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
  }
  .main-nav > ul > li ul li:hover > ul {
    display: block;
    left: 250px;
    top: 0;
  }
  .main-nav > ul > li ul li:hover > a {
    color: #de3818;
    text-decoration: none;
  }
  .main-nav > ul > li ul li.submenu::after {
    content: "\e807";
    font-family: deafult-icons;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #de3818;
    font-size: 10px;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-footer,
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .main-nav,
  .mob-btn span {
    width: 100%;
    background: #fff;
  }
  .main-nav {
    display: block;
    position: fixed;
    max-width: 100%;
    top: 50px;
    padding: 35px 45px 45px;
    right: 0;
    -o-transition: 0.3s ease-in-out;
    z-index: 3;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    transform: scaleY(0);
    transition: opacity 0.3s ease-in, transfrom 0.3s ease-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  .main-nav ul li.submenu i,
  .mob-btn {
    cursor: pointer;
    display: -ms-flexbox;
  }
  .main-nav ul {
    margin: 0;
    padding: 0;
    display: block;
  }
  .main-nav ul.mnav {
    margin-bottom: 30px;
  }
  .main-nav ul li {
    display: block;
    position: relative;
  }
  .flx-vcenter.border-btm,
  .main-nav ul li span {
    display: none;
  }
  .main-nav ul .submenu.open > ul,
  .mob-btn span {
    display: block;
  }
  .main-nav ul li a {
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.05rem;
    display: block;
    padding: 11px 0;
    font-weight: 500;
    color: #161614;
    border-bottom: 1px solid #f0f2f4;
  }
  .main-nav ul li.submenu i {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 0;
    right: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav ul li.submenu i:after {
    content: "";
    height: 2px;
    width: 20px;
    background: #000;
    z-index: 10;
    transform: rotate(90deg);
    transition: 0.3s;
  }
  .main-nav ul li.submenu i:before {
    content: "";
    height: 2px;
    width: 20px;
    background: #000;
    z-index: 10;
    position: relative;
    left: 20px;
  }
  .main-nav ul li.open > i:after {
    transform: rotate(0);
  }
  .main-nav ul ul {
    margin: 0;
    display: none;
  }
  .main-nav ul ul li:last-child {
    border-bottom: 0;
  }
  .main-nav ul ul li a {
    padding-left: 20px;
  }
  .main-nav ul ul li ul a {
    padding-left: 30px;
  }
  .show-menu .main-nav {
    opacity: 1;
    transform: scale(1, 1);
  }
  .show-menu .overlay {
    position: fixed;
    top: 60;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .mob-btn {
    margin: 0;
    background-color: transparent;
    text-align: center;
    width: 40px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6px;
  }
  .mob-btn span {
    height: 3px;
    border-radius: 1px;
    transition: 0.3s cubic-bezier(0, 0, 0.58, 1);
  }
  .mob-btn .icon-left-1 {
    display: none;
    background: 0 0;
    height: 0;
    width: 0;
  }
  .mob-btn span + span {
    margin-top: 7px;
  }
}
@media screen and (max-width: 800px) {
  .footer-main {
    padding: 40px 0 0 0;
  }
  .footer-main .footer-section {
    flex-direction: column;
  }
  .footer-main .footer-section .footer-left {
    width: 100%;
  }
  .footer-main .footer-section .footer-left .social-links-footer {
    padding-top: 10px;
  }
  .footer-main .footer-section .footer-right {
    width: 100%;
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .footer-main .footer-section .footer-left .social-links-footer {
    padding-top: 10px;
  }
  .footer-main .footer-section .footer-right .underline-hover-effect {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */