html {
    font-size: 16px;
    font-family: sans-serif;
}
body {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 120px 1fr 100px;
    height: 100vh;
}
a {
    color: inherit;
}
li {
    list-style-type: none;
}
.material-icons {
    vertical-align: middle;
}
.header,
.footer {
    background: linear-gradient(45deg, black, transparent);
    align-items: center;
    padding: 0 20px;
}
.header {
    display: grid;
    grid-template-columns: 100px 1fr 160px 130px;
}
.logo {
    display: flex;
}
.header_tel {
    color: whitesmoke;
    text-shadow:
        0 0 2px black,
        0 0 4px #ef3f3fe6;
    font-style: italic;
    font-family: "Poetsen One", sans-serif;
    text-align: center;
    text-decoration: none;
}
.btn_std {
    padding: 7px;
    font-size: inherit;
    color: #fffdfd;
    text-decoration: none;
    border-radius: 5px;
    transition: box-shadow 0.5s;
    background: #394c5d;
    box-shadow: 0 0 4px black;
    border: 1px solid black;
    text-align: center;
    margin: auto;
    display: block;
    cursor: pointer;
}
.menu_btn {
    width: 100px;
}
.btn_std:active,
.btn_std:hover {
    box-shadow: inset 0 0 15px white;
}
.menu1 {
    position: relative;
}
.menu1 a {
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
    background: #394c5d;
    margin: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px black;
    border: 1px solid black;
    color: #fffdfd;
}
.menu_content {
    display: none;
    position: absolute;
    background: #e9e7e7;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0px 0px 5px;
    padding: 5px;
    top: 40px;
}
.menu_content a:hover {
    box-shadow: inset 0 0 15px white;
}
.menu1:hover .menu_content {
    display: block;
}
.main_content {
    position: relative;
    background-size: cover;
    background-position: center;
}
.slideshow {
    position: absolute;
    top: 0;
    background-image: url(/images/slideshow/IMG_1.jpg);
    background-size: cover;
    width: 100vw;
    height: 100%;
    background-position: center;
    transition: opacity 2s;
}
.tr_hide {
    opacity: 0;
}
.im_preload {
    display: none;
}
.background1 {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    box-shadow: inset 0 0 20px #a8a6a6;
    position: relative;
    height: 100%;
    align-content: space-around;
    display: grid;
    grid-template-rows: 80px 1fr 100px 60px;
}
.content_title {
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 10px;
    padding: 0 10px;
    border: 1px solid;
    border-top: none;
    color: whitesmoke;
    margin-left: 10%;
    height: 100%;
    width: 410px;
}
.content_title * {
    margin: 5px;
}
.content {
    color: whitesmoke;
    text-shadow:
        -2px 2px 0px black,
        0 0 5px brown;
    margin: auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding: 10px;
}
.our_services {
    text-align: center;
}
.our_services a {
    color: whitesmoke;
    text-shadow: 0 0 5px saddlebrown;
    text-decoration: underline;
    text-align: center;
    font-family: "Poetsen One", sans-serif;
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
}
.our_services button {
    padding: 10px;
}
.contact {
    text-align: center;
}
.lists {
    font-size: 2rem;
    line-height: 2em;
}
.contact h2 {
    color: whitesmoke;
    text-shadow: 0 0 5px saddlebrown;
    text-decoration: underline;
    text-align: center;
}
.footer {
    display: flex;
    justify-content: space-between;
}
.location a {
    color: whitesmoke;
    text-decoration: none;
}
.location span {
    line-height: 1.3rem;
}
.icons a {
    text-decoration: none;
}
.logo img {
    width: 100%;
}
.logo a {
    display: flex;
}
.content img {
    display: block;
    height: 80%;
    margin: auto;
}
/*.content a {
    display: inline-block;
    height: 200px;
    text-align: center;
    text-decoration: none;
}*/
.icons img {
    height: 50px;
}

@media (max-width: 550px) {
    .lists {
        font-size: 1.5rem;
    }
}
