*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --textColor: #808080;
    --bluePrimary: #0077ff;
}
body{
    font-family: 'Roboto', sans-serif;
    height: 100%;
    background-color: rgb(255, 255, 255);
}
.borderiguess{
    height: 64vh;
    margin: 2rem;
}
.flexbox{
    justify-content: center;
    flex-direction: row;
    display: flex;
    gap: 2rem;
    width: 100%;
    padding-bottom: 20vh;
    flex-wrap:nowrap;
}
.text{
    justify-content: flex-start;
    gap: 2rem;
    margin: 2.5%;
    display: flex;
    flex-direction: column;
    font-size: calc(1.25rem);

}
.text p{
    margin-left: 3rem;
}
.text h2{
    margin: 3rem;

}
.infoicon{
    z-index: -1;
    opacity: 0.1;
    width: 7rem;
    height: auto;
    align-self: flex-start;
    position: absolute;
}
.textheader{
    height: 7rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: calc(15px + 0.8vw);
}
.mapouter{
    border-radius: 3%;
    margin: 2.5%;
}
.gmap_canvas{
    border-radius: 3%;
    height: auto;
    justify-content: center;

}
.text::-webkit-scrollbar {
    visibility: visible;
    width: 0.5vw;
    min-width: 5px;
}
.text::-webkit-scrollbar-track {
    background: #99ce2420;
    visibility: visible;
    border-radius: 8px;
    background-clip: padding-box;
}
.text::-webkit-scrollbar-thumb {
    background: rgb(225, 225, 225);
    visibility:visible;
}
.text::-webkit-scrollbar-thumb {
    background-color: #98ce24e0;
    border: 0.1vw solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
}
.text::-webkit-scrollbar-thumb:hover {
    background-color: #99ce24;
}
@media only screen and (max-aspect-ratio:2130/1800){
    .text{
        text-align: center;
        align-items: center;
        font-size: calc(10px + 1.5vw);
        width: 100%;
        height: auto;
    }
    .text p{
        margin-left: 0;
    }
    .flexbox{
        flex-wrap:  wrap-reverse;
    }
    .mapouter{
        width: 80vw!important;
        height: 50vh!important;
        min-width: 0!important;
    }
    #gmap_canvas{
        width: 80vw!important;
        height: 50vh!important;
    }
}