
/************************   GRID ELEMENTS  ******************************/

.grid-container-all {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0px;
        background-color: white;
        padding: 0px;
        }


.grid-container-index {
        grid-template-areas: 'header header'
                             'topstripe topstripe'
                             'lefttelescope righttelescope'
                             'betterway betterway'
                             'leftfeature1 rightfeature1'
                             'leftfeature2 rightfeature2'
                             'leftfeature3 rightfeature3'
                             'leftfind rightfind'
                             'leftsummary rightsummary'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe'
                             'wholewidth wholewidth';
        }


.grid-container-aboutus {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'leftfeature1 rightfeature1'
                             'leftfeature2 rightfeature2'
                             'leftfeature3 rightfeature3'
                             'leftfind rightfind'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
        
.grid-container-blog {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'wholewidth wholewidth'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }

        
.grid-container-blogmenu {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'leftfeature1 rightfeature1'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
        
.grid-container-business {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'leftfeature1 rightfeature1'
                             'leftfind rightfind'
                             'leftsummary leftsummary'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }

        
.grid-container-casestudies {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'leftfeature1 rightfeature1'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        

.grid-container-casestudy {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'wholewidth wholewidth'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }

        
.grid-container-communication {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'leftfeature1 rightfeature1'
                             'leftfeature2 rightfeature2'
                             'leftsummary leftsummary'
                             'rightsummary rightsummary'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
.grid-container-contact {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'wholewidth wholewidth'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }


.grid-container-everywhere {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'leftfeature1 rightfeature1'
                             'leftsummary leftsummary'
                             'rightsummary rightsummary'
                             'leftfind rightfind'
                             'wholewidth wholewidth'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
        
.grid-container-intuitive {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'leftfeature1 rightfeature1'
                             'leftsummary rightsummary'
                             'leftfind rightfind'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
.grid-container-modules {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'wholewidth wholewidth'
                             'leftfeature1 rightfeature1'
                             'leftsummary rightsummary'
                             'leftfind rightfind'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
        
.grid-container-privacy {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'wholewidth wholewidth'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }


.grid-container-secure {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'lefttelescope righttelescope'
                             'leftfeature1 rightfeature1'
                             'leftfeature2 rightfeature2'
                             'leftsummary leftsummary'
                             'rightsummary rightsummary'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }
        
        
.grid-container-sitemap {
        grid-template-areas: 'header header'
                             'betterway betterway'
                             'wholewidth wholewidth'
                             'leftfooter rightfooter'
                             'bottomstripe bottomstripe';
        }



.fullwidth {grid-area:header;}

.lefttelescope {grid-area: lefttelescope;}
.righttelescope {grid-area: righttelescope;}
.topstripe {grid-area: topstripe;text-align: center;}
.betterway {grid-area: betterway;text-align: center;}
.leftfeature1 {grid-area: leftfeature1;}
.rightfeature1 {grid-area: rightfeature1;}
.leftfeature2 {grid-area: leftfeature2;}
.rightfeature2 {grid-area: rightfeature2;}
.leftfeature3 {grid-area: leftfeature3;}
.rightfeature3 {grid-area: rightfeature3;}
.leftfind {grid-area: leftfind;}
.rightfind {grid-area: rightfind;}
.leftsummary {grid-area: leftsummary;}
.rightsummary {grid-area: rightsummary;}
.wholewidth {grid-area: wholewidth;}
.leftfooter {grid-area: leftfooter;}
.rightfooter {grid-area: rightfooter;}
.bottomstripe {grid-area: bottomstripe;}

