:root {
  /* Brand Colors */
  --primary-color: #002651;   
  --blue-color: #0e1c36;
  --secondary-color: #016b9b;  
  --black-color: #000000;     
  --skylight-color: #d9e2e7;    
  --greenlight-color: #00e9e2;

  /* Grayscale */
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color-100: #f3f4f6;
  --gray-color-200: #e5e7eb;
  --gray-color-700: #374151;
  --gray-color-900: #111827;

  /* Alerts */
  --success-color: #10B981;
  --warning-color: #FBBF24;
  --danger-color: #EF4444;
}

/* ---------- FONTS ---------- */

body{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color:#000;
    font-family: 'Avenir LT Std';
    background:var(--skylight-color)
}

h2 {
    margin-bottom:20px;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6{
    margin-top: 0;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4{
    font-weight:900;
}

.font-light{
    font-weight: 300;
}

.font-medium{
    font-weight: 500;
}

.font-bold{
    font-weight: 900;
}

.text-primary{
    color:var(--primary-color) !important;
}

.text-secondary{
    color:var(--secondary-color) !important
}

.text-greenlight{
    color:var(--greenlight-color)
}

.bg-blue{
    background:var(--blue-color) !important;
}

.text-white{
    color:var(--white-color);
}

a {
  color:var(--secondary-color);
  text-decoration: none;
}

a:hover{
  color:var(--black-color);
  text-decoration: underline;
}


@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1685px;
  }
  
  .container {
    max-width: 1460px;
  }
}

.h1, h1 {
    font-size: 3.938rem;
}

.h2, h2 {
    font-size: 3.125rem;
}

.h3, h3 {
    font-size: 2.7rem;
}

.h4, h4 {
    font-size: 2rem;
}

.h5, h5 {
    font-size: 1.75rem;
}

.h6, h6 {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 2rem;
}

.font-normal{
    font-weight:normal;
}

p {
    margin: 0 0 20px;
}

.relative{
    position:relative;
}

.font-bold{
    font-weight:bold;
}

.w-full{
    width:100%
}

.list-none{
    list-style: none;
}

/* ---------- BUTTONS ---------- */

.btn:hover{
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    padding: 0.6rem 2rem;
    border-radius: 30px 0 30px 0;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    text-transform:uppercase;
    font-weight: 500;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--black-color);
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
}

/* ---------- Structure ---------- */ 

.section {
    padding: 50px 0;
}

.section .section {
    padding: 30px 0;
}

.bg-blue-gradient{
    background: #0C1A45;
    background: linear-gradient(90deg,rgba(12, 26, 69, 1) 0%, rgba(0, 151, 191, 1) 100%);
}

.border-white{
    border:2px solid #fff;
}

/* ---------- JUMBOTRON ---------- */

.jumbotron {
    background-color:rgba(16, 31, 60, 1);
    margin-bottom: 0;
    color:white;
}

/* ---------- NAVBAR ---------- */

.navbar{
    padding-top: 1rem;
    padding-bottom:0;
    z-index: 1111;
}

/* Mobile hamburger menu styling */
.navbar-toggler {
    border: 2px solid var(--greenlight-color) !important;
    border-radius: 8px !important;
    padding: 6px 8px !important;
    background-color: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 233, 226, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300e9e2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 20px !important;
    height: 20px !important;
}

/* ---------- ELEGANT DROPDOWN STYLES ---------- */

/* Main dropdown styling */
.navbar .dropdown-menu {
    background-color: var(--white-color);
    border: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    padding: 0;
    min-width: 220px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    visibility: hidden;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

/* Show dropdown with smooth animation */
.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

/* Dropdown items */
.navbar .dropdown-item {
    padding: 12px 20px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    border-bottom: 1px solid var(--gray-color-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Remove border from last item */
.navbar .dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

/* First item styling */
.navbar .dropdown-item:first-child {
    border-radius: 0;
}

/* Dropdown item hover effects */
.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, var(--greenlight-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    transform: scale(1.02);
}

/* Add subtle left border accent on hover */
.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--greenlight-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.navbar .dropdown-item:hover::before {
    transform: translateX(0);
}

/* Custom dropdown toggle styling */
.navbar .dropdown-toggle {
    position: relative;
}

/* Custom dropdown arrow */
.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.1em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Enhanced hover effects for nav links with dropdowns */
.navbar .dropdown > .nav-link {
    position: relative;
    overflow: hidden;
}

/* Add subtle background animation */
.navbar .dropdown > .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.navbar .dropdown:hover > .nav-link::before {
    left: 100%;
}

/* Mobile and Tablet Responsive Fixes */
@media (max-width: 1199px) {
    /* Fix navbar collapse background */
    #navbarNav {
        background: rgba(0, 38, 81, 0.98) !important;
        border-radius: 10px !important;
        margin-top: 15px !important;
        padding: 20px 0 !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile navigation links */
    .navbar .nav-link {
        color: var(--white-color) !important;
        padding: 12px 20px !important;
        border: none !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .navbar .nav-link:hover {
        background: var(--greenlight-color) !important;
        color: var(--primary-color) !important;
        transform: translateX(5px);
    }
    
    /* Mobile dropdown menus */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: auto !important;
        margin: 0 20px 10px !important;
        background-color: rgba(0, 38, 81, 0.95) !important;
        border-radius: 8px !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        left: auto !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 233, 226, 0.2);
    }
    
    .navbar .dropdown-item {
        color: var(--white-color) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        text-align: left !important;
    }
    
    .navbar .dropdown-item:hover {
        background: var(--greenlight-color) !important;
        color: var(--primary-color) !important;
        transform: none !important;
    }
    
    .navbar .dropdown-item:first-child {
        border-radius: 8px 8px 0 0 !important;
    }
    
    .navbar .dropdown-item:last-child {
        border-radius: 0 0 8px 8px !important;
        border-bottom: none !important;
    }
    
    /* Mobile portal buttons */
    .navbar .head-right {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin-top: 15px !important;
    }
    
    .navbar .btn-primary {
        width: 100% !important;
        margin: 5px 0 !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
    }
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    /* Smaller logo on mobile */
    .navbar .logo img {
        width: 180px !important;
    }
    
    /* Navbar padding adjustment */
    .navbar .container-xxl {
        padding: 0 15px !important;
    }
    
    /* Mobile navigation adjustments */
    .navbar .nav-link {
        padding: 10px 16px !important;
        font-size: 0.95rem !important;
    }
    
    .navbar .dropdown-item {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .navbar .btn-primary {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .navbar .logo img {
        width: 160px !important;
    }
    
    #navbarNav {
        margin-top: 10px !important;
        padding: 15px 0 !important;
    }
    
    .navbar .nav-link {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
    
    .navbar .dropdown-item {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .navbar .btn-primary {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
}

.navbar-light .navbar-brand {
    color:#101f3c;
}

.navbar-brand {
    margin-right:30px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    font-weight: 600;
    border-left: 1px solid #fff;
}

.navbar-light .navbar-nav .nav-item:first-child .nav-link{
    border:none;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color:rgba(16, 31, 60, 1);
}

.navbar-light .navbar-nav .nav-link.active {
    color:rgba(16, 31, 60, 1);
    font-weight: bold;
}

.navbar-expand .navbar-nav .nav-link {
    padding:0 1.2rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 16px;
}

.footer-menu li a{
    color: #fff;
    display: block;
    padding: 7px 0;
}

.footer-bottom{
    border-top:1px solid #fff;
    padding:35px 0;
    font-size: 15px;
}

.footer-bottom-menu ul li{
    padding: 0 0 0 8px;
    margin-left: 30px;
}

.footer-bottom-menu ul li:nth-child(1){
    list-style: none;
}


.footer-bottom-menu ul li a{
    color:var(--white-color);

}

/* ---------- MAIN CONTAINER ---------- */

p a {
    color:#3544b1;
}

p a:hover, p a:focus {
    color: rgba(53, 68, 177, 0.8);
}

.grey-bg {
    background-color:#F9F7F4;
}

.orange-bg {
    background-color: rgba(247, 156, 55, .8);
    color: white;
}

.move-top{
    margin-top:-120px
}

.z-1{
    z-index: 1;
}

/* ---------- BLOG on Homepage ---------- */

.blog-promoImage{
    border: 1px solid #b4c3cf;
    border-radius: 3px;
    background:#fff;
    padding: 3px;
}

.blog-promoImage img{
    border: 1px solid #9faeba;
    background:#fff;
    padding: 3px;
}

.pl-0{
    padding-left:0;
}

.box-blog {
    border: 1px solid #1b4a67;
    background:#e6ebf1;
    border-radius: 3px;
    padding:10px;
}

.box-blog .blog-meta {
    font-style: italic;
    color: rgba(0, 0, 0, .7);
    font-size: 13px;
}

.blog-box-btn {
    margin-bottom:10px;
}

/* ---------- ContantPage ---------- */

.caption-block{
    padding:3rem 6rem
}

.radius-t-b{
    border-radius:100px 0 100px;
    overflow: hidden;
}

.radius-tr-bl{
    border-radius:0 100px 0 100px;
    overflow: hidden;
}

.radius-tl{
    border-radius:100px 0 0 0;
    overflow: hidden;
}

.radius-br{
    border-radius:0 0 100px 0;
    overflow: hidden;
}

.footer-social-icon li{
    padding-right:15px;
}

.footer-social-icon a{
    color:var(--greenlight-color);
    font-size: 50px;
}

/* ---------- BLOG ---------- */

a.featured-link {
    color: #212529
}

a.featured-link:hover, a.featured-link:focus {
    text-decoration: none;
}

.featured-blog .image-box {
    width:100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    margin-bottom:20px;
    border-radius: 3px; 
}

.thumbnail-blog {
    padding-bottom: 5px;
    border-bottom: rgba(53, 68, 177, 1) solid 2px;
    margin-bottom: 35px;
    transition: ease .5s;
}

.thumbnail-blog h5 {
    font-weight: 700;
}

.thumbnail-blog .thumbnail-img {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
    border-radius: 3px;
    transition: ease .5s;
}

a.featured-link:hover .thumbnail-blog {
    border-bottom: #f79c37 solid 2px;
}

a.featured-link:hover .thumbnail-blog .thumbnail-img {
    opacity: .6;
}

/* ---------- BLOGPOST ---------- */

.intro {
    font-size: 125%;
    color: rgba(16, 31, 60, 1);
    margin-bottom: 30px;
    border-bottom:  #f79c37 solid 2px;
}

.meta-author.p-3 {
    padding: 0 !important;
}

.meta-meta a {
    color:#3544b1;
}

.meta-meta a:hover, .meta-meta a:focus {
    color: rgba(53, 68, 177, 0.8);
    text-decoration: none;
}

.blog-related {
    color:rgba(16, 31, 60, 1);
}

.blog-related h4 {
    text-decoration: underline;
}

.blog-related a {
    color:rgba(16, 31, 60, 1);
}

.blog-related a:hover, .blog-related a:focus {
    color:black;
    text-decoration: none;
}

/* ---------- CONTENTPAGE 2 ---------- */

div.teammember {
    line-height: 32px;
    font-size: 15px;
    margin-bottom: 100px;
}

/* ---------- FOOTER ---------- */

.footer {
    background-color:#1b264f;
    color: white;
}

.footer h4 {
    margin-bottom: 20px;
}

ul.footer-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.footer-links li {
    line-height: 32px;
}

ul.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
}

ul.footer-links li a:hover, ul.footer-links li a:focus {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

.footer img {
    width:30%;
}

/* ---------- STYLE FOR GRID EDITOR ---------- */

.grid-section .img-fluid img {
    max-width: 100%;
    height: auto;
}

.header-section{
    width:100%;
}
.header.GMPheader{
    width:100%;
    background: #fff;
    text-align: center;
}
.container-inner{
    max-width: 900px;
    margin: auto;
}

.welcome-text h6{
    font-size: 1rem;
}

.header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 367px;
}

nav.navbar .navbar-bg{
    background: #2a8bbc;
    margin: auto;
    border-radius: 5px;
    width: 100%;
    padding: 3px 0;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 1.25rem;
    padding:7px 15px !important;
    color: #fff !important;
    font-weight: 500;
}

.copyright-message{
    font-size: 14px;
}

.footer-top{
    font-size: 0.9rem;
    color: #1b4a67;
    font-weight: 500;
}

.footer-menu .navbar-nav .nav-link{
    color: #1b4a67;
    text-transform: capitalize; 
    padding: 0 0 5px;
    font-size: 15px;
    font-size: 1.1rem;
}

.footer-menu .navbar-nav .nav-link:hover{
    text-decoration:underline;
}

.border-left{
    border-left:1px solid #fff;
}

.social-icon a{
    border-radius: 15px;
    color: #fff;
    background: #4275b0;
    display: block;
    text-align: center;
    padding: 10px;
    width: 66px;
}

/*============== search section ============*/

.search-block{
    padding: 0 15px;
    max-width: 280px;
    width: 100%;
    position:relative;
    margin:0px;
}

::placeholder {
  color: #2a8bbc;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #2a8bbc;
}

.search-block input[type="text"]{
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 5px 35px 5px 10px;
    color: #2a8bbc;
}

.search-block input[type="text"]:focus{
    border:none;
    outline:none;
}

.search-block button{
    position: absolute;
    right: 18px;
    background: none;
    border: none;
    color: #2a8bbc;
    top: 13px;
}

/*======end=== search section =========*/

/*======fade section =========*/

.fadein {
  opacity: 0;
  transition: all 1.5s;
  transform: translate(0, 150px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, -50px);
}

/*======end ===fade section =========*/

/*=========== menu section =========*/

 .menu-row .menu-info {
	 margin-bottom: 30px;
	 font-size: 16px;
}

 .menu {
	 display: flex;
	 flex-wrap: wrap;
}
 .menu li {
	 margin-right: 10px;
}
 
/*=================*/

.copyright-message p{
    margin:0px;
}

table tr{
    height:auto !important;
}

table tr th {
    text-align: center;
    color: rgb(255, 255, 255);
    background: rgb(42, 139, 188) !important;
    border: 2px solid #1b4a67 !important;
    height: auto !important;
    padding: 7px 0 !important;
}

table tr th, table tr td {
    padding: 3px 8px;
}

table tr th {
    text-transform: uppercase;
}
.small-text {
    font-size: 0.7rem;
}
.sidebar-content ul {
    padding: 0px;
    margin: 0px;
}
.sidebar-content ul li {
    list-style: none;
    padding: 0.15rem 0px;
}
.bg-none {
    background: none;
}
table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
table tbody tr:nth-child(even) {
  background-color: #d3e0ef;
}
table tbody tr:nth-child(odd) tr{
    background:none;
}
table tbody tr:nth-child(even) tr{
    background:none;
}
table tbody > tr{
    height: auto !important;
}
table tbody > tr > td {
    padding: 5px 7px;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: #231f20;
    border: 2px solid #1b4a67;
    height: auto !important;
}
table tbody > tr > td P{ color: #231f20 !important; }
.short_content {
    color: #fff;
}

table tbody > tr > td table tr td{
    border:none !important;
    padding: 0 !important;
}
.bg-lightblue {
    background:#92d8f3;   
}

.menu-bottom{
    background: #2a8bbc;
    margin: auto;
    border-radius: 5px;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.menu-bottom .navbar-nav{
    flex-direction:row;
}

.menu-bottom li{
    display:inline-block;
}

.menu-bottom li:last-child a{
    border:none;
}

.menu-bottom a{
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 2px 16px;
    text-align: center;
    border-right: 1px solid #fff
}

.slick-prev{
    left: 30px !important;
    z-index:111;
    width: auto !important;
    height: auto !important;
}

.slick-next{
    right: 30px !important;
    z-index: 111;
    width: auto !important;
    height: auto !important;
}

.slick-prev::before{
    font-size: 40px !important;
    background:url(/media/tbrhiczr/previous-icon.svg) no-repeat;
    width: 80px;
    height: 80px;
    display: block;
    content: "" !important;
}

.slick-next::before{
    font-size: 40px !important;
    background:url(/media/w3bhmwre/next-icon.svg) no-repeat;
    width: 80px;
    height: 80px;
    display: block;
    content: "" !important;
}

.caption-section .caption{ 
    padding: 0 15px;
}

.caption{
    max-width: 500px;
}

.end{
    right:50px; 
}

.bottom{
    bottom:40px;
}

.service-block:nth-child(2){
    flex-direction: row-reverse;
}

.heading-seperater{
    position:relative
}

.heading-seperater:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    background:var(--black-color);
    width:80px;
}

.heading-seperater-white:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    background:var(--white-color);
    width:80px;
}

.news-column{
    min-height:508px;
    justify-content: space-between;
}

.footer-logo img{
    max-width: 367px;
    width: 100%;
}

.caption-service{
    padding-right: 90px;
}

/*============ location map ===========*/

.location-map-inner{
    max-width:1320px;
    margin:auto
}

.tooltip-map {
  position: absolute;
  display: none;
  background:#fff;
  border-radius: 50px 0 50px 0;
  max-width: 412px;
  overflow: hidden;
}

.tooltip-active {
    display: block; 
}

.tooltip-map{
    top: 0;
}

.location-image img{
    aspect-ratio: 3/2;
}

#wa-tool {
  cursor: pointer;
  pointer-events: visiblePainted;
}

#WA{
    cursor: pointer;
    pointer-events: visiblePainted;
}

.cursor-pointer{
    cursor: pointer;
}

.ca-tooltip{
    top: 380px;
    left: 0;
}

.wa-tooltip{
    top: 50px;
    left: 100px;
}

.pa-tooltip{
    right: 0;
}

.ga-tooltip{
    top: 420px;
    right: 0;
}

.ms-tooltip{
    top: 220px;
    right: 370px;
}

.tx-tooltip{
    top: 380px;
    right: 680px;
}

.nyc-tooltip{
    right:1px;
}

.hou-tooltip {
    top: 430px;
    right: 501px;
}

.sav-tooltip{
    top: 420px;
    right: 0;
}

/*=======end===== location map ===========*/

.footer-bottom p{
    margin:0
}

.footer-bottom ul{
    margin:0
}

.read-more{
    transition: ease all 1s;
}

.read-more:hover{
    transform: scale(1.1);
}

@media (max-width: 1490px) {
    html{
        font-size:85%
    }
}

@media (max-width: 991px) {
    .caption-block {
        padding: 3.5rem 3rem;
    }

    .footer-bottom-menu ul li{
        margin: 0 15px;
    }

    .end{
        right:30px;
    }

    .news-column{
        min-height: 400px;
    }
}

@media (max-width: 768px) {

    .caption-section .caption {
        padding: 15px 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) {
    
}


@media (min-width: 768px) {
 
}

@media (min-width: 769px) {
   
}

@media (min-width: 769px) and (max-width: 991px) {
    
}

@media (max-width: 768px) {
    
}

.specialty-column .relative h2.text-uppercase.text-primary{
    word-break: break-word;
}

/* ---------- SHARED NAVBAR STYLES ---------- */

/* Remove default browser spacing and set page background */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--skylight-color) !important;
}

/* Add background to navbar */
.navbar {
    background-color: var(--blue-color) !important;
    background: var(--blue-color) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
    padding: 0.5rem 0 !important;
    min-height: 60px !important;
}

/* Vertically center navbar content */
.navbar .container-xxl {
    display: flex !important;
    align-items: center !important;
    min-height: 60px !important;
}

/* Make navbar text smaller */
.navbar .nav-link {
    font-size: 0.875rem !important;
    padding: 0.5rem 0.75rem !important;
}

/* Make logo smaller */
.navbar .logo img {
    width: 200px !important;
    height: auto !important;
}

/* Change customers and portal button colors to teal */
.navbar .btn-primary {
    background-color: var(--greenlight-color) !important;
    border-color: var(--greenlight-color) !important;
    color: var(--blue-color) !important;
    font-size: 0.875rem !important;
}

/* Center navbar items vertically */
.navbar .navbar-nav {
    align-items: center !important;
}

.navbar .head-right {
    display: flex !important;
    align-items: center !important;
    margin-top: 0 !important;
}