@font-face {
    font-family: fontEdil;
    src: url(/Conthrax-SemiBold.otf);
}

* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 1px;
}


body {
    width: 100%;
    height: auto;
}
.hamburgerMenu{
    display: none;
}
.cntMenu{
    display: none;
}
.navBar {
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 10vh;
    background-color: gray;
    position: sticky;
    top: 0;
    border-bottom: solid 2px #1f676b;
}

.logoBox{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    width: 33.3%;
    .logoImg{
        height: 100%;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.672));
    }
    h1{font-family: fontEdil;
        color: white;
        font-size: 0.8vw;
         filter: drop-shadow(2px 2px 4px rgb(0, 0, 0));
    }
}

.menuNav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3%;
    height: 100%;
    gap: 20px;
    a {
        font-family: fontEdil;
        text-decoration: none;
        color: #ffffff;
        filter: drop-shadow(2px 2px 2px #1f676b);
        font-size: 0.9vw;
    }

    a:hover {
        color: #1f676b;
    }
}

.btnBox{
    width: 33.3%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    a{text-decoration: none;}
}
.callBtn{
    background-color: #1f676b;
    width: 98%;
    height: 30%;
    padding: 8px 0px;
    border-radius: 15px;
    color: white;
    font-family: fontEdil;
    border-color: #ffffff;
    border-width: 4px;
    filter: drop-shadow(1px 1px 2px black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.8vw;
}

.callBtn:hover {
    background-color: #ffffff;
    color: #1f676b;
    border-color: #1f676b;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.sectionOne {
    height: 90vh;
    width: 100%;
}

.selectPage {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.containerSelect {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "selOne selTwo"
        "selThree selFour";
}

.selectOne {
    grid-area: selOne;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
    border: 3px solid white;
}

.backGroundOne {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/img/interior-2685521_1920.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.8);
    filter: grayscale(1);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.textOne {
    background-color: #1f676b;
    border: 2px solid white;
    position: relative;
    z-index: 1;
    font-family: fontEdil;
    color: white;
    filter: drop-shadow(2px 2px 5px black);
    margin-right: 5%;
    margin-bottom: 5%;
    font-size: 1.1vw;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

    a {
        text-decoration: none;
        color: #ffffff;
    }

}
.textOne:hover{
    background-color: #ffffff;
    a{
        color: #1f676b;
    }
}

.selectTwo {
    box-sizing: border-box;
    grid-area: selTwo;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: start;
    border: 3px solid white;
}

.backGroundTwo {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/img/building-3331438_1920.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.8);
    filter: grayscale(1);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.textTwo {
    background-color: #1f676b;
    border: 2px solid white;
    position: relative;
    z-index: 11;
    font-family: fontEdil;
    color: white;
    filter: drop-shadow(2px 2px 2px black);
    margin-left: 5%;
    margin-bottom: 5%;
    font-size: 1.1vw;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

    a {
        text-decoration: none;
        color: #ffffff;
    }

}
.textTwo:hover{
    background-color: #ffffff;
    a{
        color: #1f676b;
    }
}
.selectThree {
    box-sizing: border-box;
    grid-area: selThree;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: end;
    border: 3px solid white;
}

.backGroundThree {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/img/pavimenti.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.8);
    filter: grayscale(1);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.textThree {
    background-color: #1f676b;
    border: 2px solid white;
    position: relative;
    z-index: 11;
    font-family: fontEdil;
    color: white;
    filter: drop-shadow(2px 2px 2px black);
    margin-right: 5%;
    margin-top: 5%;
    font-size: 1.1vw;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

    a {
        text-decoration: none;
        color: #ffffff;
    }

}
.textThree:hover{
    background-color: #ffffff;
    a{
        color: #1f676b;
    }
}
.selectFour {
    box-sizing: border-box;
    grid-area: selFour;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    border: 3px solid white;
    box-sizing: border-box;
}

.backGroundFour {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/img/massetti.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.8);
    filter: grayscale(1);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.textFour {
    background-color: #1f676b;
    border: 2px solid white;
    position: relative;
    z-index: 11;
    font-family: fontEdil;
    color: white;
    filter: drop-shadow(2px 2px 2px black);
    margin-left: 5%;
    margin-top: 5%;
    font-size: 1.1vw;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

    a {
        text-decoration: none;
        color: #ffffff;
    }

}
.textFour:hover{
    background-color: #ffffff;
    a{
        color: #1f676b;
    }
}
.footerContainer{
    width: 100%;
    height: 25vh;
    background-color: #1f676b;
    display: flex;
    border-top: 8px solid gray;
    border-bottom: 8px solid gray;

}
.sizeFoot{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;   
    height: 100%;
    font-family: fontEdil;
    color: white;
    text-align: center;
    p{
        width: 90%;
        word-spacing: 2px;
        text-align: center;
        letter-spacing: 2px;
        font-size: 0.9vw;
        text-transform: uppercase;
        user-select: text;
    }
    a{
        cursor: pointer;
        text-decoration: underline;
        color: white; 
        width: 90%;
    }
}
.footSecTwo{
    border-right: solid 3px gray;
    border-left: solid 3px gray;
}
.footSecOne{
    flex-direction: column;
    justify-content: space-around;
}

@keyframes animBtn {
  0%   {filter: drop-shadow(1px 1px 2px black);}
  25%  {filter: drop-shadow(1px 1px 2px black);}
  50%  {filter: drop-shadow(1px 1px 2px black);}
  75%  {filter: drop-shadow(1px 1px 2px black);}
  100% {filter: drop-shadow(1px 1px 2px black);}
}