* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.container {
    width: 100%;
    height: auto;
    display: flex;

}

.top {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60px;
    background-color: orangered;
    color: white;
    position: fixed;
    z-index: 50;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.6s;
}

.logo:hover {
    cursor: pointer;
    text-shadow: 0 0 10px white;
}

.phone {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone p {
    line-height: 30px;
}

.wrapper-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 60px;
    position: fixed;
}

.zero {
    background-color: white;
    z-index: 49;
}

.zero, .menu {
    width: 50%;
    box-shadow: 0 0 20px white;
}

menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: grey;
}

ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ul li {
    width: 25%;
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: orangered;
}

ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.7s;
}

ul li:hover, ul li a:hover {
    background-color: white;
    color: orangered;
    border-bottom: 1px solid orangered;
    border-right: 1px solid orangered;
    border-left: 1px solid orangered;
}

.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.pictures {
    width: 45%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 120px;
    padding: 0 20px 20px 20px;
}

.pictures img {
    width: 30%;
    height: auto;
    margin: 5px;
    transition: all 0.8s;
}

.pictures img:hover {
    box-shadow: 0 0 10px orangered;
    transform: scale(1.5);
    cursor: pointer;
}

.text-btn {
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 120px;
}

.text-block {
    width: 100%;
    /*border: 2px solid orangered;*/
    padding: 20px 0;
    text-align: justify;
    /*margin-right: 40px;*/
}

.text-block p {
    line-height: 26px;
}

.btn-block {
    width: 100%;
    /*margin-right: 40px;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.btn-block-row .invisible {
    opacity: 0;
}

.btn-block-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    float: right;
    align-items: center;
}

.btn-block-row button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    margin: 10px 0;
    float: right;
    border: 2px solid orangered;
    color: orangered;
}

.btn-block-row button a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: orangered;
    text-decoration: none;
    background-color: white;
    width: 100%;
    height: 100%;
    transition: all 0.7s;
}

.btn-block-row button a:hover {
    background-color: orangered;
    color: white;
}

@media screen and (min-width: 800px) and (max-width: 1365px) {
    .pictures img {
        width: 45%;
    }

    ul li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 799px) {
    .pictures img {
        width: 100%;
    }

    ul li a, .phone p, .btn-block-row button a, .text-block p {
        font-size: 12px;
    }
}

@media screen and (max-width: 550px) {
    ul li a, .phone p {
        font-size: 10px;
    }

    .pictures img:hover {
        box-shadow: 0 0 10px orangered;
        transform: scale(1.2);
        cursor: pointer;
    }

    .text-block p, .btn-block-row button a {
        font-size: 10px;
    }
}