body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.codemobile {
    display: none;
}

.zoom-mobile {
    display: none;
}

#header {

    position: fixed;
    width: 100%;
    height: auto;
    top: 0px;
    left: 0;
    right: 0;
    background: #fff;

    transition: top .3s ease;

    z-index: 999 !important;


}

.nav {

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: auto;
}

.logo {
    padding-left: 20px;
    padding-right: 20px;
}

.logo>a>h1 {
    margin: 0;
    font-size: 23px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: lighter;
    color: black;
    text-transform: uppercase;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu>ul {
    padding-left: 0;
    padding-right: 20px;
}

.menu>ul>li {
    list-style: none;
}

.menu>ul>li>a {
    margin-left: 20px;
    margin-right: 20px;

    font-size: 18px;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: lighter;
    color: black;
}

.lang {
    padding-right: 20px;
}

.lang>a {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: black;
}


section {
    padding-left: 20px;
    padding-right: 20px;

    margin-top: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 40rem;
}

.arrow {
    position: fixed;
    right: 20px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgb(209, 209, 209);
    transition: box-shadow .2s ease;
    cursor: pointer;
    z-index: 3 !important;
}

.arrow:hover {
    box-shadow: 0px 0px 20px rgb(209, 209, 209);
}

.arrow-left {
    position: fixed;
    left: 20px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgb(209, 209, 209);
    transition: box-shadow .2s ease;
    cursor: pointer;
    z-index: 3 !important;
}

.arrow-left:hover {
    box-shadow: 0px 0px 20px rgb(209, 209, 209);
}


.icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.section-in {
    margin-top: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 20px;

    width: 100%;
    height: auto;
}

.img {

    position: relative;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: auto;
    height: auto;
}

.link-img
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-img > img {
    position: relative;
    max-width: 23rem;
    height: auto;
}


.filter {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 35%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translate(93%);
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .3s ease;

    cursor: pointer;
}

.filter:hover {
    opacity: 1;
}

.text {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: auto;
    line-height: 1.5rem;
    padding-bottom: 20px;
}

.text-in {
    margin-top: 30px;
    padding-bottom: 20px;
    width: 1000px;
    border-bottom: 1px solid rgb(209, 209, 209);
}

.title>h1 {
    text-align: center;
    margin: 0;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #3c3c3c;
    font-weight: 500;
}

.title>h1:nth-child(2) {
    text-align: center;
    margin: 0;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(155, 155, 155);
    font-weight: 500;
}

.title>h1:nth-child(2)>span {
    padding-left: 10px;
    font-size: 16px;
}

.details {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

.intro>p {
    text-align: center;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    color: #5e5e5e;
}

.details-in>p {
    text-align: center;
    margin: 0;
    font-size: 16hpx;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: #000000;
    line-height: 1.4rem;
}

.details-in>p>span {
    font-weight: 400;
    color: #5a5a5a;
}


footer {
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;

    width: 100%;
    height: auto;

    background-color: #333;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-in {
    margin-bottom: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    width: 1250px;
    height: auto;
    border-bottom: 1px solid rgb(110, 110, 110);
}

.footer-name>h1 {
    margin: 0;
    padding: 10px;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    text-transform: uppercase;
}

.footer-categories>p {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 5px;
    font-size: 19px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(0, 255, 136);
    font-weight: 500;
}

.footer-categories>a>p {
    text-align: right;
    margin: 0;
    padding: 5px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}

.footer-art>p {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 5px;
    font-size: 19px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(0, 255, 136);
    font-weight: 500;
}

.footer-art>a>p {
    text-align: right;
    margin: 0;
    padding: 5px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}

.footer-art-exh>p {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 5px;
    font-size: 19px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(0, 255, 136);
    font-weight: 500;
}

.footer-art-exh>a>p {
    text-align: right;
    margin: 0;
    padding: 5px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}


.box-contact {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: auto;
}

.box-contact-grid {
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 1250px;
    height: auto;
    background-color: rgb(83, 83, 83);
}

.box-in {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone>p {
    padding-left: 10px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.email {
    display: flex;
    justify-content: center;
    align-items: center;
}

.email>p {
    padding-left: 10px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.facebook {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facebook>a>p {
    padding-left: 10px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: auto;
}

.copyright>h1 {
    margin: 0;
    padding: 30px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}



















@media (max-width: 956px) {
    #header {
        display: none;
    }

    #none {
        display: none;
    }

    .codemobile {
        display: block;
    }

    .arrow {
        display: none;
    }

    .arrow-left {
        display: none
    }

    #header-mobile {
        position: fixed;
        width: 100%;
        height: auto;
        top: 0px;
        left: 0;
        right: 0;
        background: #fff;

        transition: top .3s ease;

        z-index: 999 !important;
        margin-bottom: 30px;
    }

    .nav-mobile {

        display: flex;
        justify-content: space-between;
        align-items: center;

        width: 100%;
        height: auto;
    }

    .logo-mobile {
        padding-left: 5px;
        padding-right: 5px;
    }

    .logo-mobile>a>h1 {
        margin: 0;
        font-size: 17px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 300;
        color: black;
        text-transform: uppercase;
    }

    .menu-mobile {
        cursor: pointer;

        padding-top: 5px;
    }

    .menu-list-mobile {
        display: none;
    }

    .close {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    .list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        position: fixed;

        top: 0;
        right: 0;
        left: 0;
        bottom: 0;

        width: 100%;
        height: auto;

        background-color: #fff;
        opacity: 1;

        animation-name: fadeIn;
        animation-duration: .2s;
        animation-timing-function: ease;
        animation-fill-mode: both;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .list>ul {
        padding: 0;
    }

    .list>ul>li {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .list>ul>li>a {
        padding-bottom: 10px;
        padding-top: 10px;

        font-size: 35px;

        color: #333;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .menu-list-mobile--open {
        display: block;
    }

    section {
        margin-top: 45px;
        height: 100%;
    }

    .section-in {
        margin-top: 5px;
    }

    .img
    {
        grid-template-columns: repeat(1, 1fr);
    }

    .link-img >img {
        max-width: 100%;
    }

    .text-in {
        margin-top: 20px;
    }

    .filter {
        display: none;
    }

    .zoom-mobile {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .zoom-in {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
        height: auto;
        padding: 9px;
        background-color: #fff;
        box-shadow: 0px 0px 8px rgb(155, 155, 155);
        border-radius: 30px;
    }


    .text-mobile>p {
        padding-right: 3px;
        margin-top: 0;
        font-size: 13px;
        margin-bottom: 3px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        color: rgb(83, 83, 83);
    }

    .zoom {
        display: flex;
        justify-content: center;
        align-items: center;

        padding-left: 10px;
    }



    .footer-in {
        margin-bottom: 20px;
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;

        width: 1250px;
        height: auto;
        border-bottom: 1px solid rgb(110, 110, 110);
    }

    .footer-name>h1 {
        text-align: left;
        padding: 0;
    }

    .footer-categories>p {
        text-align: left;
    }

    .footer-categories>a>p {
        text-align: left;
    }

    .footer-art>p {
        text-align: left;
    }


    .footer-art>a>p {
        text-align: left;
    }

    .footer-art-exh>p {
        text-align: left;
    }


    .footer-art-exh>a>p {
        text-align: left;
    }

    .box-contact-grid {
        padding: 5px;

        display: grid;
        grid-template-columns: repeat(1, 1fr);

        width: 1250px;
        height: auto;
        background-color: rgb(83, 83, 83);
    }

    .box-in {
        padding-left: 20px;
        justify-content: left;
    }

    .copyright>h1 {
        text-align: center;
    }

}