/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
   
   header, ol, ul {
	list-style: none;
}


/* mobile css */


/* tablet css */


@media screen and (min-width:641px){
    body{
        overflow-x: hidden;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .mainhome {
        margin: 0;
        padding-top: 4em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 100%;
        margin: auto;
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-areas:
        'title1 title1'
        'hero hero'
        'img2 img3'
        'p1 p2'
        'p3 p4';
        grid-template-columns: 320px 320px;
        grid-template-rows:100px 410px 300px 300px 300px;
    }
    .hamb {
        display:none
    }
    .s {
        font-family: 'Pacifico', cursive;
        font-size: 3vw;
    }
    .contents li a:hover{
        transition: 0.5s;
        transform: skewX(-5deg);
        letter-spacing: 2px;
    }
    nav ul {
        display:block;
        font-size: 5vw;
    }
    .logo {
        width: 100px;
    }
    .icon {
        visibility: hidden;
       }
       .main-menu {
        /* display: none; */
        position: fixed;
        z-index: 5;
        display: none;
        top: 3em;
        right: 0px;
        width: 100%;
    
        transform: translateX(100%);
        transition: transform 1s;
    }
       .contents {
            display: flex;
            list-style-type: none;
            width: 512px;
            height: 4em;
            align-items: center;
            color: white;  
            justify-content: space-evenly;
    }
    .contents li {
    
        text-align: center;
        height: 4em;
        display:flex;
        align-items: center;
        color: white;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        
    }
    .contents a:link, a:visited {
        color:white;
        text-decoration: none;
    }
    header {
        position:fixed;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width:100%;
        height: 4em;
        background-color:rgb(73, 70, 70);
        color: white; 
        box-shadow: 5px 5px 10px black;
        z-index: 20;
        
    }
    .work {
        position:absolute;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width:100%;
        height: 4em;
        background-color:rgb(73, 70, 70);
        color: white; 
        box-shadow: 5px 5px 10px black;
        
    }
    .title {
        grid-area: title1;
        text-align: center;
        font-size: 40px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    }
    section {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    section article {
        width:250px;
        height: 250px;
        background-color: rgb(170, 45, 45);
        color: white;
        font-size: 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom:10px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
    }
    section article h3{

        color: white;
        font-size: 16px;
        text-align: center;
        padding: 0 10px;
        margin-top: -30px;
        margin-bottom: 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
    }
    section article p{

        color: white;
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
    }
    .image1 {
        grid-area: hero;
        width: 100%;

    }
    .image2 {
        grid-area: img2;
        width: 100%;

    }
    .image3 {
        grid-area: img3;
        width: 100%;
    }
    .image4 {
        width: 100px;

    }
    .p1 {
        grid-area: p1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

    }
    .p2 {
        grid-area: p2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

    }
    .p3 {
        grid-area: p3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

    }
    .p4 {
        grid-area: p4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
       
    }
    footer {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        color: white;
        width:100%;
        height: 4em;
        background-color: rgb(73, 70, 70);
        width:100%;
        
        font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

h2 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 10px;
}
.mainrv {
    margin: 0;
    padding-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-areas:
    't2 t2'
    'rv1 rv2'
    'img10 img10';
    grid-template-columns: 320px 320px;
    grid-template-rows:100px 400px 1fr;
}
.image10 {
    grid-area: img10;
    width: 100%;
    margin-bottom: 100px;
}
.rv1 {
    grid-area: rv1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.rv2 {
    grid-area: rv2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.rv3 {
    grid-area: rv3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.rv4 {
    grid-area: rv4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.title2 {
    grid-area:t2;
    text-align: center;
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;


}

.slider{
    width: 100%;
    height: 600px;
    overflow: hidden;

}

.slides{
    width: 500%;
    height: 600px;
    display: flex;
}

.slides input{
    display: none;

}

.slide {
    width: 20%;
    transition: 2s;
    
}

.slide img{
    width: 100%;

}

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid rgb(255, 255, 255);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover{
    background: rgb(170, 45, 45);
}


#radio0:checked ~ .first{
    margin-left: 0;
}

#radio1:checked ~ .first{
    margin-left: -20%;
}

#radio2:checked ~ .first{
    margin-left: -40%;
}

#radio3:checked ~ .first{
    margin-left: -60%;
}


.navigation-auto{
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 560px;
}

.navigation-auto div {
    border: 2px solid rgb(170, 45, 45);
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child){
    margin-right: 40px;
}

#radio0:checked ~ .navigation-auto .auto-btn1{
    background: rgb(170, 45, 45);
}

#radio1:checked ~ .navigation-auto .auto-btn2{
    background: rgb(170, 45, 45);
}

#radio2:checked ~ .navigation-auto .auto-btn3{
    background: rgb(170, 45, 45);
}
#radio3:checked ~ .navigation-auto .auto-btn4{
    background: rgb(170, 45, 45);
}
.text {
    align-self: center;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0, .5);
    font-size: 40px;
    position: absolute;
    box-shadow: 5px 5px 10px black;
    bottom: 55%;
    width: 100%;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow: hidden;
  }
  .mainmenu {
    margin: 0;
    padding-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-areas:
    't4 t4'
    'm1 m2'
    'm3 m4'
    'm5 m5';
    grid-template-columns: 320px 320px;
    grid-template-rows:100px 1fr 1fr 1fr;
    }
    .m1 {
        grid-area: m1;
        text-align: center;
    }
    .m5 {
        grid-area: m5;
        text-align: center;
    }
    .m4 {
        grid-area: m4;
        text-align: center;
    }
    .m3 {
        grid-area: m3;
        text-align: center;
    }
    .m2 {
        grid-area: m2;
        text-align: center;
    }
    .title4 {
        grid-area: t4;
        text-align: center;
        font-size: 40px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .maincontact {
        margin: 0;
        padding-top: 4em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 100%;
        margin: auto;
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-areas:
        'ct ct'
        'map map'
        'ch ch'
        'cb cb'
        'cb cb';
        grid-template-columns: 320px 320px;
        grid-template-rows:100px 1fr 600px 800px 1fr;
    }
   .mapc {
    grid-area: map;
    display: flex;
    justify-content: center;
    width: 200%;
    margin-top: 100px;


   }
   .ContactF {
    width: 100%;
    line-height: 40px;
    color: black;
    grid-area: cb;
    display: flex;
    flex-direction: column;
    justify-content: center;

   }
   .BodyContent {
    width: 200%;
    text-align: center;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight:bolder;
    display: flex;
    justify-self: center;
    align-self: center;
    flex-direction: column;


    }
   .ContactHeading2 {
    color:black;
    grid-area: ch;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: large;
    margin-top: 50px;
   }
   .ContactHeading1 {
    font-size: xx-large;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight:bolder;
    text-align: center;
    margin-top: 1280px;
    color: black;
    margin-bottom: -50px;
    grid-area: ct;
    width:200%;
    }
   
   #submitbutton {
    background-color: white;
    width: 100px;
    height: 30px;
    border-radius: 10px;
    color:black;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight:bolder;}
    .mainphp {
        margin: 0;
        padding-top: 4em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 100%;
        margin: auto;
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-areas:
        't6 t6'
        't6 t6';
        grid-template-columns: 50% 50%;
        grid-template-rows:300px 300px;
      }
      .title6 {
        grid-area: t6;
        text-align: center;
        font-size: 40px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      }
}
@media screen and (max-width:640px){
    body{
        overflow-x: hidden;
    }
    .mainhome {
        margin: 0;
        padding-top: 4em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 100%;
        margin: auto;
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-areas:
        'title1 title1'
        'hero hero'
        'p1 p1'
        'p2 p2'
        'p3 p3'
        'p4 p4';
        grid-template-columns: 50% 50%;
        grid-template-rows:100px 410px 300px 300px 300px;
    }
    .s {
        font-family: 'Pacifico', cursive;
        font-size: 3vw;
    }
    .contents li a:hover{
        transition: 0.5s;
        transform: skewX(-5deg);
        letter-spacing: 2px;
    }
    nav ul {
        display:block;
        font-size: 5vw;
    }
    .logo {
        width: 100px;
    }
    .icon {
        font-size: 40px;
       }

       .contents {
            display: none;
            list-style-type: none;
            width: 512px;
            height: 4em;
            align-items: center;
            color: white;  
            justify-content: space-evenly;
    }
    .contents li {
    
        text-align: center;
        height: 4em;
        display:flex;
        align-items: center;
        color: white;
        
    }
    .contents a:link, a:visited {
        color:white;
        text-decoration: none;
    }
    .main-menu {
        /* display: none; */
        position: fixed;
        z-index: 5;
        top: 4em;
        right: 0px;
        width: 100%;
        transform: translateX(100%);
        transition: transform 1s;
        z-index: 20;
    
    }
    .main-menu.active {
        display: block;
        transform: translateX(0);
    }
    
    .main-menu a {
        text-decoration: none;
        color:white;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size:larger;
        font-weight:bolder
    }
    .hamb {
        background-color: rgb(170, 45, 45);
        font-size: 20px;
        color:white;
        text-align: center;
        box-shadow: 5px 5px 10px black;
        animation-name: example;
        animation-duration: 1.5s;
        z-index: 20;
    }
    @keyframes example {
        0%   {background-color: white; left:100%; box-shadow: 0px 0px 0px black;}
        100% {background-color: rgb(170, 45, 45);left:0%;box-shadow: 5px 5px 10px black;}
      }
    header {
        position: fixed;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width:100%;
        height: 4em;
        background-color:rgb(73, 70, 70);
        color: white; 
        box-shadow: 5px 5px 10px black;
        z-index: 20;
    }
    .title {
        grid-area: title1;
        text-align: center;
        font-size: 40px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    }
    section {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    section article {
        width:250px;
        height: 250px;
        background-color: rgb(170, 45, 45);
        color: white;
        font-size: 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom:10px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
    }
    section article h3{

        color: white;
        font-size: 16px;
        text-align: center;
        padding: 0 10px;
        margin-top: -30px;
        margin-bottom: 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
    }
    section article p{

        color: white;
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
    }
    .image1 {
        grid-area: hero;
        width: 100%;

    }
    .image2 {
        grid-area: img2;
        width: 100%;
        display: none;

    }
    .image3 {
        grid-area: img3;
        width: 100%;
        display: none;
    }
    .image4 {
        width: 100px;

    }
    .p1 {
        grid-area: p1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

    }
    .p2 {
        grid-area: p2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

    }
    .p3 {
        grid-area: p3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

    }
    .p4 {
        grid-area: p4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
       
    }
    footer {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        color: white;
        width:100%;
        height: 4em;
        background-color: rgb(73, 70, 70);
        width:100%;
        
        font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }


    h2 {
        font-size: 20px;
        font-weight: bold;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        margin-bottom: 10px;
    }

    .mainmenu {
        margin: 0;
        padding-top: 4em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: 100%;
        margin: auto;
        display: grid;
        justify-content: center;
        align-items: center;
        grid-template-areas:
        't4 t4'
        'm1 m1'
        'm2 m2'
        'm3 m3'
        'm4 m4'
        'm5 m5';
        grid-template-columns: 50% 50%;
        grid-template-rows:100px 1fr 1fr 1fr 1fr 1fr;
    }
    .m1 {
        grid-area: m1;
        text-align: center;
    }
    .m5 {
        grid-area: m5;
        text-align: center;
    }
    .m4 {
        grid-area: m4;
        text-align: center;
    }
    .m3 {
        grid-area: m3;
        text-align: center;
    }
    .m2 {
        grid-area: m2;
        text-align: center;
    }
    .title4 {
        grid-area: t4;
        text-align: center;
        font-size: 40px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.maincontact {
    margin: 0;
    padding-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-areas:
    'ct ct'
    'map map'
    'ch ch'
    'cb cb'
    'cb cb';
    grid-template-columns: 50% 50%;
    grid-template-rows:100px 1fr 600px 800px 1fr;
}
.mapc {
grid-area: map;
display: flex;
justify-content: center;
width: 200%;
margin-top: 100px;


}
.ContactF {
width: 100%;
line-height: 40px;
color: black;
grid-area: cb;
display: flex;
flex-direction: column;
justify-content: center;

}
.BodyContent {
width: 200%;
text-align: center;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight:bolder;
display: flex;
justify-self: center;
align-self: center;
flex-direction: column;


}
.ContactHeading2 {
color:black;
grid-area: ch;
display: flex;
justify-content: center;
text-align: center;
font-size: large;
margin-top: 50px;
}
.ContactHeading1 {
font-size: xx-large;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight:bolder;
text-align: center;
margin-top: 1280px;
color: black;
margin-bottom: -50px;
grid-area: ct;
width:200%;
}

#submitbutton {
background-color: white;
width: 100px;
height: 30px;
border-radius: 10px;
color:black;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight:bolder;}
.mainrv {
    margin: 0;
    padding-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-areas:
    't2 t2'
    'rv1 rv1'
    'img10 img10'
    'rv2 rv2';
    grid-template-columns: 50% 50%;
    grid-template-rows:100px 400px 400px 400px;
}
.image10 {
    grid-area: img10;
    width: 100%;
    margin-bottom: 100px;
}
.rv1 {
    grid-area: rv1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.rv2 {
    grid-area: rv2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.rv3 {
    grid-area: rv3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.rv4 {
    grid-area: rv4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.title2 {
    grid-area:t2;
    text-align: center;
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;


}

.slider{
    width: 100%;
    height: 600px;
    overflow: hidden;

}

.slides{
    width: 500%;
    height: 600px;
    display: flex;
}

.slides input{
    display: none;

}

.slide {
    width: 20%;
    transition: 2s;
    
}

.slide img{
    width: 100%;

}

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid rgb(255, 255, 255);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover{
    background: rgb(170, 45, 45);
}


#radio0:checked ~ .first{
    margin-left: 0;
}

#radio1:checked ~ .first{
    margin-left: -20%;
}

#radio2:checked ~ .first{
    margin-left: -40%;
}

#radio3:checked ~ .first{
    margin-left: -60%;
}


.navigation-auto{
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 560px;
}

.navigation-auto div {
    border: 2px solid rgb(170, 45, 45);
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child){
    margin-right: 40px;
}

#radio0:checked ~ .navigation-auto .auto-btn1{
    background: rgb(170, 45, 45);
}

#radio1:checked ~ .navigation-auto .auto-btn2{
    background: rgb(170, 45, 45);
}

#radio2:checked ~ .navigation-auto .auto-btn3{
    background: rgb(170, 45, 45);
}
#radio3:checked ~ .navigation-auto .auto-btn4{
    background: rgb(170, 45, 45);
}
.text {
    align-self: center;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0, .5);
    font-size: 40px;
    position: absolute;
    box-shadow: 5px 5px 10px black;
    bottom: 55%;
    width: 100%;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow: hidden;
  }
  .mainphp {
    margin: 0;
    padding-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-areas:
    't6 t6'
    't6 t6';
    grid-template-columns: 50% 50%;
    grid-template-rows:300px 300px;
  }
  .title6 {
    grid-area: t6;
    text-align: center;
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
}
#address {
    display: none;
}