/* =====================================================
   GLOBAL RESET (ONLY FOR HEADER)
===================================================== */
.gls-header,
.gls-header * {
  box-sizing: border-box;
}
.gls-service-bar {
  background: #f5f5f5;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}

.gls-service-bar a {
  color: #000;
  text-decoration: none;
}

/* LEFT BAR LINKS */
#topbar-left :hover {
  color: #d10000 !important;
  text-decoration: none !important;
}

.gls-membership strong {
  font-weight: 600;
}

.gls-contacts i {
  margin-right: 4px;
}
.me-2 {
  vertical-align: middle;
}

/* =====================================================
   HEADER WRAPPER
===================================================== */
.gls-header {
  width: 100%;
  border: none;
  background: #fff;
}

.gls-header .container {
  max-width: 1200px;
}

/* =====================================================
   FOOTER
===================================================== */
footer a {
  white-space: nowrap;
}
.gls-footer-social {
  float: right;
}
.gls-footer-social a {
  background: #fff;
  border-radius: 100%;
  color: #4e4e4e;
  display: inline-block;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
  margin-left: 7px;
}
.gls-footer-bottom-inner {
  margin-bottom: 15px;
}
/* =====================================================
  Banner
===================================================== */
.carousel .carousel-control-prev {
  opacity: 0;
  left: 20px;
}
.carousel .carousel-control-next {
  opacity: 0;
  right: 20px;
}
.carousel {
  border: 0px;
  border-radius: 4px;
  box-shadow: 0 0px 0px;
  margin-bottom: 15px;
}
/* BANNER end*/

/* =====================================================
   TOP ROW
===================================================== */
.gls-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

/* LOGO */
.gls-logo img {
  max-height: 75px;
  display: block;
}

/* RIGHT SIDE */
.gls-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* =====================================================
   SOCIAL ICONS
===================================================== */
/* SOCIAL ICONS WRAPPER */
.gls-social {
  display: flex;
  gap: 6px;
}

/* COMMON ICON STYLE */
.gls-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
   border-radius: 50%;     
 
  color: #fff !important;

  transition: background-color .25s ease;
}

/* ICON SIZE */
.gls-social i {
  font-size: 14px;
  color: inherit; 
}

/* BRAND COLORS */
.fa-top {
  background: #547CBE;
}
.ytb-top {
  background: #E45555;
}
.twt-top {
  background: #6d7377;
}
.lnkd-top {
  background: #1485c8;
}

/* HOVER */
.gls-social a:hover {
  background-color: #bdbdbd !important; 
  color: #fff !important; 
}

.gls-social a:hover i {
  color: #fff !important;
}

/* =====================================================
   LANGUAGE SELECTOR
===================================================== */
.gls-language {
  font-size: 14px;
  white-space: nowrap;
}

/* neutralize OpenCart styles */
.gls-language form,
.gls-language ul,
.gls-language li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =====================================================
   QUOTE BUTTON
===================================================== */
.gls-quote-btn {
position: relative;
  background: transparent;
  line-height: 2.5em;
  border: 0;
  padding: 0 20px 0 15px;
  border: 1px solid #aaa;
  border-radius: 4px 200px 0px 120px;
  background: linear-gradient(to bottom, rgba(225,225,225,1) 0%,rgba(229,229,229,1) 100%);
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 14px;
  color: #21428e;
  text-shadow: 0px 1px 3px #fff;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.gls-quote-btn:hover {
  
  color: #000;
}

/* =====================================================
   MENU ROW (DESKTOP)
===================================================== */
.gls-header-menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0px 0 0;
  background: transparent;
  border: none;
}

/* kill bootstrap container inside menu */
.gls-header-menu .container {
  max-width: 100%;
  padding: 0;
}

/* =====================================================
   MAIN MENU (FORCED HORIZONTAL)
===================================================== */
.gls-header-menu ul,
.gls-header-menu .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;

  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
}

/* menu items */
.gls-header-menu li {
  position: relative;
  float: none;
}

/* menu links */
.gls-header-menu > ul > li > a,
.gls-header-menu .navbar-nav > li > a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 0;
}

.gls-header-menu a:hover {
  color: #f4b400;
}

/* =====================================================
   SUBMENU (HIDDEN BY DEFAULT)
===================================================== */
.gls-header-menu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 220px;
  background: #fff;
  padding: 10px 0;
  margin: 0;

  list-style: none;
  flex-direction: column !important;

  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* submenu items */
.gls-header-menu ul ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.gls-header-menu ul ul li a:hover {
  background: #f5f5f5;
}

/* show submenu on hover (desktop) */
.gls-header-menu > ul > li:hover > ul,
.gls-header-menu .navbar-nav > li:hover > ul {
  display: block;
}

/* =====================================================
   MOBILE MENU TOGGLE 
===================================================== */
.gls-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* =====================================================
   MOBILE VIEW
===================================================== */
@media (max-width: 991px) {

  .gls-menu-toggle {
    display: block;
  }

  .gls-header-top {
    flex-wrap: wrap;
    gap: 10px;
  }

  .gls-header-right {
    width: 100%;
    justify-content: flex-end;
  }

  .gls-header-menu {
    justify-content: flex-start;
  }

  .gls-header-menu ul,
  .gls-header-menu .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .gls-header-menu li {
    width: 100%;
  }

  .gls-header-menu a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .gls-header-menu ul ul {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
	
}

.gls-menu {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-decoration: none;
}
/* =====================================================
   BOOTSTRAP OVERRIDE 
===================================================== */

/* remove bootstrap blue */
.gls-header-menu a,
.gls-header-menu a:link,
.gls-header-menu a:visited {
  color: #000 !important;
}

.gls-header-menu a:hover {
color: #2941c4 !important;
}


.gls-header-menu ul ul {
  display: none !important;
}


.gls-header-menu .dropdown-menu.show {
  display: none !important;
}


@media (min-width: 992px) {
  .gls-header-menu li:hover > ul {
    display: block !important;
  }
}

/* ===== BURGER BUTTON ===== */
.gls-burger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 991px) {

  .gls-burger {
    display: block;
    margin-left: auto;
  }

  .gls-header-menu {
    display: none;
    width: 100%;
  }

  .gls-header-menu.gls-menu-open {
    display: block;
  }

  .gls-header-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .gls-header-menu ul ul {
    display: none !important;
    position: static;
    box-shadow: none;
  }

  .gls-header-menu li.submenu-open > ul {
    display: block !important;
  }
}

/* =====================================================
  Page Elements 
===================================================== */
.gls-title {
  background: url(/image/catalog/headings-border.png) repeat-x 0 bottom;
  color: #2C5AA7;
  font-size: 30px;
  margin-bottom: 14px;
  padding-bottom: 14px;
}
/* ===== Front Page Sections ===== */
.home-services h2 {
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
  font-size: 21px;
}

.home-services {
  text-align: center;
}

/* ===== Buttons ===== */
.btn-primary {
  --bs-btn-color: #6a6161;
  --bs-btn-bg: #eee;
  --bs-btn-border-color: #266991;
  color: #143469;
  background-color: rgba(255,255,255,0.2);
  border-color: #2c5aa7;
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: #2d68a8;
  border-color: #414ad3;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
}
/* =====================================================
   Page Elements end
===================================================== */

/* ===== Blog ===== */
 .blog-grid.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.home-blog-grid {
  margin-top: 2.00rem;
}


/* ===== Blog end ===== */