html {
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(80,17,34,1) 35%);
    min-height: 100vh;
    font-family: sans-serif;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none
}

body{
    margin: 0;
    overflow-y: auto;
}

header {
    height: 90px;
    background: url(images/design/sargodor_01.png);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

header h1 {
    color: #fdf3c9;
    font-size: 32px;
    text-align: center;
    text-shadow: 0px 5px 10px #000000;
}

footer {
    border-top: 1px solid #fdf3c9;
    width: 100vw;
    height: 90px;
    background: url(images/design/sargodor_01.png);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
}

footer a {
    color: white;
}

footer img {
    height: 75%;
}

#main {
    overflow: hidden;
    position: relative;
    margin-bottom: 92px;
}


#menu {
    background: #793a4c;
    border-top: 1px solid #fdf3c9;
    border-bottom: 1px solid #fdf3c9;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.menu-item {
    color: white;
    text-decoration: none;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item.active {
    background-color: #692f3e;
}

.menu-item-text {
    padding: 0 20px;
}


.menu-item:hover {
    background-color: #9b6a77;
}

#welcome {
    margin-top: 20px;
    color: #fdf3c9;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    flex-direction: column;
}

#welcome-text {
    text-align: center;
}

#info {
    width: 100%;
    height: auto;
    color: white;
    margin-bottom: 20px;
    padding: 0 40px;
    text-align: center;
    margin-top: 20px;
}

#info a {
    color: white;
}


#created-by {
    color: white;
    font-size: 8px;
    position: absolute;
    right: 30px;
    bottom: 10px;
}

#mobile-menu {
    display: none;
}

#menu-mobile-icon{  
    width: 20px;
}

#mobile-menu-title {
    color: white;
    margin-left: 8px;
}

#content {
    color: #fdf3c9;
    padding: 20px 20px;
}

#google-link {
    display: flex;
    width: 100vw;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#google {
    background-image: url(./images/design/google-sargodor.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 400px;
    background-position: center 0;
}

#google_map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#google_map iframe{
    width: 100%;
    height: calc(100vh - 223px);
}

.image{
    max-height: calc(100vh - 246px);
}

.image a {
    display: flex;
}

.image img {
    height: 71vh;
    margin-left: auto; 
    margin-right: auto;
}

.image-label {
    position: absolute;
    width: 100vw;
    background: #000000cc;
    opacity: .9;
    color: white;
    text-align: center;
    bottom: 0;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-img img{
    width: 100px;
    float: left;
    margin-right: 20px;
}

#contacts{
    display: flex;
    flex-wrap: wrap;
}

.contact-item{
    margin: 0 90px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80px;
    width: 300px;
}

.contact-item:last-child{
    margin-bottom: 0;
}

#content strong, .name-post b, .telephone  {
    color: white;
}

.title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: white;
}




@media only screen and (max-width: 1024px) {
    header{
        justify-content: center;
        padding-left: 0;
    }
    header h1 {
        font-size: 0.9em;
    }

    #created-by {
        font-size: 6px;
        right: 4px;
        bottom: 4px;
    }

    #welcome {
        width: unset;
        padding: 0 20px;
        max-width: 100vw;
    }

    #mobile-menu {
        background: #65182d;
        border-top: 1px solid #fdf3c9;
        border-bottom: 1px solid #fdf3c9;
        height: 40px;
        display: flex;
        align-items: center;
        padding: 0 20px;
    }

    #menu {
        display: none;
        position: absolute;
        z-index: 99999;
        top: 40px;
        left: 0;
        flex-direction: column;
        height: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .menu-item {
        height: 80px;
    }
}