.map_section_alt {
    & .section_inner {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
		flex-wrap: wrap;
		
		& .content {
			width: 48%;
			
			@media (max-width: 991px) {
				width: 100%;
			}
		}
        
        & .map_outer {
            width: 48%;
            position: relative;
            overflow: hidden;
			
			@media (max-width: 991px) {
				width: 100%;
			}
            
            iframe {
                width: 100%;
            	height: 45rem;
            }
        }
    }
}