.bs-mobile-nav {
  display: none !important;
}

.site-logo {
  width: auto !important;
  height: 92px !important;
  max-width: 120px !important;
  object-fit: contain;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ae2b2b;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.brand-lockup:hover {
  color: #ae2b2b;
}

.brand-lockup span {
  display:block;
  
}


.footer-site-logo {
  width: auto !important;
  height: 92px !important;
  max-width: 120px !important;
  object-fit: contain;
}

.mobile-site-logo {
  width: auto !important;
  height: 74px !important;
  max-width: 96px !important;
  object-fit: contain;
}

@media only screen and (max-width: 1139px) {
  .header-upper {
    background: #ae2b2b;
  }

  .nav-outer {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-outer .mobile-nav-toggler {
    display: block !important;
    margin: 0 !important;
    padding: 12px 0;
    cursor: pointer;
  }

  .nav-outer .mobile-nav-toggler img {
    width: 34px;
    height: auto;
  }

  .mobile-menu {
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 99999 !important;
    display: block !important;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .mobile-menu.active .menu-backdrop {
    opacity: 1;
  }

  .mobile-menu .menu-box {
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: min(365px, calc(100vw - 42px)) !important;
    height: 100vh !important;
    overflow-y: auto !important;
    background: #b7292b !important;
    box-shadow: -12px 0 28px rgba(0, 0, 0, 0.25);
    transform: translate3d(100%, 0, 0) !important;
    transition: transform 0.28s ease;
  }

  .mobile-menu.active .menu-box {
    transform: translate3d(0, 0, 0) !important;
  }

  .mobile-menu .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
  }

  .mobile-menu .nav-logo {
    min-height: 122px;
    display: flex;
    align-items: center;
    padding: 26px 28px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-menu .nav-logo img {
    width: auto !important;
    height: 74px !important;
    max-width: 96px !important;
    object-fit: contain;
  }

  .brand-lockup-mobile {
    color: #fff;
    gap: 10px;
    font-size: 18px;
    line-height: 1.2;
    text-shadow: none;
  }

  .brand-lockup-mobile:hover {
    color: #fff;
  }

  .brand-lockup-mobile span {
    max-width: 190px;
  }

  .mobile-menu .menu-outer {
    width: 100%;
  }

  .mobile-menu .mobile-navigation > li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu .mobile-navigation a {
    display: block;
    min-height: 56px;
    padding: 18px 74px 15px 30px;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-menu .mobile-navigation a:hover {
    background: rgba(248, 200, 37, 0.22);
  }

  .mobile-menu .submenu-toggle {
    position: absolute;
    top: 8px;
    right: 0;
    width: 52px;
    height: 40px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 30px;
    line-height: 40px;
  }

  .mobile-menu .submenu-toggle::before {
    content: "\203A";
  }

  .mobile-menu .has-submenu.open > .submenu-toggle::before {
    content: "\2039";
    display: inline-block;
    transform: rotate(-90deg);
  }

  .mobile-menu .mobile-submenu {
    display: none;
    background: #9f2022;
  }

  .mobile-menu .has-submenu.open > .mobile-submenu {
    display: block;
  }

  .mobile-menu .mobile-submenu a {
    min-height: 44px;
    padding: 13px 28px 11px 44px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
  }

  .mobile-menu .social-links {
    padding: 28px 28px 34px;
    text-align: center;
  }

  .mobile-menu .social-links ul {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .mobile-menu .social-links li a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
  }
}

@media only screen and (min-width: 1140px) {
  .bs-mobile-nav {
    display: none !important;
  }

  .mobile-menu {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .mobile-menu .menu-box {
    width: calc(100vw - 42px) !important;
    min-width: 0;
  }

  .mobile-menu .mobile-navigation a {
    min-height: 56px;
    padding: 18px 58px 15px 30px;
    font-size: 18px;
  }

  .mobile-menu .nav-logo {
    padding-left: 24px;
  }

  .site-logo {
    height: 78px !important;
    max-width: 104px !important;
  }

  .brand-lockup {
    gap: 8px;
    font-size: 18px;
  }
}

.brand-lockup-footer {
  color: #fff;
  font-size: 22px;
  text-shadow: none;
}

.brand-lockup-footer span {
  max-width: 260px;
}

.founder-message-copy ~ p.text,
.founder-message-copy ~ br,
.founder-message-copy ~ p.text-white {
  display: none !important;
}

.founder-message-copy .text {
  color: #262626;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-section .founder-photo-card {
  
  padding: 14px;
  
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.founder-photo-card {
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.founder-photo-card > img {
  width: 100%;
  max-width: 250px;
  height: auto;
  
}

.founder-photo-title {
  margin: 12px -14px -14px;
  padding: 12px 14px;
  background: rgba(174, 43, 43, 0.92);
}

.founder-photo-title h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.founder-photo-title p {
  color: #f8c825;
  font-size: 15px;
  font-weight: 600;
  margin: 4px 0 0;
}

.about-us-content {
  max-width: 1080px;
  margin: 0 auto 24px;
  text-align: center;
}

.about-us-content h4 {
  color: #ae2b2b;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-us-content p {
  color: #262626;
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 12px;
  text-align: center;
}

.about-read-more-wrap {
  margin-top: 18px;
}

.about-read-more {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 4px;
  background: #ae2b2b;
  color: #fff;
  font-weight: 600;
}

.about-read-more:hover {
  color: #fff;
  background: #8f2020;
}

.gallery-section .gallery-title {
  color: #ae2b2b !important;
  font-weight: 800;
}

.gallery-section .g-content a,
.gallery-section .g-content h6 {
  color: #ae2b2b !important;
  font-weight: 700;
}

.gallery-section .g-content a:hover {
  color: #7d1717 !important;
}

.links-widget ul li a:after,
.two-column-section .owl-theme .owl-nav .owl-prev:after,
.two-column-section .owl-theme .owl-nav .owl-next:after,
.comments-area .comment-box .theme-btn:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f105" !important;
  font-weight: 900 !important;
}

.header-top .top-contact-links {
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  white-space: nowrap;
}

.header-top .top-contact-links li {
  align-items: center;
  margin-left: 0 !important;
  min-width: 0;
}

.header-top .top-contact-links .text {
  min-width: 0;
}

.header-top .top-contact-links .number-top {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 13px !important;
}

.header-top .top-email-text {
  max-width: 235px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-top .erp-login {
  min-width: 132px;
  padding: 8px 10px !important;
  font-size: 13px !important;
}

@media only screen and (max-width: 991px) {
  .header-top .top-contact-links {
    flex-wrap: wrap;
    justify-content: center !important;
    row-gap: 6px;
  }

  .header-top .top-email-text {
    max-width: 100%;
  }
}

.theme_carousel .news-block .inner-box {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.theme_carousel .news-block .image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.theme_carousel .news-block .image iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.main-footer,
.main-footer .widgets-section,
.mapinfo {
  max-width: 100%;
  overflow: hidden;
}

.mapinfo iframe {
  display: block;
  max-width: 100%;
  min-height: 360px;
}

img {
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .about-section:first-of-type .row {
    align-items: flex-start !important;
  }

  .about-section:first-of-type .content-block {
    padding-top: 18px;
  }

  .about-section .founder-photo-card {
    margin-top: 18px;
  }

  .founder-message-copy {
   
    padding-right: 12px;
  }

  .founder-message-copy .text {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .brand-lockup {
    font-size: 28px;
    line-height: 1.08;
  }

  .brand-lockup span {
    max-width: 500px;
  }

  .site-logo {
    height: 74px !important;
    max-width: 96px !important;
  }

  .left-img-column1 > img {
    width: 110px !important;
  }
}
