* {
    margin: 0;
    padding: 0;
}

.header {
    height: calc(60px);
    margin: 0;
    z-index: 1;
    position: relative;
    width: 100vw;
}

.logo {
    position: relative;
    display: inline-block;
    background-image: url('../images/logo-light.png');
    height: 40px;
    margin-top: 8px;
    margin-left: 15px;
    width: 60px;
    background-size: 60px 40px;
    background-repeat: no-repeat;
}

.text-header {
    position: absolute;
    top: 10px;
    left: 90px;
    font-size: 15px;
    width: calc(100vw - 180px);
    text-align: center;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: white;
}

.hamburger-menu-initial {
    position: absolute;
    top: 16px;
    left: calc(100vw - 60px);
    height: 25px;
    width: 30px;
    background-image: url('../images/menu.png');
    background-size: 30px 25px;
    background-repeat: no-repeat;
    color: white;
}

.menu {
    position: absolute;
    top: 0;
    z-index: 3;
    left: -100vh;
    height: 100vh;
    width: 100vw;
    background-color: white;
}

.cross-menu {
    background-image: url('../images/cross.png');
    position: absolute;
    top: 20px;
    left: 85vw;
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
}

.text-menu {
    background: -webkit-linear-gradient(#ED8F03, #FFB75E);
    font-size: 28px;
    display: block;
    text-align: center;
    font-weight: bold;
    padding-top: 2px;
    padding-bottom: 6vw;
    font-family: 'Josefin Sans', sans-serif;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-container {
    margin-top: 10vw;
}

.title-menu {
    padding-top: 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 2px;
}


main {
    height: 200vw;
    margin: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(12, 8%);
    grid-gap: 7px;
    justify-content: center;
    align-content: center;
}

.boxes {
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    height: auto;
    transition: 0.3s;
}

.boxes:hover {
    box-shadow: inset 0px 0px 30px 10px black;
    transform: scale(1.02);
    border: solid #f6ab05 2px;
}

/*img{
	width: 100%;
}*/
.box1 {
    background-image: url("../images/gallery-14.jpg");
    grid-column: 1/3;
    grid-row: 1/3;
}

.box2 {
    background-image: url("../images/gallery-07.jpg");
}

.box3 {
    background-image: url("../images/gallery-52.jpg");
}

.box4 {
    background-image: url("../images/gallery-01.jpg");
    grid-row: 10/12;
    grid-column: 3/5;
}

.box5 {
    background-image: url("../images/gallery-19.jpg");
}

.box6 {
    background-image: url("../images/gallery-09.jpg");
    grid-row: 3/5;
}

.box7 {
    background-image: url("../images/gallery-06.jpg");
}

.box8 {
    background-image: url("../images/gallery-10.jpg");
    grid-row: 4/5;
}

.box9 {
    background-image: url("../images/gallery-37.jpg");
}

.box10 {
    background-image: url("../images/gallery-13.jpg");
    grid-row: 4/6;
    grid-column: 3/4;
}

.box11 {
    background-image: url("../images/gallery-02.jpg");
}

.box12 {
    background-image: url("../images/gallery-30.jpg");
}

.box13 {
    background-image: url("../images/gallery-16.jpg");
}

.box14 {
    grid-row: 6/8;
    grid-column: 2/4;
    background-image: url("../images/gallery-17.jpg");
}

.box15 {
    background-image: url("../images/gallery-18.jpg");
}

.box16 {
    background-image: url("../images/gallery-05.jpg");
}

.box17 {
    background-image: url("../images/gallery-20.jpg");
}

.box18 {
    background-image: url("../images/gallery-45.jpg");
}

.box19 {
    background-image: url("../images/gallery-24.jpg");
}

.box20 {
    background-image: url("../images/gallery-46.jpg");
}

.box21 {
    background-image: url("../images/gallery-26.jpg");
    grid-row: 7/9;
    grid-column: 1/2;
}

.box22 {
    background-image: url("../images/gallery-34.jpg");
}

.box23 {
    background-image: url("../images/gallery-29-test.jpg");
    grid-row: 8/9;
    grid-column: 3/5;
}

.box24 {
    background-image: url("../images/gallery-15.jpg");
}

.box25 {
    background-image: url("../images/gallery-31.jpg");
    grid-row: 9/11;
    grid-column: 1/3;
}

.box26 {
    background-image: url("../images/gallery-53.jpg");
    grid-column: 3/5;
    grid-row: 2/4;
}

.box27 {

    background-image: url("../images/gallery-50.jpg");
}

.box28 {

    background-image: url("../images/gallery-27.jpg");
}

.box29 {
    background-image: url("../images/gallery-33.jpg");
}
.title-menu{
    color: black;
}
@media (max-width: 700px) {
    main {
        display: block;
        margin: auto;
        width: 90%;
        height: auto;
    }

    .boxes:hover {
        box-shadow: none;
        transform: none;
        border: none;
    }

    .box2,
    .box6,
    .box10,
    .box11,
    .box15,
    .box21,
    .box29 {
        display: none;
    }

    .boxes {
        width: 100%;
        height: 0;
        padding-top: 70%;
    }

    .box23 {
        padding-top: 35%;
    }
}
