html,
body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-flow: column;
}

.ol-zoom {
    display: none;
}

.bg-cyan-900 {
    background: rgba(22, 78, 99);
    top: 0 !important;
    left: 0;
    position: sticky;
    z-index: 99999;
}
#header {
    padding: 0px 0px !important;
    z-index: 99999;
    position: sticky;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 70px;
    background: #26245d;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transition: all 0.5s;
}
nav {
    position: sticky;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 70px;
    background: #ffffff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transition: all 0.5s;
}

nav .heademenu {
    height: 100%;
    max-width: 1750px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* padding: 0 50px; */
}

.heademenu .brandlogo {
    margin-right: auto;
}

.heademenu .brandlogo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .heademenu .nav-relations {
    line-height: 70px;
    height: 100%;
}

nav .heademenu .relations {
    display: flex;
}

nav .heademenu .relations li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .heademenu .relations li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #003e83;
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 768px) {
    nav .heademenu .relations li a {
        color: #fff;
    }
}
.relations li:hover .customWeb-arrow,
.relations li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .heademenu .relations li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .heademenu .relations li .child-nav {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .heademenu .relations li:hover .customWeb-child-nav,
nav .heademenu .relations li:hover .js-child-nav {
    display: block;
}

.heademenu .relations li .child-nav li {
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.heademenu .relations li .child-nav a {
    color: #003e83;
    font-size: 12px;
    font-weight: 500;
}

.heademenu .relations li .child-nav .more-arrow {
    line-height: 40px;
}

/* .heademenu .relations li .customWeb-more-child-nav {
  line-height: 40px;
} */

.heademenu .relations li .child-nav .more-child-nav {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.relations li .child-nav .more:hover .more-child-nav {
    display: block;
}

.heademenu .custom-search {
    position: relative;
    height: 40px;
    width: 40px;
}

.heademenu .custom-search i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heademenu .custom-search .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #4885ed;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.heademenu.showInput .custom-search .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #4885ed;
}

.custom-search .input-box::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: #4885ed;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.custom-search .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.heademenu .nav-relations .sidebar-brandlogo {
    display: none;
}

.heademenu .bx-menu {
    display: none;
}

@media (max-width: 920px) {
    nav .heademenu {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .heademenu .brandlogo a {
        font-size: 27px;
    }

    nav .heademenu .relations li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .heademenu .relations li a {
        font-size: 15px;
    }
}

@media (max-width: 800px) {
    /* nav {
      position: relative;
  } */

    .heademenu .bx-menu {
        display: block;
    }

    nav .heademenu .nav-relations {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #004b94;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .heademenu .nav-relations .sidebar-brandlogo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-brandlogo .brandlogo-name {
        font-size: 25px;
        color: #004b94;
    }

    .sidebar-brandlogo i,
    .heademenu .bx-menu {
        font-size: 25px;
        color: #000;
    }

    nav .heademenu .relations {
        display: block;
        margin-top: 20px;
        text-align: left;
    }

    nav .heademenu .relations li .arrow {
        line-height: 40px;
    }

    nav .heademenu .relations li {
        display: block;
    }

    nav .heademenu .relations li .child-nav {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .heademenu .relations li .child-nav li {
        border-bottom: none;
    }

    .heademenu .relations li .child-nav .more-child-nav {
        display: none;
        position: relative;
        left: 0;
    }

    .heademenu .relations li .child-nav .more-child-nav li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .relations li:hover .customWeb-arrow,
    .relations li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .heademenu .relations li .child-nav .more-child-nav {
        display: none;
    }

    .heademenu .relations li .child-nav .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .relations li .child-nav .more:hover .more-child-nav {
        display: none;
    }

    nav .heademenu .relations li:hover .customWeb-child-nav,
    nav .heademenu .relations li:hover .js-child-nav {
        display: none;
    }

    .heademenu .nav-relations.show1 .relations .customWeb-child-nav,
    .heademenu .nav-relations.show3 .relations .js-child-nav,
    .heademenu .nav-relations.show2 .relations .more .more-child-nav {
        display: block;
    }

    .heademenu .nav-relations.show1 .relations .customWeb-arrow,
    .heademenu .nav-relations.show3 .relations .js-arrow {
        transform: rotate(180deg);
    }

    .heademenu .nav-relations.show2 .relations .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 370px) {
    nav .heademenu .nav-relations {
        max-width: 100%;
    }
}

/* End Navbar */
html,
body {
    /* font-family: "Google Sans", Roboto, sans-serif !important; */
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
}

#footer {
    margin-top: auto;
}
#map {
    flex: 1 1 auto;
    position: absolute;
    height: calc(100vh);
    width: calc(100vw);
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    bottom: 0;
}

.clickable,
button {
    cursor: pointer;
}

label.clickable {
    white-space: nowrap;
}

.error {
    color: red;
    font-weight: bold;
}

.icon {
    width: 1.4em;
    height: 1.4em;
    vertical-align: middle;
}

.hidden {
    display: block;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.main {
    display: flex;
    flex-flow: column;
    height: 100%;
    margin: 0;
}

.rows {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.columns {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    padding: 3pt 3pt;
}

.columns > div {
    margin: 1pt;
}

.small {
    font-size: smaller;
}
/* 
input[type="text"],
input[type="number"] {
    border: 1px solid #222;
    font-family: "Google Sans", Roboto, sans-serif !important;
    font-size: 12pt;
    padding: 3pt;
    min-width: 8.5em;
}

input[type="text"]:read-only {
    border: 1px dotted #444;
}

input[type="text"]:invalid + span:after {
    position: relative;
    content: "✖";
    left: -1em;
    color: red;
}

input[type="text"]:valid + span:after {
    position: relative;
    content: "✓";
    left: -1em;
    color: green;
} */

header {
    padding: 0.5ex 4pt;
    font-size: 14.5pt;
    font-weight: bold;
    background-color: #222;
    color: #fff;
}

footer {
    background-color: #222;
    color: #ddd;
    font-size: smaller;
    left: -1em;
    margin: 0;
    padding: 2pt;
}

a {
    text-decoration: none;
}

footer a {
    color: #fff;
}

footer a:visited {
    color: #eee;
}

div {
    position: revert;
}

.bubble {
    position: absolute;
    margin-top: 10px;
    background-color: rgba(222, 20, 20, 0.9);
    color: #eee;
    padding: 1ex 1em;
    z-index: 999;
    transition-property: opacity, visibility;
    transition-duration: 250ms;
    transition-timing-function: ease-out;
    opacity: 0;
    visibility: hidden;
}

.bubble.show {
    transition-property: opacity, visibility;
    transition-duration: 250ms;
    transition-timing-function: ease-in;
    opacity: 1;
    visibility: visible;
}

.bubble:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: rgba(222, 20, 20, 0.9);
    border-top: 0;
}

.longpress {
    animation-name: longpress;
    animation-delay: 120ms;
    animation-duration: 380ms;
    animation-timing-function: ease-in-out;
}

@keyframes longpress {
    0% {
        background: inherit;
    }

    100% {
        background: rgb(174, 255, 97);
    }
}

@media (max-height: 800px) {
    header {
        padding: 0.3ex 3px;
        font-size: 12.5pt;
        text-align: center;
    }

    /* footer {
      display: none;
  } */
}

@media (max-width: 800px) {
    header {
        text-align: center;
    }
}

.olc-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.olc-label .code1.roadmap {
    color: rgba(68, 122, 221, 0.5);
}

.olc-label .code2.roadmap {
    color: rgba(68, 122, 221, 0.5);
}

.olc-label .code3.roadmap {
    color: rgba(68, 122, 221, 0.5);
}

.olc-label .code1.satellite {
    color: rgba(231, 231, 68, 0.5);
}

.olc-label .code2.satellite {
    color: rgba(231, 231, 68, 0.5);
}

.olc-label .code3.satellite {
    color: rgba(231, 231, 68, 0.5);
}

.map-control {
    background-color: #fff !important;
    width: 35px;
    height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 30px;
}

.map-control.clickable:hover {
    background-color: #e0e0e0;
}

.enabled {
    background-color: #ccc;
}

.map-control.disabled {
    display: none;
}

.additional-controls {
    margin-top: 212px;
    /* border: 2px solid #fff; */
    /* box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px; */
    /* background-color: #fff; */
    /* display: none; */
    /* position: absolute !important; */
    width: 36px !important;
    /* height: 42px !important; */
    display: block !important;
    text-align: center !important;
    bottom: 15% !important;
    right: 15px !important;
    top: auto !important;
    left: auto !important;
}
@media (max-width: 900px) {
    .additional-controls {
        margin-top: 212px;
        /* border: 2px solid #fff; */
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
        height: 35px;
        /* background-color: #fff; */
        /* display: none; */
        /* position: absolute !important; */
        width: 36px !important;
        height: 42px !important;
        display: block !important;
        text-align: center !important;
        bottom: 21% !important;
        right: 15px !important;
        top: auto !important;
        left: auto !important;
    }
}
@media (max-width: 900px) {
    .map-control-sec {
        position: fixed !important;
        right: 15px !important;
        top: 72% !important;
        margin-top: -93px !important;
        z-index: 1 !important;
    }
}
/* map layers */
.gm-svpc {
    background: rgb(255, 255, 255);
    border: 0px;
    margin: 0px;
    padding: 0px;
    text-transform: none;
    appearance: none;
    position: absolute;
    cursor: url(https://maps.gstatic.com/mapfiles/openhand_8_8.cur), default;
    user-select: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    border-radius: 2px;
    width: 35px !important;
    height: 35px !important;
    touch-action: none;
    left: -2px !important;
    top: auto !important;
    bottom: 100px !important;
    border-radius: 30px !important;
}
.map-c-item:hover {
    cursor: pointer;
}
.thumbnail {
    position: relative;
    display: inline-block;
}

.thumb-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
    background-color: rgba(0, 100, 0);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.active .thumb-icon {
    display: block;
}

#print-btn {
    margin-top: 20px;
    cursor: pointer;
    padding: 10px;
    background-color: #efefef;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}
@media print {
    body * {
        visibility: hidden;
    }
    #map,
    #map * {
        visibility: visible;
    }
    #map {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    #map {
        height: 100%;
        width: 100%;
    }
    @page {
        size: a4;
        margin: 0mm;
    }
    @media print {
        @page {
            size: auto;
            margin: 0mm;
        }
        .map-control {
            display: none;
        }
    }
}
.map-control-sec {
    position: fixed;
    right: 15px;
    top: 80%;
    margin-top: -93px;
    z-index: 1;
}
.map-control-sec .map-c-item {
    background-color: #fff;
    border-radius: 30px;
    margin-bottom: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.map-control-sec .map-c-item a {
    color: #0b1026;
    width: 36px;
    height: 42px;
    display: block;
    text-align: center;
    line-height: 47px;
}
.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
}
.map-control-sec .map-c-item a:last-child {
    border-top: 1px solid #efefef;
    line-height: 34px;
}
.map-control-sec .map-c-item a {
    color: #0b1026;
    width: 36px;
    height: 42px;
    display: block;
    text-align: center;
    line-height: 47px;
}
map-control-sec .map-c-item {
    background-color: #fff;
    border-radius: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.map-control-sec .map-c-item a.current-loc {
    border: 0;
    height: 36px;
    line-height: 33px;
}
.search-new-sec i,
.map-control-sec i {
    font-size: 24px;
    margin-top: 1px;
}
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    padding-top: 5px;
}

.sidebar {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -350px;
    width: 330px;
    height: 50%;
    color: #212121;
    font-family: "Montserrat Light", "Helvetica Neue", Arial, sans-serif;
    transition: all 0.5s ease;
    /* background-color: #fff;
    -webkit-box-shadow: 0 3px 4px 2px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 4px 2px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 4px 2px rgba(0, 0, 0, 0.23); */
    padding: 80px 10px;
}

.sidebar.open {
    right: 0;
}

.sidebar-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    color: #000;
    /* background-color: #333; */
    border: none;
    cursor: pointer;
    background: transparent;
}

.mapStyleList li .mapStyleBlock .mapStyleImg {
    height: 58px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.thumbnail {
    height: 58px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.caption .thumb_text {
    font-weight: 700;
    /* margin-top: 5px; */
    margin-bottom: 10px;
    font-size: 12px;
    margin-left: 10px;
    color: #3f3e3e;
}
/* features */
.wrapper {
    width: 100%;
    /* padding-left: 1.7rem;
      padding-right: 1.7rem; */
    padding-top: 2rem;
    margin-bottom: 1rem;
    background: #fff;
    height: auto;
}

.grid-cols-2 {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-text {
    color: #3c4043;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    /* margin: 0 auto; */
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 740px;
}

.grid-item-1 {
    padding-top: 8rem;
    padding-left: 1.5rem;
}

.main-heading {
    /* font-weight: 300;
      font-size: 40px;
      line-height: 55px; */
    align-self: flex-end;
    margin-right: 0;
    font-size: 25px;
}

.grid-item-2 {
    width: 100%;
    height: 100%;
}

.team_img_wrapper {
    width: 500px;
    max-width: 100%;
    height: 440px;
}

.team_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 991px) {
    .grid-cols-2 {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
}

@media screen and (max-width: 991px) {
    .grid-item-1 {
        order: 1;
        /* display: flex; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }
}

@media screen and (max-width: 991px) {
    .grid-item-2 {
        order: 2;
        /* display: flex; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 991px) {
    .team_img_wrapper {
        width: 350px;
        height: 350px;
    }
}

/* Footer section */
footer {
    position: relative;
    background: #26245d;
    width: 100%;
    bottom: 0;
    left: 0;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100px;
    height: 1px;
    width: 100%;
    background: #afafb6;
}

footer .content {
    max-width: 1750px;
    margin: auto;
    padding: 30px 0px 0px 40px;
}

footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.content .top .logo-details {
    color: #fff;
    font-size: 30px;
}

.content .top .media-icons {
    display: flex;
}

.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
    background: #4267b2;
}

.top .media-icons a:nth-child(1):hover {
    color: #4267b2;
    background: #fff;
}

.top .media-icons a:nth-child(2) {
    background: #1da1f2;
}

.top .media-icons a:nth-child(2):hover {
    color: #1da1f2;
    background: #fff;
}

.top .media-icons a:nth-child(3) {
    background: #e1306c;
}

.top .media-icons a:nth-child(3):hover {
    color: #e1306c;
    background: #fff;
}

.top .media-icons a:nth-child(4) {
    background: #0077b5;
}

.top .media-icons a:nth-child(4):hover {
    color: #0077b5;
    background: #fff;
}

.top .media-icons a:nth-child(5) {
    background: #ff0000;
}

.top .media-icons a:nth-child(5):hover {
    color: #ff0000;
    background: #fff;
}
.top .media-icons a:nth-child(6) {
    background: #000;
}

.top .media-icons a:nth-child(6):hover {
    color: #000;
    background: #fff;
}

footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .content .link-boxes .box {
    width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}

.link-boxes .box .link_name::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}

.content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}

.content .link-boxes .box li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.content .link-boxes .input-box {
    margin-right: 55px;
}

.link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #afafb6;
    background: #140b5c;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
    color: #afafb6;
    font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
    background: #fff;
    color: #140b5c;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
    opacity: 1;
}

footer .bottom-details {
    width: 100%;
    background: #26245d;
}

footer .bottom-details .bottom_text {
    max-width: 1750px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
}

.bottom-details .bottom_text a {
    margin-right: 10px;
}

@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }

    footer .content .link-boxes .input-box {
        width: 40%;
        margin-top: 10px;
    }
}

@media (max-width: 700px) {
    footer {
        position: relative !important;
    }

    .content .top .logo-details {
        font-size: 26px;
    }

    .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    footer .content .link-boxes .box {
        width: calc(100% / 3 - 10px);
    }

    footer .content .link-boxes .input-box {
        width: 60%;
    }

    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    footer::before {
        top: 145px;
    }

    footer .content .top {
        flex-direction: column;
    }

    .content .top .media-icons {
        margin-top: 5px;
        margin-right: 50px;
    }

    footer .content .link-boxes .box {
        width: calc(100% / 2 - 10px);
    }

    footer .content .link-boxes .input-box {
        width: 100%;
    }
}

/* End Footer Section */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    z-index: 9999;
    line-height: 2 !important;
    padding: 0.4rem 1.2rem !important;
}

nav .heademenu .relations li a {
    font-weight: 500;
}

nav .heademenu .relations li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: red;
    opacity: 0;
    transition: opacity 0.3s;
}
nav .nav-relations .relations li.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: red;
}

nav .nav-relations .relations li.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: red;
}

nav .heademenu .relations li a:hover::before,
nav .heademenu .relations li a.active::before {
    opacity: 1;
}
#infoBox {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.controls button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lineContainer {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

#line {
    stroke: #ff0000;
    stroke-width: 2;
    pointer-events: none;
}

.searchResults {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
