body{
    margin: 0;
}

.navbar-large {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 20px;
    font-size: 15px;
    font-family: "THICCCBOI, sans-serif";
}

.logo img {
    height: 39px;
    width: 206px;
}

.nav-items,.hs-menu-wrapper ul{
    list-style: none;
    display: flex;
    padding: 0 15px;
    margin: 0;
    align-items: center;
}

.nav-items li {
    list-style-type: none;
    position: relative;
}

.nav-items a , .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
    text-decoration: none;
    color: #75787b;
    padding: 2px 15px;
    display: block;
}

.dropdown a{
    display: flex;
    align-items: center;
}

.nav-items li:hover .dropdown-content,
.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

.nav-items li:hover .dropdown-content-two,
.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

.dropdown-content,
.sub-dropdown-content,
.dropdown-content-two {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding-left: 0;
}

.dropdown-content {
    min-width: max-content;
}

/* .dropdown-content-two {
min-width: 170px;
} */

.dropdown-content a,
.dropdown-content-two a,
.sub-dropdown-content a {
    /*   padding: 10px; */
    color: #75787b;
    text-decoration: none;
    display: block;
    position: relative;
}

.dropdown-content a:after,
.dropdown-content-two a:after,
.sub-dropdown-content a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.dropdown-content a:last-child:after,
.dropdown-content-two a:last-child:after,
.sub-dropdown-content a:last-child:after {
    /* display: none; Remove line for the last item */
}

.dropdown-content a:hover,
.dropdown-content-two a:hover,
.sub-dropdown-content a:hover {
    color: #004c97;
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown-content {
    left: 100%;
    top: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us a {
    font-size: 15px;
    background-color: #E35205;
    padding: 15px 15px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* .contact-us a:hover {
background-color: #0056b3;
} */

.arrow {
    border: solid #75787b;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

/* search */

.search-icon {
    display: inline-block;
    width: 20px; /* Adjust the width to match the SVG dimensions */
    height: 20px; /* Adjust the height to match the SVG dimensions */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23666666" width="24pt" height="24pt" viewBox="0 0 24 24" version="1.1"><g id="surface1"><path d="M 10.570312 0 C 4.742188 0 0 4.742188 0 10.570312 C 0 16.398438 4.742188 21.136719 10.570312 21.136719 C 16.398438 21.136719 21.136719 16.398438 21.136719 10.570312 C 21.136719 4.742188 16.398438 0 10.570312 0 Z M 10.570312 19.1875 C 5.816406 19.1875 1.953125 15.320312 1.953125 10.570312 C 1.953125 5.816406 5.816406 1.953125 10.570312 1.953125 C 15.320312 1.953125 19.1875 5.816406 19.1875 10.570312 C 19.1875 15.320312 15.320312 19.1875 10.570312 19.1875 Z M 10.570312 19.1875 "/><path d="M 23.714844 22.335938 L 18.121094 16.742188 C 17.738281 16.359375 17.121094 16.359375 16.742188 16.742188 C 16.359375 17.121094 16.359375 17.738281 16.742188 18.121094 L 22.335938 23.714844 C 22.523438 23.90625 22.773438 24 23.023438 24 C 23.273438 24 23.523438 23.90625 23.714844 23.714844 C 24.09375 23.332031 24.09375 22.714844 23.714844 22.335938 Z M 23.714844 22.335938 "/></g></svg>');
    background-size: contain; /* Ensure the background image fits within the span */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    vertical-align: middle; /* Align with text if necessary */
    margin-left: 5px;
}


.search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-input {
    height: 52px !important;
    width: 0;
    padding: 0;
    opacity: 0;
    background-color: #004c97 !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    outline: none;
    transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease !important;
    position: absolute;
    right: 0;
    z-index: -1;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 1;
    padding: 0;
}

.search-btn .fa-search {
    color: #000;
}

.search-container.active .search-input {
    width: 350px;
    opacity: 1;
    padding: 0 10px;
    z-index: 0;
}

/* endSearch */

/* mobile css */
.sidebar {
    display: none;
}

.sidebar {
    max-width: 972px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.logo-mobile img {
    width: 206px;
    padding: 15px;
    display: block;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    position: relative;
}

.menu li > a {
    display: block;
    padding: 10px 15px;
    color: #75787b;
    text-decoration: none;
    cursor: pointer;
}

.menu li > ul.submenu {
    display: none;
    list-style-type: none;
    padding-left: 20px;
}

.menu li.show > ul.submenu {
    display: block;
    border-bottom: 1px solid #004c97 !important;
}

/* Base style for all menu items */
.menu li > a::after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-left: 5px;
    vertical-align: middle;
}

.menu li:has(ul) > a::after {
    background-image: url('https://cdn2.hubspot.net/hubfs/685080/HubSpot_Template_Marketplace/Turbo_Sodium/assets/show.png');
}

.menu li.show:has(ul) > a::after {
    background-image: url('https://cdn2.hubspot.net/hubfs/685080/HubSpot_Template_Marketplace/Turbo_Sodium/assets/hide.png');
}

.menu li:not(:has(ul)) > a::after {
    content: none;
}


.search-container-mobile {
    display: flex;
    align-items: center;
}

.search-input-mobile {
    width: 300px !important;
    padding: 10px !important;
    border: 2px solid #0047ab !important;
    border-radius: 50px 0 0 50px !important;
    outline: none !important;
    background-color: #0047ab !important;
    height: 40px !important;
}

.search-button-mobile {
    background-color: #0047ab;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.search-icon-mobile,
.close-icon {
    font-size: 18px;
}

/* end mobile css */

/* where work start */

.container {
    padding: 20px 0;
    margin: auto;
}

.locations {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.region {
    flex: 1;
    min-width: 200px;
    margin: 0 15px;
}

.region h2 {
    font-size: 18px;
    color: #004c97;
    margin-bottom: 10px;
    font-weight: 400;
}

.region p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 20px;
}

.region h3 {
    color: #004c97;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

.region ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.region ul li {
    /*     padding: 5px 0; */
    color: #75787b;
    border-bottom: 1px solid rgba(98, 98, 98, 0.17);
    font-size: 15px;
    font-weight: 200;
}
/* where work end */

@media (max-width: 1248px) {
    .navbar-large {
        padding: 0 15px;
        height: 88px;
        font-size: 13px;
    }

    .logo img {
        height: 34px;
        width: 180px;
    }

    .contact-us a {
        font-size: 13px;
        padding: 10px 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }

    .nav-items a {
        padding: 10px 8px;
    }
}

@media (min-width: 1034px) {
    .world-regions-content {
        display: none !important;
    }
}

@media (max-width: 1034px) {
    .navbar-large {
        display: none;
    }

    .sidebar {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .where-we-work-content {
        display: none !important;
    }

    .mega-menu {
        display: none;
    }
}

.sidebar {
    justify-content: space-between;
    padding: 10px;
}

.logo-mobile {
    flex-grow: 1;
}

.hamburger-menu {
    display: flex;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.mega-menu {
    position: relative;
}

.mega-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mega-menu ul .container {
    max-width: 1200px;
    margin: 0 auto;
}


.nav-items > .contact-us a {
    background-color: #e1531d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.region .list li:hover {
    color: rgba(0, 76, 151, 0.87) !important;
}
.region .list .has-url:hover {
    color: rgba(0, 76, 151, 0.87) !important;
}
.region .list .has-url{
    background-color: #f4f4f4;
}

.region .list .no-url {
    cursor: default;
}

/* Container styles */
.world-regions-content {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.world-container {
    padding-left: 10px
        /*     display: flex; */
        /*     flex-direction: column; */
        /*     align-items: center; */
}

/* Header styles */
.world-header {
    text-align: center;
    margin-bottom: 20px;
}

/* Region item styles */
/* .region-list {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
width: 100%;
max-width: 600px; /* Adjust this width as needed */
} */

/* .region-item h3 {
margin: 0;
font-size: 18px;
cursor: pointer;
} */

/* Location list styles */
.location-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.location-list li {
    margin-bottom: 5px;
}

/* General hover color for all li elements */
.location-list li:hover {
    color: rgba(0, 76, 151, 0.87);
}

/* Specific hover color for li elements with a URL */
.location-has-url:hover {
    color: rgba(0, 76, 151, 0.87);
}

.goback {
    padding: 0 20px 20px 20px;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    color: #004c97;
}

