﻿/* 
  ##Device = All
  ##Screen = Styles will be apply for all resolutions
*/

/* CSS */

body {
    font-family: AvantGarde Bk BT;
}

.mapContainerDesktop {
    display: flex;
    padding: 3rem;
}

.mapContainerText {

}

.mapTitle {
    font-size: var(--Inchcape-Titles);
    margin-bottom: 3rem;
}

.mapText {
    font-size: var(--Inchcape-Normal)
}

.mapContainer {
    display: flex;
}

.mapContainerMobile {
    display:none;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: auto;
    width: 100%;
}

.gmap_canvas2 {
    overflow: hidden;
    background: none !important;
    height: auto;
    width: 100%;
}

.mapouter2 {
    /*position: relative;*/
    text-align: right;
    height: auto;
    width: 100%;
}

.mapouter {
    /*position: relative;*/
    text-align: right;
    height: auto;
    width: 100%;
}


/* 
  ##Device = Desktops large
  ##Screen = 1920px to higher resolution desktops
*/
@media (min-width: 1920px) {
    /* CSS */
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to 1919px
*/

@media (min-width: 1281px) and (max-width: 1919px) {

    /* CSS */

}

/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */

}

/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */
    .mapContainerDesktop {
        display: flex;
        flex-direction: column-reverse;   
    }

    .mapContainer {
        display:flex;
    }

    .mapContainerMobile {
        display:none;
    }
}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */

}

/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */

}

/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

@media (min-width: 320px) and (max-width: 480px) {

    /* CSS */
    .mapContainerDesktop {
        display: flex;
        flex-direction: column-reverse;
        padding:2rem;
    }

    .mapContainer {
        display: none;
    }

    .mapContainerMobile {
        margin-bottom:2rem;
        display:block;
    }

}
