:root{
    --app-height:100vh;
    --icon-min-scale:1.0;
    --icon-max-scale:1.2;
}
@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-Regular.woff);
  }
#Group_27{
    display: none;
}  
#main{
    width:100%;
    height: var(--app-height);
    /* border: 5px solid brown; */
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
#main > svg{
    width: 100%;
    height: auto; 
    /* border: 10px solid green;  */
    padding-right: 25%;
    /* padding-top: 7%; */
    background: url(images/BG.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    visibility: hidden;
}
#main > svg > g.cls-10{
    transform: translateY(50px);
}
#map_nav{
    /* border: 2px solid green; */
    position: fixed;
    right: 72px;
    height: auto;
    /* top: 20px; */
    
    /* background: white; */
    max-width: 60px;
    /* transform: translateY(-50%); */
    /* background: linear-gradient(180deg, #0E9363 0%, #0D7A62 34%, #0B4261 100%); */
    /* opacity: 0.8; */
    /* border-radius: 10px; */
    padding: 13px;
    padding-left: unset;
    padding-right: unset;
    /* scale: 0.8; */
    top: 20px;
}

#map_nav .bg{
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
    /* background: linear-gradient(180deg, #0E9363 0%, #0D7A62 34%, #0B4261 100%); */
    opacity: 0.8;
    z-index: -1;
    border-radius: 10px;
}

#map_nav .col_div{
    padding-bottom: 5px !important;
    cursor: pointer;
    
}
#map_nav .col_div:not(:last-child){
    margin-bottom: 5px;
    
}
#map_nav .col_div:focus {
    display: none;
}
#map_nav .col_div.active div.text-rows{
    /* background: rgb(33 159 148/1); */
    background: #8BC53F;
}
#map_nav div.text-rows {
    display: none;
    /* background: tan; */
    margin-top: 20px;
    margin-left: -12px;
    color: #FFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    background: linear-gradient(180deg, #0E9363 -47.7%, #0D7A62 25.97%, #0B4261 162.79%);
    border-radius: 10px;
    padding-left: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

#map_nav .title{
    color: #FFF;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: inherit;
    text-align: center;
    display: none;
    /* background: tan; */
    /* padding-top: 13px;
    padding-bottom: 13px; */
}
#map_nav .icon{
    text-align: center;
    width: 100%;
}

#map_nav .icon img {
    height: 50px;
    /* top: -3px; */
    position: relative;
    animation-name: stretch;
    animation-duration: 0.8s; 
    animation-timing-function: ease-out; 
    animation-delay: 0;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}



#map_nav .text-row {
    /* background-color: brown; */
}
#map_nav .text-row .sub-icon{
    padding-right: 5px;
}
#map_nav .text-row .sub-icon img{
    height: 20px;
}
.transition-0-25{
    transition: all 0.25s;
}
.div-hide{
    opacity: 0 !important;
}

.map_main_logo {
    position: relative;
    animation-name: logo_height;
    animation-duration: 1.0s; 
    animation-timing-function: ease-out; 
    animation-delay: 0;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
    transform-origin: center center;
    /* transform: translate(-2%, 2%); */
}

.center_circle {
    position: relative;
    animation-name: circle_height;
    animation-duration: 3.0s; 
    animation-timing-function: ease-out; 
    animation-delay: 0;
    animation-direction: unset;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
    transform-origin: 664.92px 298.325px;
    /* 
        height: 234.010009765625 
        width: 235.9000244140625 
        x: 546.969970703125 
        y: 181.32000732421875
        transform-origin X = 546.969970703125 + 0.5*235.9000244140625 = 664.919982910156
        transform-origin Y = 181.32000732421875 + 0.5*234.010009765625 = 298.325012207031
    */
}
.center_circle.center_logo{
    animation-direction: alternate;
}

@media (hover: hover) {
    #map_nav .col_div:hover div.text-rows{
        /* background-color: rgb(33 159 148/1); */
        background: #8BC53F;
        transition: background 0.25s;
    }
   
} 

@media (min-aspect-ratio: 4/3) {
    #main > svg {
        /* border: 10px solid orange; */
        width: auto;
        height: 100%;
    }
}

/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {      }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  
    
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  
    :root{
        --icon-min-scale:1.5;
        --icon-max-scale:1.8;
    }

    #map_nav{
        max-width: 280px;
        padding-left: 13px;
        padding-right: 13px;
    }
    #map_nav .title{
        display: none;
    } 
    #map_nav .icon{
        text-align: left;
        width: auto;
    }
           
    #map_nav .icon img{
        height: 25px;
        top: 0px;
        position: unset;
    }
    #map_nav div.text-rows{
        display: block;
        /* font-size: 13pt; */
        font-size: 8pt;
        /* line-height: 20px; */
    }
    #map_nav .col_div{
        
    } 
   
      
    /* @media (hover: none) { 
        #map_nav .col_div:hover{
            background-color: unset;
       }
    } */
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {    
    #map_nav{
        max-width: 310px;
    }
    #map_nav div.text-rows{
        font-size: 9pt;
    }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {     
    #map_nav{
        max-width: 360px;
    }
    #map_nav div.text-rows{
        font-size: 11pt;
        line-height: 25px;
    }
}
@media (min-width: 1680px) {     
    #map_nav{
        max-width: 450px;
    }
    #map_nav div.text-rows{
        font-size: 15pt;
        line-height: 30px;
    }
 }

@media (min-aspect-ratio: 4/3),(max-height: 500px) {
    #main > svg {
        
    }
    #map_nav{
        /* border: 10px solid orange; */
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
        /* padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 10px;
        padding-bottom: 10px; */

        top: 0 !important;
        display: flex;
        justify-content: center;
        /* transform-origin: center; */
        /* max-width: 100px; */
        
    }
    #map_nav > div{
        
    
    }
    #map_nav .grid.gap-3{
        /* border: 2px solid green; */
        overflow: hidden;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* width: 100%; */
        padding-left: 5px;
    }
    #map_nav .grid.gap-3 .col_div{
        scale:1;
        /* padding: 0; */
    }
    #map_nav div.text-rows{
        font-size: 10pt;
        line-height: 20px;
        padding-top: 8px;
        padding-bottom: 10px;
    }
    #map_nav .col_div:not(:last-child) {
        margin-top: -8px;
        margin-bottom: 0px;
        padding-bottom:0px !important;
    }
}

/* @media screen and (min-width: 992px) and (max-width: 1400px) and (min-height: 500px) and ( max-height: 700px ){
    #map_nav .text-row{
        border: 1px solid red;
    }
} */
@media (min-width: 1024px) and (max-width: 1400px) and (min-height: 500px) and ( max-height: 700px ){
    #map_nav .text-row{
        /* background-color: tan; */
        height: 18px;
        font-size: 13px;
    }
    #map_nav .text-row .sub-icon{
        max-height: 16px;
    }
    #map_nav .text-row .sub-icon img{
        height: 100%;
    }
}
@keyframes stretch {
    0% {
        transform: scale( var(--icon-min-scale) );
        opacity: 0.5;
        
    }
    50% {
        /* background-color: orange; */
    }
    100% {
        transform: scale( var(--icon-max-scale)  );
        opacity: 1.5;
    }
}



@keyframes logo_height {
    0% {
        transform: translateX(0px) translateY(0px);
        scale: 1.0;
        /* transform: translate(0%, 0%);  */
    }
    50% {
        
    }
    100% {
        /* transform: translate(-75px, 40px);  */
        transform: translateX(0px) translateY(40px); 
        scale: 1.5;
        /* x:var(--logo_x);
        y:var(--logo_y); */
       
    }
}

@keyframes circle_height {
    0% {
        /* transform: translateX(0px) translateY(0px);
        scale: 1.0; */
        /* transform: translate(0%, 0%);  */
    }
    50% {
        
    }
    100% {
        
        /* transform: translate(-6.7%, -0.5%);
        scale: 2.0; */
        /* transform: translate(-45px, 30px); */
        transform: translate(0, 0);
        scale: 1.5;
        
       
    }
}
